aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2011-11-27 21:43:07 +0100
committerJoas Schilling <nickvergessen@gmx.de>2011-11-27 21:43:07 +0100
commit6472a270e0faf39c7dd9b73a8948f19254e0a17e (patch)
treeefce36e93df890887f05dfa03f60394246a72f23 /phpBB/language
parent2fac1d4c2323797dc4ef977cea4dc3fb894f895a (diff)
downloadforums-6472a270e0faf39c7dd9b73a8948f19254e0a17e.tar
forums-6472a270e0faf39c7dd9b73a8948f19254e0a17e.tar.gz
forums-6472a270e0faf39c7dd9b73a8948f19254e0a17e.tar.bz2
forums-6472a270e0faf39c7dd9b73a8948f19254e0a17e.tar.xz
forums-6472a270e0faf39c7dd9b73a8948f19254e0a17e.zip
[ticket/10345] Add cases for 1 pixel height on MAX_FLASH and MAX_IMG sizes
PHPBB3-10345
Diffstat (limited to 'phpBB/language')
-rw-r--r--phpBB/language/en/posting.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/language/en/posting.php b/phpBB/language/en/posting.php
index 0c8824aabf..9119b97ebe 100644
--- a/phpBB/language/en/posting.php
+++ b/phpBB/language/en/posting.php
@@ -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.',
),