[ticket/10345] Add cases for 1 pixel height on MAX_FLASH and MAX_IMG sizes

PHPBB3-10345
This commit is contained in:
Joas Schilling 2011-11-27 21:43:07 +01:00
parent 2fac1d4c23
commit 6472a270e0

View file

@ -123,15 +123,19 @@ $lang = array_merge($lang, array(
'MAX_FONT_SIZE_EXCEEDED' => 'You may only use fonts up to size %d.', 'MAX_FONT_SIZE_EXCEEDED' => 'You may only use fonts up to size %d.',
'MAX_FLASH_HEIGHT_EXCEEDED' => array( '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.', 2 => 'Your flash files may only be up to %d pixels high.',
), ),
'MAX_FLASH_WIDTH_EXCEEDED' => array( '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.', 2 => 'Your flash files may only be up to %d pixels wide.',
), ),
'MAX_IMG_HEIGHT_EXCEEDED' => array( '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.', 2 => 'Your images may only be up to %1$d pixels high.',
), ),
'MAX_IMG_WIDTH_EXCEEDED' => array( '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.', 2 => 'Your images may only be up to %d pixels wide.',
), ),