mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
[ticket/10345] Use the plural function in some more places.
I added two function avatar_explanation_string() and avatar_error_wrong_size() for easier handling of the "pixels"-languages, as they are used quite often. PHPBB3-10345
This commit is contained in:
committed by
Oleg Pudeyev
parent
88ae40a4b1
commit
179662e949
@@ -96,7 +96,7 @@ $lang = array_merge($lang, array(
|
||||
'AVATAR_URL_INVALID' => 'The URL you specified is invalid.',
|
||||
'AVATAR_URL_NOT_FOUND' => 'The file specified could not be found.',
|
||||
'AVATAR_WRONG_FILESIZE' => 'The avatar’s filesize must be between 0 and %1d %2s.',
|
||||
'AVATAR_WRONG_SIZE' => 'The submitted avatar is %5$d pixels wide and %6$d pixels high. Avatars must be at least %1$d pixels wide and %2$d pixels high, but no larger than %3$d pixels wide and %4$d pixels high.',
|
||||
'AVATAR_WRONG_SIZE' => 'The submitted avatar is %5$s wide and %6$s high. Avatars must be at least %1$s wide and %2$s high, but no larger than %3$s wide and %4$s high.',
|
||||
|
||||
'BACK_TO_TOP' => 'Top',
|
||||
'BACK_TO_PREV' => 'Back to previous page',
|
||||
@@ -125,6 +125,11 @@ $lang = array_merge($lang, array(
|
||||
'CHANGE_FONT_SIZE' => 'Change font size',
|
||||
'CHANGING_PREFERENCES' => 'Changing board preferences',
|
||||
'CHANGING_PROFILE' => 'Changing profile settings',
|
||||
'CHARACTERS' => array(
|
||||
0 => '%d characters',
|
||||
1 => '%d character',
|
||||
2 => '%d characters',
|
||||
),
|
||||
'CLICK_VIEW_PRIVMSG' => '%sGo to your inbox%s',
|
||||
'COLLAPSE_VIEW' => 'Collapse view',
|
||||
'CLOSE_WINDOW' => 'Close window',
|
||||
@@ -447,6 +452,11 @@ $lang = array_merge($lang, array(
|
||||
'PAGE_TITLE_NUMBER' => 'Page %s',
|
||||
'PASSWORD' => 'Password',
|
||||
'PIXEL' => 'px',
|
||||
'PIXELS' => array(
|
||||
0 => '%d pixels',
|
||||
1 => '%d pixel',
|
||||
2 => '%d pixels',
|
||||
),
|
||||
'PLAY_QUICKTIME_FILE' => 'Play Quicktime file',
|
||||
'PM' => 'PM',
|
||||
'PM_REPORTED' => 'Click to view report',
|
||||
|
Reference in New Issue
Block a user