-
Notifications
You must be signed in to change notification settings - Fork 11.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[5.4] Bring the pluralization rules back #17826
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,10 @@ class MessageSelector | |
* | ||
* @param string $line | ||
* @param int $number | ||
* @param string $locale | ||
* @return mixed | ||
*/ | ||
public function choose($line, $number) | ||
public function choose($line, $number, $locale) | ||
{ | ||
$segments = explode('|', $line); | ||
|
||
|
@@ -23,8 +24,13 @@ public function choose($line, $number) | |
|
||
$segments = $this->stripConditions($segments); | ||
|
||
return count($segments) == 1 || $number == 1 | ||
? $segments[0] : $segments[1]; | ||
$pluralIndex = $this->getPluralIndex($locale, $number); | ||
|
||
if (count($segments) == 1 || ! isset($segments[$pluralIndex])) { | ||
return $segments[0]; | ||
} | ||
|
||
return $segments[$pluralIndex]; | ||
} | ||
|
||
/** | ||
|
@@ -89,4 +95,135 @@ private function stripConditions($segments) | |
return preg_replace('/^[\{\[]([^\[\]\{\}]*)[\}\]]/', '', $part); | ||
})->all(); | ||
} | ||
|
||
/** | ||
* Get the index to use for pluralization. | ||
* | ||
* The plural rules are derived from code of the Zend Framework (2010-09-25), which | ||
* is subject to the new BSD license (http://framework.zend.com/license/new-bsd). | ||
* Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) | ||
* | ||
* @param string $locale | ||
* @param int $number | ||
* @return int | ||
*/ | ||
public function getPluralIndex($locale, $number) | ||
{ | ||
switch ($locale) { | ||
case 'az': | ||
case 'bo': | ||
case 'dz': | ||
case 'id': | ||
case 'ja': | ||
case 'jv': | ||
case 'ka': | ||
case 'km': | ||
case 'kn': | ||
case 'ko': | ||
case 'ms': | ||
case 'th': | ||
case 'tr': | ||
case 'vi': | ||
case 'zh': | ||
return 0; | ||
break; | ||
case 'af': | ||
case 'bn': | ||
case 'bg': | ||
case 'ca': | ||
case 'da': | ||
case 'de': | ||
case 'el': | ||
case 'en': | ||
case 'eo': | ||
case 'es': | ||
case 'et': | ||
case 'eu': | ||
case 'fa': | ||
case 'fi': | ||
case 'fo': | ||
case 'fur': | ||
case 'fy': | ||
case 'gl': | ||
case 'gu': | ||
case 'ha': | ||
case 'he': | ||
case 'hu': | ||
case 'is': | ||
case 'it': | ||
case 'ku': | ||
case 'lb': | ||
case 'ml': | ||
case 'mn': | ||
case 'mr': | ||
case 'nah': | ||
case 'nb': | ||
case 'ne': | ||
case 'nl': | ||
case 'nn': | ||
case 'no': | ||
case 'om': | ||
case 'or': | ||
case 'pa': | ||
case 'pap': | ||
case 'ps': | ||
case 'pt': | ||
case 'so': | ||
case 'sq': | ||
case 'sv': | ||
case 'sw': | ||
case 'ta': | ||
case 'te': | ||
case 'tk': | ||
case 'ur': | ||
case 'zu': | ||
return ($number == 1) ? 0 : 1; | ||
case 'am': | ||
case 'bh': | ||
case 'fil': | ||
case 'fr': | ||
case 'gun': | ||
case 'hi': | ||
case 'hy': | ||
case 'ln': | ||
case 'mg': | ||
case 'nso': | ||
case 'xbr': | ||
case 'ti': | ||
case 'wa': | ||
return (($number == 0) || ($number == 1)) ? 0 : 1; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. way too many brackets than needed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code is copied as is from Symfony's Message Selector. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I mean the switch statement. |
||
case 'be': | ||
case 'bs': | ||
case 'hr': | ||
case 'ru': | ||
case 'sr': | ||
case 'uk': | ||
return (($number % 10 == 1) && ($number % 100 != 11)) ? 0 : ((($number % 10 >= 2) && ($number % 10 <= 4) && (($number % 100 < 10) || ($number % 100 >= 20))) ? 1 : 2); | ||
case 'cs': | ||
case 'sk': | ||
return ($number == 1) ? 0 : ((($number >= 2) && ($number <= 4)) ? 1 : 2); | ||
case 'ga': | ||
return ($number == 1) ? 0 : (($number == 2) ? 1 : 2); | ||
case 'lt': | ||
return (($number % 10 == 1) && ($number % 100 != 11)) ? 0 : ((($number % 10 >= 2) && (($number % 100 < 10) || ($number % 100 >= 20))) ? 1 : 2); | ||
case 'sl': | ||
return ($number % 100 == 1) ? 0 : (($number % 100 == 2) ? 1 : ((($number % 100 == 3) || ($number % 100 == 4)) ? 2 : 3)); | ||
case 'mk': | ||
return ($number % 10 == 1) ? 0 : 1; | ||
case 'mt': | ||
return ($number == 1) ? 0 : ((($number == 0) || (($number % 100 > 1) && ($number % 100 < 11))) ? 1 : ((($number % 100 > 10) && ($number % 100 < 20)) ? 2 : 3)); | ||
case 'lv': | ||
return ($number == 0) ? 0 : ((($number % 10 == 1) && ($number % 100 != 11)) ? 1 : 2); | ||
case 'pl': | ||
return ($number == 1) ? 0 : ((($number % 10 >= 2) && ($number % 10 <= 4) && (($number % 100 < 12) || ($number % 100 > 14))) ? 1 : 2); | ||
case 'cy': | ||
return ($number == 1) ? 0 : (($number == 2) ? 1 : ((($number == 8) || ($number == 11)) ? 2 : 3)); | ||
case 'ro': | ||
return ($number == 1) ? 0 : ((($number == 0) || (($number % 100 > 0) && ($number % 100 < 20))) ? 1 : 2); | ||
case 'ar': | ||
return ($number == 0) ? 0 : (($number == 1) ? 1 : (($number == 2) ? 2 : ((($number % 100 >= 3) && ($number % 100 <= 10)) ? 3 : ((($number % 100 >= 11) && ($number % 100 <= 99)) ? 4 : 5)))); | ||
default: | ||
return 0; | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need for brackets