|
From: Paul S. O. <ps...@us...> - 2001-11-03 13:54:08
|
Update of /cvsroot/phpbb/phpBB2/language/lang_english In directory usw-pr-cvs1:/tmp/cvs-serv17905/language/lang_english Modified Files: lang_main.php Log Message: Fixed various issues and bugs Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/lang_main.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** lang_main.php 2001/10/26 15:48:48 1.17 --- lang_main.php 2001/11/03 13:54:04 1.18 *************** *** 27,31 **** // You should also try to set a locale and a character // encoding (plus direction). The encoding and direction ! // will be sent to the template // --- 27,33 ---- // 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! // *************** *** 33,36 **** --- 35,40 ---- $lang['ENCODING'] = "iso-8859-1"; $lang['DIRECTION'] = "LTR"; + $lang['LEFT'] = "LEFT"; + $lang['RIGHT'] = "RIGHT"; // *************** *** 194,206 **** $lang['Rules_post_can'] = "You <b>can</b> post new topics in this forum"; ! $lang['Rules_post_cannot'] = "You <b>can</b> post new topics in this forum"; $lang['Rules_reply_can'] = "You <b>can</b> reply to topics in this forum"; ! $lang['Rules_reply_cannot'] = "You <b>can</b> reply to topics in this forum"; $lang['Rules_edit_can'] = "You <b>can</b> edit your posts in this forum"; ! $lang['Rules_edit_cannot'] = "You <b>can</b> edit your posts in this forum"; $lang['Rules_delete_can'] = "You <b>can</b> delete posts in this forum"; ! $lang['Rules_delete_cannot'] = "You <b>can</b> delete posts in this forum"; $lang['Rules_vote_can'] = "You <b>can</b> vote in polls in this forum"; ! $lang['Rules_vote_cannot'] = "You <b>can</b> vote in polls in this forum"; $lang['Rules_moderate'] = "You <b>can</b> %smoderate this forum%s"; // %s replaced by a href --- 198,210 ---- $lang['Rules_post_can'] = "You <b>can</b> post new topics in this forum"; ! $lang['Rules_post_cannot'] = "You <b>cannot</b> post new topics in this forum"; $lang['Rules_reply_can'] = "You <b>can</b> reply to topics in this forum"; ! $lang['Rules_reply_cannot'] = "You <b>cannot</b> reply to topics in this forum"; $lang['Rules_edit_can'] = "You <b>can</b> edit your posts in this forum"; ! $lang['Rules_edit_cannot'] = "You <b>cannot</b> edit your posts in this forum"; $lang['Rules_delete_can'] = "You <b>can</b> delete posts in this forum"; ! $lang['Rules_delete_cannot'] = "You <b>cannot</b> delete posts in this forum"; $lang['Rules_vote_can'] = "You <b>can</b> vote in polls in this forum"; ! $lang['Rules_vote_cannot'] = "You <b>cannot</b> vote in polls in this forum"; $lang['Rules_moderate'] = "You <b>can</b> %smoderate this forum%s"; // %s replaced by a href *************** *** 640,643 **** --- 644,650 ---- // $lang['Who_is_online'] = "Who is online"; + $lang['Reg_users_online'] = "There are %d Registered and %d Hidden users online"; + $lang['Guest_users_online'] = "There are %d Guest users online"; + $lang['Guest_user_online'] = "There is %d Guest user online"; $lang['Online_explain'] = "This data is based on users active over the past five minutes"; $lang['No_users_browsing'] = "There are no users currently browsing this forum"; |