1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-09-15 18:57:04 +00:00

feat(locale): add Taiwanese POJ (nan-Latn-pehoeji) support

This commit is contained in:
krvpb024 2025-02-13 23:31:58 +08:00 committed by Frédéric Guillot
parent 9398f7abd7
commit 28b235595e
5 changed files with 620 additions and 36 deletions

View file

@ -88,6 +88,9 @@ var pluralForms = map[string]func(n int) int{
"zh_TW": func(n int) int {
return 0
},
"nan_Latn_pehoeji": func(n int) int {
return 0
},
}
// nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);