|
From: Selven <sel...@us...> - 2007-06-21 18:21:23
|
Update of /cvsroot/mxbb/mx_shoutbox/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27703/language/lang_english Added Files: index.html lang_admin.php lang_main.php Log Message: First Upload --- NEW FILE: index.html --- --- NEW FILE: lang_main.php --- <?php /// ------------------------------------------------------------- // // // FILENAME : lang_main.php // COPYRIGHT : © 2002, 2003 apegaming.net // WWW : http://www.blame-the-french.com.com/ // LICENCE : GPL vs2.0 [ see /docs/COPYING ] // // ------------------------------------------------------------- // // The format of this file is: // // ---> $lang['message'] = "text"; // // You should also try to set a locale and a character // encoding (plus direction). The encoding and direction // will be sent to the template. The locale may or may // not work, it's dependent on OS support and the syntax // varies ... give it your best guess! // // Module $lang['Shout_title'] = "Shoutbox"; $lang['Shout_form_error'] = "You must enter a message when posting."; $lang['Shout_delete_shout'] = "Do you want to delete this shout?"; $lang['Shout_alt_delete'] = "Delete this shout"; $lang['Edit_Shout_Info'] = "Edit this shout"; $lang['shout_updated_successfully'] = "Shout Updated Successfully"; $lang['click_continue'] = "Click here to continue"; $lang['shout_size_expl'] = "Max size of message:"; $lang['Shout_guest'] = "Guest"; $lang['Shout_message'] = "Message"; $lang['Shout_username'] = "Name"; $lang['Shout_submit'] = "Shout!"; $lang['Shout_emoticons'] = "Emoticons"; $lang['Shout_log_on'] = "You must be logged in to shout."; // Posting $lang['Shout_delete_error'] = "Delete was called without a shout ID."; $lang['Shout_edit_error'] = "Edit was called without a shout ID."; $lang['Shout_edit_perm_error'] = "You don't have permission to edit this shout."; $lang['Shout_message_delete'] = "The shout has been deleted."; $lang['Shout_message_return'] = "%sReturn%s"; $lang['Shout_message_add'] = "Shout entered."; $lang['Shout_error'] = "Error."; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php // ------------------------------------------------------------- // // // FILENAME : lang_admin.php // COPYRIGHT : © 2002, 2003 apegaming.net // WWW : http://www.blame-the-french.com.com/ // LICENCE : GPL vs2.0 [ see /docs/COPYING ] // // ------------------------------------------------------------- // // The format of this file is: // // ---> $lang['message'] = "text"; // // You should also try to set a locale and a character // encoding (plus direction). The encoding and direction // will be sent to the template. The locale may or may // not work, it's dependent on OS support and the syntax // varies ... give it your best guess! // // Admin $lang['Yes'] = "Yes"; $lang['No'] = "No"; $lang['Shout_config'] = "MX Shoutbox Configuration"; $lang['Shout_config_explain'] = "Configuration of the MX Shoutbox Module"; $lang['Shout_settings'] = "Shoutbox Settings"; $lang['Shout_list_index'] = "Number of shouts per page"; $lang['Shout_list_index_explain'] = "Define how may shout posts to display on your page. (Default is 5)"; $lang['Shout_size'] = "Max shout size"; $lang['Shout_size_explain'] = "Maximum number of characters allowed per shout"; $lang['Shout_list_expand_'] = "Number of expanded shouts per page"; $lang['Shout_list_expand_explain'] = "Define how many shout posts to display on the expanded page.<br />0 = Unlimited (Default is 100)"; $lang['Shout_allow_guest'] = "Allow guests to shout?"; $lang['Shout_allow_guest_explain'] = "Setting this to Yes will allow unregistered members to post shouts. Setting this to No will only allow registered members to post shouts. (Default is No)"; $lang['Shout_allow_member_del'] = "Allow members to delete their shouts?"; $lang['Shout_allow_member_del_explain'] = "Setting this to Yes will allow registered members to delete their own shouts, if they chose to. Otherwise, setting this to No will only allow administrators to delete. (Default is Yes)"; $lang['Shout_allow_member_edit'] = "Allow members to edit their shouts?"; $lang['Shout_allow_member_edit_explain'] = "Setting this to Yes will allow registered members to edit their own shouts, if they chose to. Otherwise, setting this to No will only allow administrators to edit. (Default is Yes)"; $lang['Shout_allow_bbcode'] = "Allow BBCode in shouts?"; $lang['Shout_allow_bbcode_explain'] = "Setting this to Yes will allow BBCode in shouts. Setting to no will not. (Default is No)"; $lang['Shout_allow_span'] = "Allow shouts to span pages?"; $lang['Shout_allow_span_explain'] = "Setting this to Yes will allow the shouts to span across multiple pages, and display a list of page numbers. Setting to No disables. (Default is Yes)"; $lang['Shout_fixed_height'] = "Fix the height of shout boxes?"; $lang['Shout_fixed_height_explain'] = "Setting this to yes will fix all shouts to a certain height. If the shout is very long then a scroll bar will appear"; $lang['Shout_box_height'] = "Shoutbox height"; $lang['Shout_box_height_explain'] = "This value sets the height of the box each shout is displayed in. The value is in pixels. This value is only relevant if shout boxes are set to fixed"; $lang['Submit'] = "Submit"; $lang['Reset'] = "Reset"; $lang['shout_config_updated'] = "MX Shoutbox configuration has been saved."; $lang['Click_return_shout_config'] = "Click %sHere%s to return to Shoutbox Administration"; // // That's all Folks! // ------------------------------------------------- ?> |