diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-20 15:16:03 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-20 15:16:03 +0000 |
| commit | c285a885ae3a45a1ccb765553cea65b15331e6f1 (patch) | |
| tree | 2f86781940a8cf5dcd71606b27883db267dc0d0f /phpBB/language | |
| parent | 862f5d67003f73ed419b06bd5d59832308ed1be5 (diff) | |
| download | forums-c285a885ae3a45a1ccb765553cea65b15331e6f1.tar forums-c285a885ae3a45a1ccb765553cea65b15331e6f1.tar.gz forums-c285a885ae3a45a1ccb765553cea65b15331e6f1.tar.bz2 forums-c285a885ae3a45a1ccb765553cea65b15331e6f1.tar.xz forums-c285a885ae3a45a1ccb765553cea65b15331e6f1.zip | |
Fixed errors, non-sid-appended urls, lang switchovers, etc.
git-svn-id: file:///svn/phpbb/trunk@707 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
| -rwxr-xr-x | phpBB/language/lang_english.php | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/phpBB/language/lang_english.php b/phpBB/language/lang_english.php index 43b5848795..0a9e700c33 100755 --- a/phpBB/language/lang_english.php +++ b/phpBB/language/lang_english.php @@ -7,7 +7,6 @@ * email : support@phpbb.com * * $Id$ - * $Id$ * * ***************************************************************************/ @@ -88,7 +87,10 @@ $lang['Yes'] = "Yes"; $lang['No'] = "No"; $lang['Private_messaging'] = "Send a Private Message"; -$lang['Click_index'] = "Click <a href=\"index.$phpEx\">HERE</a> to return to the index"; + +$lang['and'] = "and"; // used within a sentence in various places + +$lang['Admin_panel'] = "Go to Administration Panel"; $lang['You'] = "You"; // This is followed by the auth results for a given function (see below) $lang['can'] = "<b>can</b>"; @@ -200,7 +202,8 @@ $lang['Delete_post'] = "Delete this post"; $lang['Edited_by'] = "Last edited by"; // followed by -> [username] on ... $lang['on'] = "on"; $lang['edited'] = "edited"; // followed by -> [num] times in total -$lang['times_in_total'] = "time/s in total"; +$lang['time_in_total'] = "time in total"; +$lang['times_in_total'] = "times in total"; $lang['Lock_topic'] = "Lock this topic"; $lang['Unlock_topic'] = "Unlock this topic"; @@ -262,6 +265,13 @@ $lang['to_return_topic'] = "to return to the topic"; // // Private Messaging // +$lang['You_have'] = "You have"; // followed by "x new message/s" +$lang['new'] = "new"; // see above +$lang['message'] = "message"; // see above +$lang['messages'] = "messages"; // see above +$lang['No_new_pm'] = "You have no new messages"; +$lang['Login_check_pm'] = "Login to check your private messages"; + $lang['Inbox'] = "Inbox"; $lang['Sent'] = "Sent"; $lang['Outbox'] = "Outbox"; |
