|
From: FlorinCB <ory...@us...> - 2008-09-01 04:01:20
|
Update of /cvsroot/mxbb/mx_phpbb3/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12102/language/lang_english Added Files: index.htm lang_admin.php lang_main.php Log Message: This is mx_phpbb3 first atemt .... --- NEW FILE: lang_main.php --- <?php /** * * @package MX-Publisher Module - mx_phpbb3 * @version $Id: lang_main.php,v 1.1 2008/09/01 04:01:16 orynider Exp $ * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mx-publisher.com * */ // // The format of this file is: // // ---> $lang['message'] = 'text'; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, 'en'); // // Last Message Block // $lang['Latest_Post'] = 'Last Message Post'; // // Statistics Block // $lang['Statistics'] = 'Statistics'; $lang['Rank'] = 'Rank'; $lang['Percent'] = 'Percent'; $lang['Graph'] = 'Graph'; $lang['Uses'] = 'Uses'; $lang['Board_Up_Days'] = 'Board Up Days'; $lang['Latest_Reg_User'] = 'Latest User Registered'; $lang['Latest_Reg_User_Date'] = 'Latest User Registered Date'; $lang['Most_Ever_Online'] = 'Most Users Ever Online'; $lang['Most_Ever_Online_Date'] = 'Most Users Ever Online Date'; $lang['Admin_Stats'] = 'Administrative Statistics'; $lang['Top_Posting_Users'] = 'Top Posting Users'; $lang['Most_Active_Topics'] = 'Most Active Topics'; $lang['Most_Viewed_Topics'] = 'Most Viewed Topics'; $lang['Top_Smilies'] = 'Top Used Smilies'; // // Polls // $lang['Surveys_Polls'] = 'Surveys/Polls'; $lang['Already_voted'] = 'You have already voted'; $lang['Click_view_voted'] = 'Click %sHere%s to view the results'; // // These Language Variables are only used if the Attachment Mod is installed // $lang['Disk_usage'] = 'Disk Usage'; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /** * * @package mxBB Portal Module - mx_phpbb * @version $Id: lang_admin.php,v 1.1 2008/09/01 04:01:14 orynider Exp $ * @copyright (c) 2002-2006 [Markus, Jon Ohlsson] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ $lang['mx_forum_admin'] = 'mxBB Forum Integration'; $lang['mx_forum_admin_explain'] = 'Here, you can do phpBB and mxBB page mappings.<br />If you run the module with fixed mappings, you only have to use ONE mx_phpbb block, and place this on every mxBB page with phpBB mappings. If you intend to split phpBB and run different forums on different mxBB pages, you need one mx_phpbb block for each subinstance.'; // // phpBB // $lang['Cat_all'] = 'All'; $lang['phpbb_config_updated'] = 'phpBB Plugin Configuration Updated Successfully.'; $lang['Click_return_phpbb_config'] = 'Click %sHere%s to return to phpBB Plugin Configuration'; // // Pages // $lang['phpbb_index'] = 'Index'; $lang['phpbb_viewforum'] = 'Viewforum'; $lang['phpbb_viewtopic'] = 'Viewtopic'; $lang['phpbb_faq'] = 'FAQ'; $lang['phpbb_groupcp'] = 'GroupCP'; $lang['phpbb_login'] = 'Login'; $lang['phpbb_memberlist'] = 'Memberlist'; $lang['phpbb_modcp'] = 'ModCP'; $lang['phpbb_posting'] = 'Posting'; $lang['phpbb_privmsg'] = 'Privmsg'; $lang['phpbb_profile'] = 'Profile'; $lang['phpbb_search'] = 'Search'; $lang['phpbb_viewonline'] = 'View Online'; $lang['phpbb_other'] = 'Other phpBB pages'; $lang['phpbb_explain'] = 'Fixed mapping, or default mapping (if using block settings)'; $lang['submit'] = 'Submit'; $lang['reset'] = 'Reset'; $lang['default_pages_title'] = 'mxBB and phpBB integration'; $lang['default_pages_title_explain'] = ''; $lang['default_pages_more_title'] = 'More phpBB mappings...'; $lang['default_pages_more_title_explain'] = ''; $lang['default_pages_profilecp'] = 'If you have the ProfileCP module installed, you can do the page mapping here (instead of editing the phpBB files directly)'; $lang['phpbb_integration_enabled'] = 'Activate the phpBB module?'; $lang['phpbb_integration_enabled_explain'] = 'When the phpBB module is activated, all phpBB URLs will be directed to mxBB pages. If deactivated, phpBB will operate "as usual", independently of mxBB'; $lang['phpbb_integration_enabled_yes'] = 'Activate'; $lang['phpbb_integration_enabled_no'] = 'Do not use this module'; $lang['phpbb_override'] = 'Associate phpBB and mxBB pages'; $lang['phpbb_override_explain'] = 'phpBB urls are redirected to mxBB pages following these settings.<br /> If using "Block Settings", be sure to edit the phpBB blocks themselves.'; $lang['phpbb_override_yes'] = 'Use Block Settings'; $lang['phpbb_override_no'] = 'Use fixed mappings (see below)'; $lang['Group_Home'] = 'All groups'; ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |