1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10345] Add a system to allow multiple plural forms

See http://wiki.phpbb.com/Plural_Rules for explanation and examples.

PHPBB3-10345
This commit is contained in:
Joas Schilling
2011-09-10 03:38:01 +02:00
committed by Oleg Pudeyev
parent c4e29bde23
commit 757fcd3e63
3 changed files with 192 additions and 1 deletions

View File

@@ -45,6 +45,11 @@ $lang = array_merge($lang, array(
'DATE_FORMAT' => '|d M Y|', // 01 Jan 2007 (with Relative days enabled)
'USER_LANG' => 'en-gb',
// You can define different rules for the determination of plural forms here.
// See http://wiki.phpbb.com/Plural_Rules for more information
// or ask the translation manager for help.
'PLURAL_RULE' => 1,
'1_DAY' => '1 day',
'1_MONTH' => '1 month',
'1_YEAR' => '1 year',