diff options
author | 2023-02-20 08:00:52 +0700 | |
---|---|---|
committer | 2023-02-19 19:53:06 -0800 | |
commit | 1fb0bc29dbb900836b10988ac95fa6ea023306da (patch) | |
tree | f732b982bc53cf7079d14db166495ae04996b9c3 | |
parent | a1593b8942b6fa9b7355c119e104e845ba0a1770 (diff) | |
download | v2-1fb0bc29dbb900836b10988ac95fa6ea023306da.tar.gz v2-1fb0bc29dbb900836b10988ac95fa6ea023306da.tar.zst v2-1fb0bc29dbb900836b10988ac95fa6ea023306da.zip |
Update the plural for Indonesian
Copied from the zh_CN plural
Diffstat (limited to '')
-rw-r--r-- | locale/plural.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/locale/plural.go b/locale/plural.go index f805555a..9fe21af1 100644 --- a/locale/plural.go +++ b/locale/plural.go @@ -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 { |