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

@@ -3,7 +3,6 @@
"be": "Беларуская мова",
"bn": "বাংলা",
"ca": "Català",
"cs": "čeština",
"de": "Deutsch",
"en": "English",
"eo": "Esperanto",
@@ -11,6 +10,7 @@
"eu": "Euskara",
"fi": "suomi",
"fr": "Français",
"gd": "Gàidhlig",
"gl": "Galego",
"hu": "Magyar",
"it": "Italiano",
@@ -22,7 +22,7 @@
"pl": "Polski",
"pt": "Português",
"pt_BR": "Português brasileiro",
"ru": "Русский",
"sl": "Slovenščina",
"sv": "Svenska"
"sv": "Svenska",
"zh_Hant": "繁體字"
}

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,
};