ソースを参照

Update the plural for Indonesian

Copied from the zh_CN plural
the7thNightmare 3 年 前
コミット
1fb0bc29db
1 ファイル変更4 行追加0 行削除
  1. 4 0
      locale/plural.go

+ 4 - 0
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 {