|
From: Paul S. O. <ps...@us...> - 2001-11-18 14:00:34
|
Update of /cvsroot/phpbb/phpBB2/language/lang_english In directory usw-pr-cvs1:/tmp/cvs-serv12024/language/lang_english Modified Files: lang_main.php Log Message: More lang related cleanups Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/lang_main.php,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -r1.39 -r1.40 *** lang_main.php 2001/11/16 20:28:21 1.39 --- lang_main.php 2001/11/18 14:00:31 1.40 *************** *** 32,37 **** // ! setlocale(LC_ALL, "en"); ! $lang['ENCODING'] = "iso-8859-1"; $lang['DIRECTION'] = "LTR"; $lang['LEFT'] = "LEFT"; --- 32,37 ---- // ! //setlocale(LC_ALL, "en"); ! $lang['ENCODING'] = "utf-8"; $lang['DIRECTION'] = "LTR"; $lang['LEFT'] = "LEFT"; *************** *** 60,63 **** --- 60,64 ---- $lang['Hours'] = "Hours"; $lang['Message'] = "Message"; + $lang['1_Day'] = "1 Day"; $lang['7_Days'] = "7 Days"; *************** *** 100,103 **** --- 101,111 ---- $lang['Reply_with_quote'] = "Reply with quote"; + $lang['Click_return_topic'] = "Click %sHere%s to return to the topic"; // %s's here are for uris, do not remove! + $lang['Click_return_login'] = "Click %sHere%s to try again"; + $lang['Click_return_forum'] = "Click %sHere%s to return to the forum"; + $lang['Click_view_message'] = "Click %sHere%s to view your message"; + $lang['Click_return_modcp'] = "Click %sHere%s to return to the Moderator Control Panel"; + $lang['Click_return_group'] = "Click %sHere%s to return to group information"; + $lang['Admin_panel'] = "Go to Administration Panel"; *************** *** 164,168 **** // $lang['No_Posts'] = "No Posts"; ! $lang['Forum_Index'] = "Forum Index"; $lang['No_forums'] = "This board has no forums"; --- 172,176 ---- // $lang['No_Posts'] = "No Posts"; ! $lang['Forum_Index'] = "%s Forum Index"; // eg. sitename Forum Index, %s can be removed if you prefer $lang['No_forums'] = "This board has no forums"; *************** *** 230,235 **** $lang['Return_to_top'] = "Return to top"; ! $lang['Read_profile'] = "Read profile users profile"; // Followed by username of poster ! $lang['Send_email'] = "Send email to user"; // Followed by username of poster $lang['Visit_website'] = "Visit posters website"; $lang['ICQ_status'] = "ICQ Status"; --- 238,243 ---- $lang['Return_to_top'] = "Return to top"; ! $lang['Read_profile'] = "View users profile"; ! $lang['Send_email'] = "Send email to user"; $lang['Visit_website'] = "Visit posters website"; $lang['ICQ_status'] = "ICQ Status"; *************** *** 238,241 **** --- 246,253 ---- $lang['Delete_post'] = "Delete this post"; + $lang['wrote'] = "wrote"; // proceeds the username and is followed by the quoted text + $lang['Quote'] = "Quote"; // comes before bbcode quote output. + $lang['Code'] = "Code"; // comes before bbcode code output. + $lang['Edited_time_total'] = "Last edited by %s on %s, edited %d time in total"; // Last edited by me on 12 Oct 2001, edited 1 time in total $lang['Edited_times_total'] = "Last edited by %s on %s, edited %d times in total"; // Last edited by me on 12 Oct 2001, edited 2 times in total *************** *** 325,332 **** $lang['Delete_post'] = "Delete this post"; - $lang['wrote'] = "wrote"; // proceeds the username and is followed by the quoted text - $lang['Quote'] = "Quote"; // comes before bbcode quote output. - $lang['Code'] = "Code"; // comes before bbcode code output. - $lang['Stored'] = "Your message has been entered successfully"; $lang['Deleted'] = "Your message has been deleted successfully"; --- 337,340 ---- *************** *** 334,344 **** $lang['Vote_cast'] = "Your vote has been cast"; - $lang['Click_return_topic'] = "Click %sHere%s to return to the topic"; // %s's here are for uris, do not remove! - $lang['Click_return_login'] = "Click %sHere%s to try again"; - $lang['Click_return_forum'] = "Click %sHere%s to return to the forum"; - $lang['Click_view_message'] = "Click %sHere%s to view your message"; - $lang['Click_return_modcp'] = "Click %sHere%s to return to the Moderator Control Panel"; - $lang['Click_return_group'] = "Click %sHere%s to return to group information"; - $lang['Topic_reply_notification'] = "Topic Reply Notification"; --- 342,345 ---- *************** *** 356,361 **** $lang['Inbox'] = "Inbox"; $lang['Outbox'] = "Outbox"; ! $lang['Savedbox'] = "Saved box"; ! $lang['Sentbox'] = "Sent box"; $lang['Flag'] = "Flag"; $lang['Subject'] = "Subject"; --- 357,362 ---- $lang['Inbox'] = "Inbox"; $lang['Outbox'] = "Outbox"; ! $lang['Savebox'] = "Savebox"; ! $lang['Sentbox'] = "Sentbox"; $lang['Flag'] = "Flag"; $lang['Subject'] = "Subject"; |