Merge branch 'master' into bin

This commit is contained in:
El RIDO 2022-11-07 07:34:34 +01:00
commit e5487cee48
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
7 changed files with 200 additions and 4 deletions

View file

@ -328,6 +328,7 @@ class I18n
return $n === 1 ? 0 : ($n === 2 ? 1 : (($n < 0 || $n > 10) && ($n % 10 === 0) ? 2 : 3));
case 'id':
case 'jbo':
case 'th':
return 0;
case 'lt':
return $n % 10 === 1 && $n % 100 !== 11 ? 0 : (($n % 10 >= 2 && $n % 100 < 10 || $n % 100 >= 20) ? 1 : 2);