1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 14:30:32 +02:00

[ticket/12451] Split TOO_FEW_CHARS_LIMIT for plurals

PHPBB3-12451
This commit is contained in:
Oliver Schramm
2014-04-29 00:44:32 +02:00
parent 4e529fda03
commit daa69ecfa9
2 changed files with 7 additions and 3 deletions

View File

@@ -227,9 +227,13 @@ $lang = array_merge($lang, array(
'STYLES_TIP' => 'Tip: Styles can be applied quickly to selected text.',
'TOO_FEW_CHARS' => 'Your message contains too few characters.',
'TOO_FEW_CHARS_CONTAINS' => array(
1 => 'Your message contains %1$d character.',
2 => 'Your message contains %1$d characters.',
),
'TOO_FEW_CHARS_LIMIT' => array(
1 => 'Your message contains %1$d character. The minimum number of characters you need to enter is %2$d.',
2 => 'Your message contains %1$d characters. The minimum number of characters you need to enter is %2$d.',
1 => 'You need to enter at least %1$d character.',
2 => 'You need to enter at least %1$d characters.',
),
'TOO_FEW_POLL_OPTIONS' => 'You must enter at least two poll options.',
'TOO_MANY_ATTACHMENTS' => 'Cannot add another attachment, %d is the maximum.',