diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-27 15:15:17 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-27 15:15:17 +0000 |
commit | 4f2f7c1ff4e2d5f6843b9d76e690ced6673829a4 (patch) | |
tree | 0744af43c960f78c05783d85ee44fad6b67f641a /phpBB/language | |
parent | 8cabcdea5f1cdb075ad5a97a12a55091c3583257 (diff) | |
download | forums-4f2f7c1ff4e2d5f6843b9d76e690ced6673829a4.tar forums-4f2f7c1ff4e2d5f6843b9d76e690ced6673829a4.tar.gz forums-4f2f7c1ff4e2d5f6843b9d76e690ced6673829a4.tar.bz2 forums-4f2f7c1ff4e2d5f6843b9d76e690ced6673829a4.tar.xz forums-4f2f7c1ff4e2d5f6843b9d76e690ced6673829a4.zip |
Various new expressions and basic start of array creation
git-svn-id: file:///svn/phpbb/trunk@342 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
-rwxr-xr-x | phpBB/language/lang_english.php | 97 |
1 files changed, 95 insertions, 2 deletions
diff --git a/phpBB/language/lang_english.php b/phpBB/language/lang_english.php index 36b13cdefa..31d1954114 100755 --- a/phpBB/language/lang_english.php +++ b/phpBB/language/lang_english.php @@ -19,6 +19,94 @@ * ***************************************************************************/ +// The future format of this file +// will be $lang['message'] = "text"; +// message should be a good representation of +// text (including capitalisation), spaces replaced +// with underscores. Remembering different languages +// treat consecutive words differently(!) +// +// The number of phrases should be kept to a minimum +// so we should try and reuse as much as possible. + +// +// Common, these terms are used +// extensively on several pages +// +$lang['Forum'] = "Forum"; +$lang['Forums'] = "Forums"; +$lang['Topic'] = "Topic"; +$lang['Topics'] = "Topics"; +$lang['Reply'] = "Reply"; +$lang['Replies'] = "Replies"; +$lang['Post'] = "Post"; +$lang['Posts'] = "Posts"; +$lang['Message'] = "Message"; +$lang['Messages'] = "Messages"; +$lang['Poster'] = "Poster"; +$lang['Author'] = "Author"; + +$lang['All_Topics'] = "All Topics"; +$lang['Day'] = "Day"; +$lang['Days'] = "Days"; +$lang['Week'] = "Week"; +$lang['Weeks'] = "Weeks"; +$lang['Month'] = "Month"; +$lang['Months'] = "Months"; +$lang['Year'] = "Year"; +$lang['Years'] = "Years"; + +// +// Login +// + +// +// Index page +// + +// +// Viewforum +// + +// +// Viewtopic +// + +// +// Posting/Replying (Not private +// messaging!) +// + +// +// Private Messageing <= Should be blank for now +// + +// +// Profiles/Registration +// + +// +// Memberslist +// + +// +// Search <= Should be blank for now +// + +// +// Topic Admin <= Should be blank for now +// + +// +// Errors (not related to a +// specific failure on a page, eg. +// incorrect password messages do +// not belong here!) +// + +// +// Old format ... +// $l_forum = "Forum"; $l_forums = "Forums"; $l_topic = "Topic"; @@ -144,7 +232,7 @@ $l_website = "Web Site Address"; $l_occupation = "Occupation"; $l_interests = "Interests"; $l_signature = "Signature"; -$l_sigexplain = "This is a block of text that can be added to posts you make.<BR>255 characters max!"; +$l_sigexplain = "This is a block of text that can be added to posts you make. There is a 255 character limit"; $l_usertaken = "The $l_username you picked has been taken."; $l_userdisallowed= "The $l_username you picked has been disallowed by the administrator. $l_tryagain"; $l_infoupdated = "Your Information has been updated"; @@ -155,7 +243,12 @@ $l_viewingprofile = "Viewing profile of "; $l_hidden = "hidden"; $l_boardtemplate = "Select Template"; $l_date_format = "Date format"; -$l_date_format_explanation = "Only change this if you know what you are doing! (Sintax is identical to PHP <a href=\"http://www.php.net/date\">date()</a> function)"; +$l_avatar = "Avatar"; +$l_avatar_explain = "Use this to display a small graphic image below your user details in posts. Only one image can be uploaded at a time and the size is limited to under $max_avatar_size bytes"; +$l_Upload_Image = "Upload Image"; +$l_Delete_Image = "Delete Image"; +$l_Current_Image = "Current Image"; +$l_date_format_explanation = "The syntax used is identical to the PHP <a href=\"http://www.php.net/date\" target=\"_other\">date()</a> function"; $l_password_if_changed = "You only need to supply a password if you want to change it."; $l_password_confirm_if_changed = "You only need to confirm your password if you changed it above."; |