mirror of
https://github.com/discourse/discourse.git
synced 2025-06-06 13:06:56 +08:00
DEV: Drop unused pluralization ruleset (#15863)
The Polish locale we're using is `pl_PL` so this file is unused.
This commit is contained in:
@ -1,15 +0,0 @@
|
|||||||
MessageFormat.locale.pl = function (n) {
|
|
||||||
if (n == 1) {
|
|
||||||
return 'one';
|
|
||||||
}
|
|
||||||
if ((n % 10) >= 2 && (n % 10) <= 4 &&
|
|
||||||
((n % 100) < 12 || (n % 100) > 14) && n == Math.floor(n)) {
|
|
||||||
return 'few';
|
|
||||||
}
|
|
||||||
if ((n % 10) === 0 || n != 1 && (n % 10) == 1 ||
|
|
||||||
((n % 10) >= 5 && (n % 10) <= 9 || (n % 100) >= 12 && (n % 100) <= 14) &&
|
|
||||||
n == Math.floor(n)) {
|
|
||||||
return 'many';
|
|
||||||
}
|
|
||||||
return 'other';
|
|
||||||
};
|
|
Reference in New Issue
Block a user