| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | if( defined( 'FOR_XOOPS_LANG_CHECKER' ) || ! defined( 'TINYCONTENT_MB_LOADED' ) ) { |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | // Appended by Xoops Language Checker -GIJOE- in 2005-04-19 18:26:42 |
|---|
| 8 | define('_TC_FMT_DEFAULT_COMMENT_TITLE','Re: %s'); |
|---|
| 9 | |
|---|
| 10 | // Appended by Xoops Language Checker -GIJOE- in 2004-06-02 17:58:48 |
|---|
| 11 | define('_TC_NEXTPAGE','Next'); |
|---|
| 12 | define('_TC_PREVPAGE','Prev'); |
|---|
| 13 | define('_TC_TOPOFCONTENTS','Top of contents'); |
|---|
| 14 | |
|---|
| 15 | define( 'TINYCONTENT_MB_LOADED' , 1 ) ; |
|---|
| 16 | |
|---|
| 17 | define('_TC_FILENOTFOUND','File not found! Please check the URL!'); |
|---|
| 18 | define("_TC_PRINTERFRIENDLY","Printer Friendly Page"); |
|---|
| 19 | define("_TC_SENDSTORY","Send this Story to a Friend"); |
|---|
| 20 | |
|---|
| 21 | // whether parameter for "mailto:" is already rawurlencoded |
|---|
| 22 | define("_TC_DONE_MAILTOENCODE" , false ) ; |
|---|
| 23 | |
|---|
| 24 | // %s is your site name. for single byte languages (ignored when _TC_DONE_MAILTOENCODE is true) |
|---|
| 25 | define("_TC_INTARTICLE","Interesting Article at %s"); |
|---|
| 26 | define("_TC_INTARTFOUND","Here is an interesting article I have found at %s"); |
|---|
| 27 | |
|---|
| 28 | // for multibyte languages (ignored when _TC_DONE_MAILTOENCODE is false) |
|---|
| 29 | define("_TC_MB_INTARTICLE","" ) ; |
|---|
| 30 | define("_TC_MB_INTARTFOUND","" ) ; |
|---|
| 31 | |
|---|
| 32 | // %s represents your site name |
|---|
| 33 | define("_TC_THISCOMESFROM","This article comes from %s"); |
|---|
| 34 | define("_TC_URLFORSTORY","The URL for this story is:"); |
|---|
| 35 | } |
|---|
| 36 | |
|---|
| 37 | if( ! defined( 'FOR_XOOPS_LANG_CHECKER' ) && ! function_exists( 'tc_convert_wrap_to_ie' ) ) { |
|---|
| 38 | function tc_convert_wrap_to_ie( $str ) { |
|---|
| 39 | return $str ; |
|---|
| 40 | } |
|---|
| 41 | } |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | ?> |
|---|