|
From: Florin C B. <ory...@us...> - 2014-05-18 06:27:22
|
Update of /cvsroot/mxbb/core/modules/mx_phpbb3blocks/language/lang_romanian In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27417 Added Files: index.htm lang_admin.php lang_main.php Log Message: Experimental smf2 backend files based on smf2 api in shared folder --- NEW FILE: lang_main.php --- <?php /** * * @package MX-Publisher Module - mx_phpbb2blocks * @version $Id: lang_main.php,v 1.1 2014/05/18 06:27:19 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://mxpcms.sourceforge.net/ * */ // // 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'; //Announce $lang['POST_IMG'] = 'Post'; $lang['POST_NEWS'] = 'News'; $lang['POST_NEWS_GLOBAL'] = 'Global News'; $lang['POST_NEW_IMG'] = 'Post New'; $lang['POST_NEW_HOT_IMG'] = 'Post New Hot'; $lang['POST_LOCKED_IMG'] = 'Post Locked'; $lang['POST_REPLY'] = 'Post a reply'; $lang['PRINT_IT'] = 'Print it'; $lang['PROFILE_SMALL'] = 'UCP'; $lang['POST_ANNOUNCEMENT_NEW'] = 'New Announcement'; $lang['POST_ANNOUNCEMENT'] = 'Announcement'; $lang['POSTED_BY'] = 'Posted by'; $lang['PRINT_IT'] = 'Print it'; $lang['VIEW_FULL_ARTICLE'] = 'Read full article'; // // 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'; //Activity stats block $lang['USERS_24HOUR_TOTAL'] = '%d Users active over the last 24 hours'; $lang['24HOUR_TOPICS'] = 'New Topics <strong>%d</strong>'; $lang['24HOUR_POSTS'] = 'New Posts <strong>%d</strong>'; $lang['24HOUR_USERS'] = 'New users <strong>%d</strong>'; $lang['24HOUR_STATS'] = 'Activity over the last 24 hours'; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /** * * @package MX-Publisher Module - mx_phpbb2blocks * @version $Id: lang_admin.php,v 1.1 2014/05/18 06:27:19 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://mxpcms.sourceforge.net/ * */ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); // // Last Message Post // $lang['Last_Msg_forum'] = "Source Forums"; $lang['Last_Msg_forum_explain'] = "- You may do multiple selections<br />* If none is selected, all authorized forums vill be visible"; $lang['Last_Msg_Display_Icon_View'] = "Display Icon for 'Go to last message'"; $lang['Last_Msg_Display_Last_Author'] = "Display Last Post"; $lang['Last_Msg_Display_Author'] = "Display Author Name"; $lang['Last_Msg_Settings'] = "Configuration for Last Message Post Module:"; $lang['Last_Msg_Settings'] = "Configuration for Last Message Post Module:"; $lang['Last_Msg_Number_Title'] = "Number of Posts to display:"; $lang['Last_Msg_Display_Date'] = "Display Date?"; $lang['Last_Msg_Title_Length'] = "Title length (max. characters):"; $lang['Last_Msg_Title_Length_Info'] = ""; $lang['Last_Msg_Display_Forum'] = "Display Forum Name?"; $lang['Last_Msg_Align'] = "Title Align:" ; $lang['Last_Msg_Align_Left'] = "left"; $lang['Last_Msg_Align_Right'] = "right"; $lang['Last_Msg_Align_Center'] = "center"; $lang['Last_Msg_Target'] = "Target:"; $lang['Last_Msg_Target_1'] = "New Window"; $lang['Last_Msg_Target_2'] = "Current Window"; $lang['msg_filter_date'] = "Filter by time"; $lang['msg_filter_date_explain'] = "- Show posts from last week, month, year..."; // // Announcement // $lang['announce_nbr_display'] = "Maximum Number of Messages to Display"; $lang['announce_nbr_days'] = "Number of Days to Display Messages"; $lang['announce_img'] = "Announcement Image"; $lang['announce_img_sticky'] = "Sticky Image"; $lang['announce_img_normal'] = "Normal Message Image"; $lang['announce_img_global'] = "Global Announcement Image"; $lang['announce_display'] = "Display Announcement(s) messages in this Block"; $lang['announce_display_sticky'] = "Display Sticky(ies) in this Block"; $lang['announce_display_normal'] = "Display Normal message(s) in this Block"; $lang['announce_display_global'] = "Display Global Announcements in this Block"; $lang['announce_forum'] = "Source Forums"; $lang['announce_truncate'] = "Truncate Announce Length"; $lang['announce_forum_explain'] = "- You may make multiple selections. For example, hold down the CTRL button on your keyboard while clicking extra selections.<br />* If nothing is selected, all authorized forums will be visible"; // // Polls // $lang['Poll_Display'] = "Which Poll do you want to display?"; $lang['poll_forum'] = "Source Forums"; $lang['poll_forum_explain'] = "- You may make multiple selections<br />* If nothing is selected, all authorized forums will be visible"; $lang['Not_Specified'] = "Not Specified"; // // That's all Folks! // ------------------------------------------------- ?> --- 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> |