mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge pull request #2454 from nickvergessen/ticket/12540
[ticket/12540] Fix broken placeholders in language files * nickvergessen/ticket/12540: [ticket/12540] Fix broken placeholders in language files
This commit is contained in:
commit
f2500da8ec
3 changed files with 3 additions and 3 deletions
|
@ -90,7 +90,7 @@ $lang = array_merge($lang, array(
|
||||||
'AVATAR_PHP_SIZE_OVERRUN' => 'The avatar’s filesize is too large. The maximum allowed upload size is %1$d %2$s.<br />Please note this is set in php.ini and cannot be overridden.',
|
'AVATAR_PHP_SIZE_OVERRUN' => 'The avatar’s filesize is too large. The maximum allowed upload size is %1$d %2$s.<br />Please note this is set in php.ini and cannot be overridden.',
|
||||||
'AVATAR_URL_INVALID' => 'The URL you specified is invalid.',
|
'AVATAR_URL_INVALID' => 'The URL you specified is invalid.',
|
||||||
'AVATAR_URL_NOT_FOUND' => 'The file specified could not be found.',
|
'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_FILESIZE' => 'The avatar’s filesize must be between 0 and %1$d %2$s.',
|
||||||
'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$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.',
|
||||||
|
|
||||||
'BACK_TO_TOP' => 'Top',
|
'BACK_TO_TOP' => 'Top',
|
||||||
|
|
|
@ -219,7 +219,7 @@ $lang = array_merge($lang, array(
|
||||||
'VIEW_MESSAGE' => '%sView your submitted message%s',
|
'VIEW_MESSAGE' => '%sView your submitted message%s',
|
||||||
'VIEW_PRIVATE_MESSAGE' => '%sView your submitted private message%s',
|
'VIEW_PRIVATE_MESSAGE' => '%sView your submitted private message%s',
|
||||||
|
|
||||||
'WRONG_FILESIZE' => 'The file is too big, maximum allowed size is %1d %2s.',
|
'WRONG_FILESIZE' => 'The file is too big, maximum allowed size is %1$d %2$s.',
|
||||||
'WRONG_SIZE' => 'The image must be at least %1$d pixels wide, %2$d pixels high and at most %3$d pixels wide and %4$d pixels high. The submitted image is %5$d pixels wide and %6$d pixels high.',
|
'WRONG_SIZE' => 'The image must be at least %1$d pixels wide, %2$d pixels high and at most %3$d pixels wide and %4$d pixels high. The submitted image is %5$d pixels wide and %6$d pixels high.',
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
|
@ -266,7 +266,7 @@ $lang = array_merge($lang, array(
|
||||||
'MOVE_DELETED_MESSAGES_TO' => 'Move messages from removed folder to',
|
'MOVE_DELETED_MESSAGES_TO' => 'Move messages from removed folder to',
|
||||||
'MOVE_DOWN' => 'Move down',
|
'MOVE_DOWN' => 'Move down',
|
||||||
'MOVE_MARKED_TO_FOLDER' => 'Move marked to %s',
|
'MOVE_MARKED_TO_FOLDER' => 'Move marked to %s',
|
||||||
'MOVE_PM_ERROR' => 'An error occurred while moving the messages to the new folder, only %1d from %2d messages were moved.',
|
'MOVE_PM_ERROR' => 'An error occurred while moving the messages to the new folder, only %1$d from %2$d messages were moved.',
|
||||||
'MOVE_TO_FOLDER' => 'Move to folder',
|
'MOVE_TO_FOLDER' => 'Move to folder',
|
||||||
'MOVE_UP' => 'Move up',
|
'MOVE_UP' => 'Move up',
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue