mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/10345] Add cases for 1 pixel height on MAX_FLASH and MAX_IMG sizes
PHPBB3-10345
This commit is contained in:
parent
2fac1d4c23
commit
6472a270e0
1 changed files with 4 additions and 0 deletions
|
@ -123,15 +123,19 @@ $lang = array_merge($lang, array(
|
|||
|
||||
'MAX_FONT_SIZE_EXCEEDED' => 'You may only use fonts up to size %d.',
|
||||
'MAX_FLASH_HEIGHT_EXCEEDED' => array(
|
||||
1 => 'Your flash files may only be up to %d pixel high.',
|
||||
2 => 'Your flash files may only be up to %d pixels high.',
|
||||
),
|
||||
'MAX_FLASH_WIDTH_EXCEEDED' => array(
|
||||
1 => 'Your flash files may only be up to %d pixel wide.',
|
||||
2 => 'Your flash files may only be up to %d pixels wide.',
|
||||
),
|
||||
'MAX_IMG_HEIGHT_EXCEEDED' => array(
|
||||
1 => 'Your images may only be up to %1$d pixel high.',
|
||||
2 => 'Your images may only be up to %1$d pixels high.',
|
||||
),
|
||||
'MAX_IMG_WIDTH_EXCEEDED' => array(
|
||||
1 => 'Your images may only be up to %d pixel wide.',
|
||||
2 => 'Your images may only be up to %d pixels wide.',
|
||||
),
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue