|
From: Jon O. <jon...@us...> - 2007-06-07 20:15:23
|
Update of /cvsroot/mxbb/mx_tinies/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12910 Added Files: index.html lang_admin.php lang_main.php Log Message: added mx_tinies --- NEW FILE: index.html --- --- NEW FILE: lang_main.php --- <?php /*************************************************************************** * lang_main.php * ------------- * begin : October, 2003 * copyright : Marc Ferran (c) 2003-2004 * email : phpmix at pobox.com * module : Tinies * file contents : Main module strings. * language : English * translated by : * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ //Some basic security if( !defined('IN_PORTAL')) { die('Hacking Attempt'); } // // Tinies v.1.0.0 // $lang['Welcome'] = "Welcome"; $lang['Welcome_User'] = "Welcome, %s !"; $lang['Quick_search'] = "Quick Search"; $lang['Search_at'] = "Search at"; $lang['Advanced_search'] = "Advanced Search"; // // Tinies v.1.0.1 // $lang['Search_unread'] = "View unread posts"; // // Tinies v.1.0.2 // $lang['Search_self_topics'] = "Topics you've started"; $lang['Search_self_posts'] = "View all your posts"; // // Tinies v.1.3.0 // $lang['Posts_since_last_visit'] = "Posts since last visit"; $lang['View_latest'] = "View latest"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /*************************************************************************** * lang_admin.php * -------------- * begin : October, 2003 * copyright : Marc Ferran (c) 2003 * email : phpmix at pobox.com * module : Tinies * file contents : Admin module strings. * language : English * translated by : * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ //Some basic security if( !defined('IN_PORTAL')) { die('Hacking Attempt'); } // // Tinies v.1.0.0 // $lang['Tinies_FAQ_Name'] = "<b>FAQ Name:</b>"; $lang['Tinies_FAQ_Nameinfo'] = "Name of the FAQ file you want to display with this block. For instance:<br />To display the FAQ file <u>modules/mx_tinies/faqs/lang_xxxx/lang_faq.php</u>, just enter <b>faq</b>.<br />To display the FAQ file <u>modules/mx_tinies/faqs/lang_xxxx/lang_bbcode.php</u>, just enter <b>bbcode</b>.<br />You can even create your own FAQs, just create your FAQ file with the same format used by the forum FAQs.<br /><b><u>Note:</u></b> FAQ files used by this module should be located under <u>modules/mx_tinies/faqs/lang_xxxx</u>, where <b>xxxx</b> is the default board language (ie. english, german, spanish, etc.)."; $lang['Tinies_FAQ_Title'] = "<b>FAQ Title:</b>"; $lang['Tinies_FAQ_Titleinfo'] = "Enter the title for the block where this FAQ will be displayed."; $lang['Tinies_Welcome_Msg'] = "<b>Welcome Message:</b>"; $lang['Tinies_Welcome_Msginfo'] = "This message will be visible for all users."; $lang['Tinies_Register_Msg'] = "<b>Register Message:</b>"; $lang['Tinies_Register_Msginfo'] = "This message will only be visible for anonymous users to encourage them to register.<br />Tip: Use <b>%s</b> twice to enclose the string you want as a link to register."; $lang['Tinies_Vertical_Layout'] = "<b>Vertical Layout:</b>"; $lang['Tinies_Vertical_Layoutinfo'] = "Select if you wish to display this block with a <b>Vertical</b> or <b>Horizontal</b> layout."; $lang['Tinies_View_JumpTo'] = "<b>View JumpTo:</b>"; $lang['Tinies_View_JumpToinfo'] = "Select if you wish to display a <b>JumpToForum</b> box.<br /><u>Note:</u> Disable this feature if you use <b>Vertical layout</b>. Probably, it will make your block wider than the page column where you place this block. But, it could be useful, if you select <b>Horizontal layout</b>."; $lang['Tinies_Default_Avatar'] = "<b>Default Avatar:</b>"; $lang['Tinies_Default_Avatarinfo'] = "Image to be used as default welcome avatar. Will be shown when logged in user has no avatar.<br /><u>Note:</u> Relative path for this image is \"modules/mx_tinies/avatars\"."; // // Tinies v.1.0.1 // $lang['Tinies_View_PostCount'] = "<b>View Post Count:</b>"; $lang['Tinies_View_PostCountinfo'] = "Specify if you wish to display the post count next to <u>View posts since last visit</u> and <u>View unread posts</u> links, shown when a user is logged in."; $lang['Tinies_Report_Page'] = "<b>View Topics Page:</b>"; $lang['Tinies_Report_Pageinfo'] = "Specify the Portal Page Number which contains the <b>'Tinies: View Topics'</b> block.<br />Otherwise, just enter <b>0</b> to view the reports in standalone mode (full page, no other blocks)."; // // That's all Folks! // ------------------------------------------------- ?> |