Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PLURALS_DIFF.md
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ Code | Name | Plurals | CLDR plurals | Gettext plurals | Translate toolkit |
`mgo` | Metaʼ | nplurals=2; plural=n != 1; | ✔ | | |
`mh` | Marshallese | nplurals=2; plural=n != 1; | | | |
`mhr` | Meadow Mari | nplurals=2; plural=n != 1; | | | |
`mi` | Maori | nplurals=2; plural=n > 1; | | | |
`mi` | Maori | nplurals=3; plural=n == 1 ? 0 : n < 10 ? 1 : 2; | | | nplurals=2; plural=(n > 1); |

@svenddpc svenddpc Jun 4, 2026

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit by the CI bot seems to be broken? Is that because I made my changes wrong?

`mia` | Miami | nplurals=2; plural=n > 1; | | | |
`mic` | Mi'kmaq | nplurals=2; plural=n != 1; | | | |
`min` | Minangkabau | nplurals=2; plural=n != 1; | | | |
Expand Down
2 changes: 1 addition & 1 deletion l10n-guide.csv
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ mai,Maithili,2,(n != 1)
me,Montenegro,3,n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2
mfe,Mauritian Creole,2,(n > 1)
mg,Malagasy,2,(n > 1)
mi,Maori,2,(n > 1)
mi,Maori,2,(n == 1 ? 0 : n < 10 ? 1 : 2)
mk,Macedonian,2, n==1 || n%10==1 ? 0 : 1
ml,Malayalam,2,(n != 1)
mn,Mongolian,2,(n != 1)
Expand Down
2 changes: 1 addition & 1 deletion languages.csv
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ mgh,Makhuwa-Meetto,2,n != 1
mgo,Metaʼ,2,n != 1
mh,Marshallese,2,n != 1
mhr,Meadow Mari,2,n != 1
mi,Maori,2,n > 1
mi,Maori,3,n == 1 ? 0 : n < 10 ? 1 : 2
mia,Miami,2,n > 1
mic,Mi'kmaq,2,n != 1
min,Minangkabau,2,n != 1
Expand Down
4 changes: 2 additions & 2 deletions weblate_language_data/languages.py
Original file line number Diff line number Diff line change
Expand Up @@ -4153,8 +4153,8 @@
# variant of the language. It could contain a region, age (Old, Middle, ...)
# or other variant.
_("Maori"),
2,
"n > 1",
3,
"n == 1 ? 0 : n < 10 ? 1 : 2",
),
(
"mia",
Expand Down