Introduce custom plural rules

And enable gd locale

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2021-03-02 16:11:00 +01:00
parent 48b3677d1d
commit d61f1f7689
4 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
export default function (choice: number): number {
if (choice === 1 || choice === 11) {
return 0;
}
if (choice === 2 || choice === 12) {
return 1;
}
return choice > 0 && choice < 20 ? 2 : 3;
}

View File

@@ -0,0 +1,5 @@
import gd from "./gd";
export default {
gd,
};