diff options
Diffstat (limited to 'phpBB/language')
| -rw-r--r-- | phpBB/language/en/common.php | 12 | ||||
| -rw-r--r-- | phpBB/language/en/install.php | 3 | ||||
| -rw-r--r-- | phpBB/language/en/migrator.php | 56 | ||||
| -rw-r--r-- | phpBB/language/en/posting.php | 6 | ||||
| -rw-r--r-- | phpBB/language/en/ucp.php | 1 | 
5 files changed, 74 insertions, 4 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index 6277457af7..ad29965434 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -119,6 +119,17 @@ $lang = array_merge($lang, array(  		1	=> 'Users browsing this forum: %2$s and %1$d guest',  		2	=> 'Users browsing this forum: %2$s and %1$d guests',  	), +	'BUTTON_EDIT'			=> 'Edit', +	'BUTTON_FORUM_LOCKED'	=> 'Locked', +	'BUTTON_NEW_TOPIC'		=> 'New Topic', +	'BUTTON_PM'				=> 'PM', +	'BUTTON_PM_FORWARD'		=> 'Forward', +	'BUTTON_PM_NEW'			=> 'New PM', +	'BUTTON_PM_REPLY'		=> 'Send Reply', +	'BUTTON_PM_REPLY_ALL'	=> 'Reply All', +	'BUTTON_POST_REPLY'		=> 'Post Reply', +	'BUTTON_QUOTE'			=> 'Quote', +	'BUTTON_TOPIC_LOCKED'	=> 'Locked',  	'BYTES'					=> 'Bytes',  	'CANCEL'				=> 'Cancel', @@ -176,6 +187,7 @@ $lang = array_merge($lang, array(  	'ELLIPSIS'							=>	'…',  	'EMAIL'								=> 'Email', // Short form for EMAIL_ADDRESS  	'EMAIL_ADDRESS'						=> 'Email address', +	'EMAIL_INVALID_EMAIL'				=> 'The email address you entered is invalid.',  	'EMAIL_SMTP_ERROR_RESPONSE'			=> 'Ran into problems sending email at <strong>Line %1$s</strong>. Response: %2$s.',  	'EMPTY_SUBJECT'						=> 'You must specify a subject when posting a new topic.',  	'EMPTY_MESSAGE_SUBJECT'				=> 'You must specify a subject when composing a new message.', diff --git a/phpBB/language/en/install.php b/phpBB/language/en/install.php index f7820714e1..7607512eab 100644 --- a/phpBB/language/en/install.php +++ b/phpBB/language/en/install.php @@ -397,7 +397,10 @@ $lang = array_merge($lang, array(  	'CURRENT_VERSION'				=> 'Current version',  	'DATABASE_TYPE'						=> 'Database type', +	'DATABASE_UPDATE_COMPLETE'			=> 'Database updater has completed!', +	'DATABASE_UPDATE_CONTINUE'			=> 'Continue database update.',  	'DATABASE_UPDATE_INFO_OLD'			=> 'The database update file within the install directory is outdated. Please make sure you uploaded the correct version of the file.', +	'DATABASE_UPDATE_NOT_COMPLETED'		=> 'The database update has not yet completed.',  	'DELETE_USER_REMOVE'				=> 'Delete user and remove posts',  	'DELETE_USER_RETAIN'				=> 'Delete user but keep posts',  	'DESTINATION'						=> 'Destination file', diff --git a/phpBB/language/en/migrator.php b/phpBB/language/en/migrator.php new file mode 100644 index 0000000000..84074c391c --- /dev/null +++ b/phpBB/language/en/migrator.php @@ -0,0 +1,56 @@ +<?php +/** +* +* migrator [English] +* +* @package language +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* DO NOT CHANGE +*/ +if (!defined('IN_PHPBB')) +{ +	exit; +} + +if (empty($lang) || !is_array($lang)) +{ +	$lang = array(); +} + +// DEVELOPERS PLEASE NOTE +// +// All language files should use UTF-8 as their encoding and the files must not contain a BOM. +// +// 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 + +$lang = array_merge($lang, array( +	'CONFIG_ALREADY_EXIST'				=> 'The config setting "%s" unexpectedly already exists.', +	'CONFIG_NOT_EXIST'					=> 'The config setting "%s" unexpectedly does not exist.', + +	'GROUP_NOT_EXIST'					=> 'The group "%s" unexpectedly does not exist.', + +	'MIGRATION_EXCEPTION_ERROR'			=> 'Something went wrong during the request and an exception was thrown. The changes made before the error occurred were reversed to the best of our abilities, but you should check the board for errors.', +	'MIGRATION_NOT_FULFILLABLE'			=> 'The migration "%1$s" is not fulfillable, missing migration "%2$s".', + +	'MODULE_ALREADY_EXIST'				=> 'The module "%s" unexpectedly already exists.', +	'MODULE_ERROR'						=> 'An error occured while creating a module: %s', +	'MODULE_INFO_FILE_NOT_EXIST'		=> 'A required module info file is missing: %2$s', +	'MODULE_NOT_EXIST'					=> 'A required module does not exist: %s', +	'MODULE_NOT_REMOVABLE'				=> 'Module %1$s was unable to be removed: %2$s', + +	'PERMISSION_ALREADY_EXIST'			=> 'The permission setting "%s" unexpectedly already exists.', +	'PERMISSION_NOT_EXIST'				=> 'The permission setting "%s" unexpectedly does not exist.', + +	'ROLE_NOT_EXIST'					=> 'The permission role "%s" unexpectedly does not exist.', +)); diff --git a/phpBB/language/en/posting.php b/phpBB/language/en/posting.php index 086bd6ffb0..f5478dded5 100644 --- a/phpBB/language/en/posting.php +++ b/phpBB/language/en/posting.php @@ -53,9 +53,9 @@ $lang = array_merge($lang, array(  	'BBCODE_IS_OFF'				=> '%sBBCode%s is <em>OFF</em>',  	'BBCODE_IS_ON'				=> '%sBBCode%s is <em>ON</em>',  	'BBCODE_I_HELP'				=> 'Italic text: [i]text[/i]', -	'BBCODE_L_HELP'				=> 'List: [list]text[/list]', -	'BBCODE_LISTITEM_HELP'		=> 'List item: [*]text[/*]', -	'BBCODE_O_HELP'				=> 'Ordered list: [list=]text[/list]', +	'BBCODE_L_HELP'				=> 'List: [list][*]text[/list]',  +	'BBCODE_LISTITEM_HELP'		=> 'List item: [*]text', +	'BBCODE_O_HELP'				=> 'Ordered list: e.g. [list=1][*]First point[/list] or [list=a][*]Point a[/list]',  	'BBCODE_P_HELP'				=> 'Insert image: [img]http://image_url[/img]',  	'BBCODE_Q_HELP'				=> 'Quote text: [quote]text[/quote]',  	'BBCODE_S_HELP'				=> 'Font colour: [color=red]text[/color]  Tip: you can also use color=#FF0000', diff --git a/phpBB/language/en/ucp.php b/phpBB/language/en/ucp.php index 267ae00710..0609c1d5fe 100644 --- a/phpBB/language/en/ucp.php +++ b/phpBB/language/en/ucp.php @@ -173,7 +173,6 @@ $lang = array_merge($lang, array(  	'EDIT_DRAFT_EXPLAIN'		=> 'Here you are able to edit your draft. Drafts do not contain attachment and poll information.',  	'EMAIL_BANNED_EMAIL'		=> 'The email address you entered is not allowed to be used.', -	'EMAIL_INVALID_EMAIL'		=> 'The email address you entered is invalid.',  	'EMAIL_REMIND'				=> 'This must be the email address associated with your account. If you have not changed this via your user control panel then it is the email address you registered your account with.',  	'EMAIL_TAKEN_EMAIL'			=> 'The entered email address is already in use.',  	'EMPTY_DRAFT'				=> 'You must enter a message to submit your changes.',  | 
