The following change adds support for Armenian pluralization.

According to http://www.unicode.org/cldr/charts/27/supplemental/language_plural_rules.html#hy
Armenian has 2 forms of pluralization.
This commit is contained in:
Marcos Sánchez 2015-11-11 16:25:04 -03:00 committed by Fabien Potencier
parent ab3c8f891a
commit 5f1980ba5c
2 changed files with 2 additions and 1 deletions

View File

@ -132,6 +132,7 @@ class PluralizationRules
case 'fr': case 'fr':
case 'gun': case 'gun':
case 'hi': case 'hi':
case 'hy':
case 'ln': case 'ln':
case 'mg': case 'mg':
case 'nso': case 'nso':

View File

@ -61,7 +61,7 @@ class PluralizationRulesTest extends \PHPUnit_Framework_TestCase
{ {
return array( return array(
array('1', array('ay','bo', 'cgg','dz','id', 'ja', 'jbo', 'ka','kk','km','ko','ky')), array('1', array('ay','bo', 'cgg','dz','id', 'ja', 'jbo', 'ka','kk','km','ko','ky')),
array('2', array('nl', 'fr', 'en', 'de', 'de_GE')), array('2', array('nl', 'fr', 'en', 'de', 'de_GE', 'hy', 'hy_AM')),
array('3', array('be','bs','cs','hr')), array('3', array('be','bs','cs','hr')),
array('4', array('cy','mt', 'sl')), array('4', array('cy','mt', 'sl')),
array('5', array()), array('5', array()),