|
From: Paul S. O. <ps...@us...> - 2001-11-24 15:57:35
|
Update of /cvsroot/phpbb/phpBB2/language/lang_english In directory usw-pr-cvs1:/tmp/cvs-serv17540/language/lang_english Modified Files: lang_main.php Log Message: Reminder to self, checking files at 2am bad, checking files at 2pm good Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/lang_main.php,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -r1.50 -r1.51 *** lang_main.php 2001/11/24 09:58:10 1.50 --- lang_main.php 2001/11/24 15:57:31 1.51 *************** *** 32,36 **** // ! //setlocale(LC_ALL, "en"); $lang['ENCODING'] = "utf-8"; $lang['DIRECTION'] = "LTR"; --- 32,36 ---- // ! setlocale(LC_ALL, "en"); $lang['ENCODING'] = "utf-8"; $lang['DIRECTION'] = "LTR"; *************** *** 75,78 **** --- 75,80 ---- $lang['Reset'] = "Reset"; $lang['Cancel'] = "Cancel"; + $lang['Preview'] = "Preview"; + $lang['Confirm'] = "Confirm"; $lang['Spellcheck'] = "Spellcheck"; $lang['Yes'] = "Yes"; *************** *** 281,285 **** $lang['Post_a_new_topic'] = "Post a new topic"; - $lang['Post_new_topic_in'] = "Post new topic in:"; // Followed by forum name $lang['Post_a_reply'] = "Post a reply"; $lang['Post_topic_as'] = "Post topic as"; --- 283,286 ---- *************** *** 291,301 **** $lang['Post_Normal'] = "Normal"; - $lang['Confirm'] = "Confirm"; $lang['Confirm_delete'] = "Are you sure you want to delete this post?"; $lang['Confirm_delete_poll'] = "Are you sure you want to delete this poll?"; - $lang['Submit_post'] = "Submit Post"; - $lang['Preview'] = "Preview"; - $lang['Spellcheck'] = "Spellcheck"; - $lang['Cancel_post'] = "Cancel post"; $lang['Flood_Error'] = "You cannot make another post so soon after your last, please try again in a short while"; --- 292,297 ---- *************** *** 426,429 **** --- 422,426 ---- $lang['Click_view_privmsg'] = "Click %sHere%s to visit your Inbox"; + // // Profiles/Registration *************** *** 522,530 **** $lang['Fields_empty'] = "You must fill in the required fields"; $lang['Avatar_filetype'] = "The avatar filetype must be .jpg, .gif or .png"; ! $lang['Avatar_filesize'] = "The avatar image file size must be more than 0 kB and less than"; // followed by xx kB, xx being the size ! $lang['kB'] = "kB"; ! $lang['Avatar_imagesize'] = "The avatar must be less than " . $board_config['avatar_max_width'] . " pixels wide and " . $board_config['avatar_max_height'] . " pixels high"; ! $lang['Welcome_subject'] = "Welcome to " . $board_config['sitename'] . " Forums"; $lang['New_account_subject'] = "New user account"; $lang['Account_activated_subject'] = "Account Activated"; --- 519,526 ---- $lang['Fields_empty'] = "You must fill in the required fields"; $lang['Avatar_filetype'] = "The avatar filetype must be .jpg, .gif or .png"; ! $lang['Avatar_filesize'] = "The avatar image file size must be less than %d kB"; // The avatar image file size must be less than 6 kB ! $lang['Avatar_imagesize'] = "The avatar must be less than %d pixels wide and %d pixels high"; ! $lang['Welcome_subject'] = "Welcome to %s Forums"; // Welcome to my.com forums $lang['New_account_subject'] = "New user account"; $lang['Account_activated_subject'] = "Account Activated"; *************** *** 650,654 **** $lang['Search_keywords'] = "Search for Keywords"; ! $lang['Search_keywords_explain'] = "You can use <u>AND</u> to define words which must be in the results, <u>OR</u> to define words which may be in the result and <u>NOT</u> to define words which should not be in the result. Use * as a wildcard for partial matches. To define a phrase enclose it within """; $lang['Search_author'] = "Search for Author"; $lang['Search_author_explain'] = "Use * as a wildcard for partial matches"; --- 646,650 ---- $lang['Search_keywords'] = "Search for Keywords"; ! $lang['Search_keywords_explain'] = "You can use <u>AND</u> to define words which must be in the results, <u>OR</u> to define words which may be in the result and <u>NOT</u> to define words which should not be in the result. Use * as a wildcard for partial matches"; $lang['Search_author'] = "Search for Author"; $lang['Search_author_explain'] = "Use * as a wildcard for partial matches"; *************** *** 684,704 **** // Auth related entries // ! $lang['Sorry_auth'] = "Sorry but only "; // This is followed by the auth type, eg. Registered and then one or more of the following entries ! ! $lang['Anonymous_Users'] = "Anonymous Users"; ! $lang['Registered_Users'] = "Registered Users"; ! $lang['Users_granted_access'] = "Users granted special access"; ! $lang['Moderators'] = "Moderators"; ! $lang['Administrators'] = "Administrators"; ! ! $lang['can_read'] = " can read"; ! $lang['can_post_announcements'] = " can post announcements in"; ! $lang['can_post_sticky_topics'] = " can post sticky topics in"; ! $lang['can_post_new_topics'] = " can post new topics in"; ! $lang['can_reply_to_topics'] = " can reply to topics in"; ! $lang['can_edit_topics'] = " can edit topics in"; ! $lang['can_delete_topics'] = " can delete topics in"; ! ! $lang['this_forum'] = " this forum"; --- 680,699 ---- // Auth related entries // ! // Note the %s will be replaced with one of the following 'user' arrays ! $lang['Sorry_auth_announce'] = "Sorry but only %s can post announcements in this forum"; ! $lang['Sorry_auth_sticky'] = "Sorry but only %s can post sticky messages in this forum"; ! $lang['Sorry_auth_read'] = "Sorry but only %s can read topics in this forum"; ! $lang['Sorry_auth_post'] = "Sorry but only %s can post topics in this forum"; ! $lang['Sorry_auth_reply'] = "Sorry but only %s can reply to posts in this forum"; ! $lang['Sorry_auth_edit'] = "Sorry but only %s can edit posts in this forum"; ! $lang['Sorry_auth_delete'] = "Sorry but only %s can delete posts in this forum"; ! $lang['Sorry_auth_vote'] = "Sorry but only %s can vote in polls in this forum"; ! ! // These replace the %s in the above strings ! $lang['Anonymous_Users'] = "<b>anonymous users</b>"; ! $lang['Registered_Users'] = "<b>registered users</b>"; ! $lang['Users_granted_access'] = "<b>users granted special access</b>"; ! $lang['Moderators'] = "<b>moderators</b>"; ! $lang['Administrators'] = "<b>administrators</b>"; |