Update the plural for Indonesian

Copied from the zh_CN plural
This commit is contained in:
the7thNightmare 2023-02-20 08:00:52 +07:00 committed by Frédéric Guillot
parent a1593b8942
commit 1fb0bc29db
1 changed files with 4 additions and 0 deletions

View File

@ -53,6 +53,10 @@ var pluralForms = map[string]pluralFormFunc{
return 2
},
// nplurals=1; plural=0;
"id_ID": func(n int) int {
return 0
},
// nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);
"pl_PL": func(n int) int {
if n == 1 {