diff options
Diffstat (limited to 'phpBB/language/en/viewtopic.php')
| -rw-r--r-- | phpBB/language/en/viewtopic.php | 23 | 
1 files changed, 13 insertions, 10 deletions
diff --git a/phpBB/language/en/viewtopic.php b/phpBB/language/en/viewtopic.php index 3e1874f1ab..2b20938afe 100644 --- a/phpBB/language/en/viewtopic.php +++ b/phpBB/language/en/viewtopic.php @@ -4,9 +4,8 @@  * viewtopic [English]  *  * @package language -* @version $Id$  * @copyright (c) 2005 phpBB Group -* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2  *  */ @@ -53,8 +52,10 @@ $lang = array_merge($lang, array(  	'DELETE_TOPIC'			=> 'Delete topic',  	'DOWNLOAD_NOTICE'		=> 'You do not have the required permissions to view the files attached to this post.', -	'EDITED_TIMES_TOTAL'	=> 'Last edited by %1$s on %2$s, edited %3$d times in total.', -	'EDITED_TIME_TOTAL'		=> 'Last edited by %1$s on %2$s, edited %3$d time in total.', +	'EDITED_TIMES_TOTAL'	=> array( +		1	=> 'Last edited by %2$s on %3$s, edited %1$d time in total.', +		2	=> 'Last edited by %2$s on %3$s, edited %1$d times in total.', +	),  	'EMAIL_TOPIC'			=> 'E-mail friend',  	'ERROR_NO_ATTACHMENT'	=> 'The selected attachment does not exist anymore.', @@ -70,8 +71,10 @@ $lang = array_merge($lang, array(  	'MAKE_GLOBAL'				=> 'Change to “Global”',  	'MAKE_NORMAL'				=> 'Change to “Standard Topic”',  	'MAKE_STICKY'				=> 'Change to “Sticky”', -	'MAX_OPTIONS_SELECT'		=> 'You may select up to <strong>%d</strong> options', -	'MAX_OPTION_SELECT'			=> 'You may select <strong>1</strong> option', +	'MAX_OPTIONS_SELECT'		=> array( +		1	=> 'You may select <strong>%d</strong> option', +		2	=> 'You may select up to <strong>%d</strong> options', +	),  	'MISSING_INLINE_ATTACHMENT'	=> 'The attachment <strong>%s</strong> is no longer available',  	'MOVE_TOPIC'				=> 'Move topic', @@ -105,13 +108,13 @@ $lang = array_merge($lang, array(  	'VIEW_NEXT_TOPIC'		=> 'Next topic',  	'VIEW_PREVIOUS_TOPIC'	=> 'Previous topic',  	'VIEW_RESULTS'			=> 'View results', -	'VIEW_TOPIC_POST'		=> '1 post', -	'VIEW_TOPIC_POSTS'		=> '%d posts', +	'VIEW_TOPIC_POSTS'		=> array( +		1	=> '%d post', +		2	=> '%d posts', +	),  	'VIEW_UNREAD_POST'		=> 'First unread post',  	'VISIT_WEBSITE'			=> 'WWW',  	'VOTE_SUBMITTED'		=> 'Your vote has been cast.',  	'VOTE_CONVERTED'		=> 'Changing votes is not supported for converted polls.',  )); - -?>
\ No newline at end of file  | 
