diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-03 13:54:04 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-03 13:54:04 +0000 |
| commit | 5251423378286dca84dbbf30f7112c8ac0dcb7cd (patch) | |
| tree | 2acb47953f8312f3f9a0b5e20066f86c173e32a8 /phpBB/language | |
| parent | 2297465c60d778ba4e4026ba8771972aa149e1d7 (diff) | |
| download | forums-5251423378286dca84dbbf30f7112c8ac0dcb7cd.tar forums-5251423378286dca84dbbf30f7112c8ac0dcb7cd.tar.gz forums-5251423378286dca84dbbf30f7112c8ac0dcb7cd.tar.bz2 forums-5251423378286dca84dbbf30f7112c8ac0dcb7cd.tar.xz forums-5251423378286dca84dbbf30f7112c8ac0dcb7cd.zip | |
Fixed various issues and bugs
git-svn-id: file:///svn/phpbb/trunk@1260 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
| -rw-r--r-- | phpBB/language/lang_english/lang_main.php | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/phpBB/language/lang_english/lang_main.php b/phpBB/language/lang_english/lang_main.php index 6e9efae22b..e2ed9fac16 100644 --- a/phpBB/language/lang_english/lang_main.php +++ b/phpBB/language/lang_english/lang_main.php @@ -26,12 +26,16 @@ // // You should also try to set a locale and a character // encoding (plus direction). The encoding and direction -// will be sent to the template +// 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! // setlocale(LC_ALL, "en"); $lang['ENCODING'] = "iso-8859-1"; $lang['DIRECTION'] = "LTR"; +$lang['LEFT'] = "LEFT"; +$lang['RIGHT'] = "RIGHT"; // // Common, these terms are used @@ -193,15 +197,15 @@ $lang['View_newest_posts'] = "View posts since your last visit"; $lang['Topics_marked_read'] = "The topics for this forum have now been marked read"; $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_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>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>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>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>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 // @@ -639,6 +643,9 @@ $lang['this_forum'] = " this forum"; // Viewonline // $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"; $lang['Location'] = "Location"; |
