Update the plural for Indonesian
Copied from the zh_CN plural
This commit is contained in:
parent
a1593b8942
commit
1fb0bc29db
1 changed files with 4 additions and 0 deletions
|
@ -53,6 +53,10 @@ var pluralForms = map[string]pluralFormFunc{
|
||||||
|
|
||||||
return 2
|
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);
|
// 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 {
|
"pl_PL": func(n int) int {
|
||||||
if n == 1 {
|
if n == 1 {
|
||||||
|
|
Loading…
Reference in a new issue