mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 03:04:09 +02:00
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;) The basic style guide is: 1) British English, Cambridge style... ie: -ise, not -ize, etc. 2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ... additional hooks may be added to the strings to assist this. 3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as they must always be entitised. There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after however many betas there may be. ;) Wooh! :P git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -32,8 +32,8 @@ if (empty($lang) || !is_array($lang))
|
||||
|
||||
// Bot settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_MASS_EMAIL_EXPLAIN' => 'Here you can email a message to either all of your users, or all users of a specific group. To do this, an email will be sent out to the administrative email address supplied, with a blind carbon copy sent to all recipients. If you are emailing a large group of people please be patient after submitting and do not stop the page halfway through. It is normal for a mass emailing to take a long time, you will be notified when the script has completed',
|
||||
'ALL_USERS' => 'All Users',
|
||||
'ACP_MASS_EMAIL_EXPLAIN' => 'Here you can email a message to either all of your users or all users of a specific group. To do this, an email will be sent out to the administrative email address supplied, with a blind carbon copy sent to all recipients. If you are emailing a large group of people please be patient after submitting and do not stop the page halfway through. It is normal for a mass emailing to take a long time, you will be notified when the script has completed',
|
||||
'ALL_USERS' => 'All users',
|
||||
|
||||
'COMPOSE' => 'Compose',
|
||||
|
||||
@@ -51,7 +51,7 @@ $lang = array_merge($lang, array(
|
||||
'MAIL_HIGH_PRIORITY' => 'High',
|
||||
'MAIL_LOW_PRIORITY' => 'Low',
|
||||
'MAIL_NORMAL_PRIORITY' => 'Normal',
|
||||
'MAIL_PRIORITY' => 'Mail Priority',
|
||||
'MAIL_PRIORITY' => 'Mail priority',
|
||||
'MASS_MESSAGE' => 'Your message',
|
||||
'MASS_MESSAGE_EXPLAIN' => 'Please note that you may enter only plain text. All markup will be removed before sending.',
|
||||
|
||||
|
Reference in New Issue
Block a user