2005-11-30 17:48:06 +00:00
< ? php
/**
*
* acp_language [ English ]
*
* @ package language
* @ version $Id $
* @ copyright ( c ) 2005 phpBB Group
* @ license http :// opensource . org / licenses / gpl - license . php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if ( empty ( $lang ) || ! is_array ( $lang ))
{
$lang = array ();
}
2006-09-17 22:02:28 +00:00
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
2005-11-30 17:48:06 +00:00
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
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
2006-09-24 00:28:32 +00:00
'ACP_FILES' => 'Admin language files' ,
2007-05-10 15:31:35 +00:00
'ACP_LANGUAGE_PACKS_EXPLAIN' => 'Here you are able to install/remove language packs.' ,
2005-11-30 17:48:06 +00:00
2007-05-03 14:29:22 +00:00
'EMAIL_FILES' => 'E-mail templates' ,
2005-11-30 17:48:06 +00: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
2006-09-24 00:28:32 +00:00
'FILE_CONTENTS' => 'File contents' ,
2005-11-30 17:48:06 +00:00
'FILE_FROM_STORAGE' => 'File from storage folder' ,
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
2006-09-24 00:28:32 +00:00
'HELP_FILES' => 'Help files' ,
2005-11-30 17:48:06 +00:00
'INSTALLED_LANGUAGE_PACKS' => 'Installed language packs' ,
'INVALID_LANGUAGE_PACK' => 'The selected language pack seems to be not valid. Please verify the language pack and upload it again if necessary.' ,
2006-02-19 14:17:12 +00:00
'INVALID_UPLOAD_METHOD' => 'The selected upload method is not valid, please choose a different method.' ,
2005-11-30 17:48:06 +00:00
2006-10-02 15:11:40 +00:00
'LANGUAGE_DETAILS_UPDATED' => 'Language details successfully updated.' ,
2006-12-22 22:51:33 +00:00
'LANGUAGE_ENTRIES' => 'Language entries' ,
2007-01-21 18:33:45 +00:00
'LANGUAGE_ENTRIES_EXPLAIN' => 'Here you are able to change existing language pack entries or not already translated ones.<br /><strong>Note:</strong> Once you changed a language file, the changes will be stored within a separate folder for you to download. The changes will not be seen by your users until you replace the original language files at your webspace (by uploading them).' ,
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
2006-09-24 00:28:32 +00:00
'LANGUAGE_FILES' => 'Language files' ,
'LANGUAGE_KEY' => 'Language key' ,
2005-11-30 17:48:06 +00:00
'LANGUAGE_PACK_ALREADY_INSTALLED' => 'This language pack is already installed.' ,
2007-01-21 18:33:45 +00:00
'LANGUAGE_PACK_DELETED' => 'The language pack <strong>%s</strong> has been removed successfully. All users using this language have been reset to the boards default language.' ,
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
2006-09-24 00:28:32 +00:00
'LANGUAGE_PACK_DETAILS' => 'Language pack details' ,
'LANGUAGE_PACK_INSTALLED' => 'The language pack <strong>%s</strong> has been successfully installed.' ,
2005-11-30 17:48:06 +00:00
'LANGUAGE_PACK_ISO' => 'ISO' ,
'LANGUAGE_PACK_LOCALNAME' => 'Local name' ,
'LANGUAGE_PACK_NAME' => 'Name' ,
'LANGUAGE_PACK_NOT_EXIST' => 'The selected language pack does not exist.' ,
2006-12-10 17:44:45 +00:00
'LANGUAGE_PACK_USED_BY' => 'Used by (including robots)' ,
2006-12-22 22:51:33 +00:00
'LANGUAGE_VARIABLE' => 'Language variable' ,
'LANG_AUTHOR' => 'Language pack author' ,
2005-11-30 17:48:06 +00:00
'LANG_ENGLISH_NAME' => 'English name' ,
2006-12-22 22:51:33 +00:00
'LANG_ISO_CODE' => 'ISO code' ,
2005-11-30 17:48:06 +00:00
'LANG_LOCAL_NAME' => 'Local name' ,
2006-12-22 22:51:33 +00:00
'MISSING_LANGUAGE_FILE' => 'Missing language file: <strong style="color:red">%s</strong>' ,
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
2006-09-24 00:28:32 +00:00
'MISSING_LANG_VARIABLES' => 'Missing language variables' ,
'MODS_FILES' => 'MODs language files' ,
2005-11-30 17:48:06 +00:00
2006-10-02 15:11:40 +00:00
'NO_FILE_SELECTED' => 'You haven’ t specified a language file.' ,
'NO_LANG_ID' => 'You haven’ t specified a language pack.' ,
2005-11-30 17:48:06 +00:00
'NO_REMOVE_DEFAULT_LANG' => 'You are not able to remove the default language pack.<br />If you want to remove this language pack, change your boards default language first.' ,
'NO_UNINSTALLED_LANGUAGE_PACKS' => 'No uninstalled language packs' ,
'REMOVE_FROM_STORAGE_FOLDER' => 'Remove from storage folder' ,
'SELECT_DOWNLOAD_FORMAT' => 'Select download format' ,
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
2006-09-24 00:28:32 +00:00
'SUBMIT_AND_DOWNLOAD' => 'Submit and download file' ,
2006-10-08 11:25:20 +00:00
'SUBMIT_AND_UPLOAD' => 'Submit and upload file' ,
2005-11-30 17:48:06 +00:00
'THOSE_MISSING_LANG_FILES' => 'The following language files are missing from the %s language folder' ,
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
2006-09-24 00:28:32 +00:00
'THOSE_MISSING_LANG_VARIABLES' => 'The following language variables are missing from the <strong>%s</strong> language pack' ,
2005-11-30 17:48:06 +00:00
'UNINSTALLED_LANGUAGE_PACKS' => 'Uninstalled language packs' ,
2006-10-02 15:11:40 +00:00
'UNABLE_TO_WRITE_FILE' => 'The file could not be written to %s.' ,
'UPLOAD_COMPLETED' => 'The upload was completed successfully.' ,
2007-01-24 12:33:36 +00:00
'UPLOAD_FAILED' => 'The upload failed for unknown reasons. You may need to replace the relevant file manually.' ,
2006-02-19 14:17:12 +00:00
'UPLOAD_METHOD' => 'Upload method' ,
'UPLOAD_SETTINGS' => 'Upload settings' ,
2006-10-02 15:11:40 +00:00
'WRONG_LANGUAGE_FILE' => 'Selected language file is invalid.' ,
2005-12-12 23:17:30 +00:00
));
2005-11-30 17:48:06 +00:00
?>