|
From: FlorinCB <ory...@us...> - 2008-10-11 04:04:41
|
Update of /cvsroot/mxbb/mx_chatbox/language/lang_english In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8783/language/lang_english Added Files: lang_admin.php lang_main.php Log Message: fixed version --- NEW FILE: lang_main.php --- <?php /*************************************************************************** * lang_main.php * ------------- * begin : July, 2003 * copyright : (c) 2003 Marc Ferran * email : markus_petrux at phpmix dot com * module : mx_chatbox * 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. * ***************************************************************************/ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); // // ChatBox v.1.0.0 // $lang['Chat'] = "Chat"; $lang['How_Many_Chatters'] = "There are <b>%d</b> user(s) on Chat now"; $lang['Who_Are_Chatting' ] = "Who's on Chat: <b>%s</b>"; $lang['Click_to_join_chat'] = "Click to join Chat"; $lang['ChatBox'] = "ChatBox"; $lang['log_out_chat'] = "You have successfully logged out from Chat on "; $lang['Login_to_join_chat'] = "Login to join Chat"; $lang['Please_Login_to_chat'] = "Please, login to join Chat."; $lang['Send'] = "Send"; $lang['Back_to_Chat'] = "Back to Chat"; $lang['About_Chatbox'] = "About ChatBox"; $lang['Chatbox_Options'] = "ChatBox Options"; $lang['Not_Implemented'] = "Feature Not Implemented Yet."; $lang['Joined_chat_on'] = "joined chat on"; $lang['logged_out_on'] = "logged out on"; $lang['became_away_on'] = "became away on"; $lang['is_online_again'] = "is online again"; $lang['Refresh'] = "Refresh"; $lang['FAQ'] = "FAQ"; $lang['About'] = "About"; $lang['Options'] = "Options"; $lang['Online'] = "Online"; $lang['Away'] = "Away"; $lang['Send_URL'] = "Send URL"; $lang['Exit'] = "Exit"; $lang['Enter_Message'] = "Enter Message"; // // ChatBox v.1.1.2 // $lang['Color'] = "Color"; $lang['Select_Color'] = "Select Color"; $lang['Sample_Text'] = "Mouse Over the Color Table ...and Click!"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /*************************************************************************** * lang_admin.php * -------------- * begin : July, 2003 * copyright : (c) 2003 Marc Ferran * email : markus_petrux at phpmix dot com * module : mx_chatbox * 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. * ***************************************************************************/ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); // // ChatBox v.1.1.0 // $lang['ChatBox_Settings'] = "ChatBox Settings"; $lang['ChatBox_Settings_explain'] = "Use the form below to configure your ChatBox Settings"; $lang['ChatBox_Settings_updated'] = "ChatBox Settings Updated Sucessfully."; $lang['ChatBox_Settings_return'] = "Click %sHere%s to return to ChatBox Settings."; $lang['ChatBox_refresh_time'] = "Refresh Time"; $lang['ChatBox_refresh_time_explain'] = "Interval (in seconds) before doing an automatic refresh."; $lang['ChatBox_delete_time'] = "Delete Time"; $lang['ChatBox_delete_time_explain'] = "Interval (in seconds) to delete old messages."; $lang['ChatBox_offline_time'] = "Offline Time"; $lang['ChatBox_offline_time_explain'] = "Interval (in seconds) to check for users going offline."; $lang['ChatBox_away_time'] = "Away Time"; $lang['ChatBox_away_time_explain'] = "Interval (in seconds) to check for users leaving the Chat."; $lang['ChatBox_stylesheet'] = "Style Sheet"; $lang['ChatBox_stylesheet_explain'] = "CSS file used by the ChatBox."; $lang['ChatBox_show_amount'] = "Show Amount"; $lang['ChatBox_show_amount_explain'] = "Number of chat messages to show in ChatBox."; $lang['ChatBox_max_msg_len'] = "Max. Message Length"; $lang['ChatBox_max_msg_len_explain'] = "Maximum message length (in chars)."; $lang['ChatBox_direction'] = "Position of new Posts"; $lang['ChatBox_direction_explain'] = "Display new posts at bottom or at the top."; $lang['Top'] = "Top"; $lang['Bottom'] = "Bottom"; // // That's all Folks! // ------------------------------------------------- ?> |