Merge tag '1.11.1' into 1.11
This commit is contained in:
@@ -620,6 +620,12 @@ static int DeterminePluralForm(int64 count, int plural_form)
|
||||
* Scottish Gaelic */
|
||||
case 13:
|
||||
return ((n == 1 || n == 11) ? 0 : (n == 2 || n == 12) ? 1 : ((n > 2 && n < 11) || (n > 12 && n < 20)) ? 2 : 3);
|
||||
|
||||
/* Three forms: special cases for 1, 0 and numbers ending in 01 to 19.
|
||||
* Used in:
|
||||
* Romanian */
|
||||
case 14:
|
||||
return n == 1 ? 0 : (n == 0 || (n % 100 > 0 && n % 100 < 20)) ? 1 : 2;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user