Skip to content

Commit 80eb8b7

Browse files
committed
feat: add Mongolian variants
1 parent 26cdb6e commit 80eb8b7

File tree

123 files changed

+2050
-245
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+2050
-245
lines changed

PLURALS_DIFF.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ The Plurals column lists data in languages.csv which is used in Weblate
339339
| it@informal | Italian (informal) | nplurals=2; plural=n != 1; | | | | |
340340
| it_CH | Italian (Switzerland) | nplurals=2; plural=n != 1; | | | | |
341341
| iu | Inuktitut | nplurals=3; plural=(n == 1) ? 0 : ((n == 2) ? 1 : 2); | ✔ | | | |
342-
| iu_Latn | Inuktitut (Latin) | nplurals=3; plural=(n == 1) ? 0 : ((n == 2) ? 1 : 2); | | | | |
342+
| iu_Latn | Inuktitut (Latin script) | nplurals=3; plural=(n == 1) ? 0 : ((n == 2) ? 1 : 2); | | | | |
343343
| ja | Japanese | nplurals=1; plural=0; | ✔ | ✔ | ✔ | ✔ |
344344
| ja_KS | Japanese (Kansai) | nplurals=1; plural=0; | | | | |
345345
| jam | Jamaican Patois | nplurals=2; plural=n != 1; | | | | |
@@ -460,6 +460,8 @@ The Plurals column lists data in languages.csv which is used in Weblate
460460
| mk | Macedonian | nplurals=2; plural=n==1 \|\| n%10==1 ? 0 : 1; | nplurals=2; plural=n % 10 != 1 \|\| n % 100 == 11; | | ✔ | ✔ |
461461
| ml | Malayalam | nplurals=2; plural=n != 1; | ✔ | | ✔ | ✔ |
462462
| mn | Mongolian | nplurals=2; plural=n != 1; | ✔ | | ✔ | ✔ |
463+
| mn_Cyrl | Mongolian (Cyrillic script) | nplurals=2; plural=n != 1; | | | | |
464+
| mn_Mong | Mongolian (Traditional script) | nplurals=2; plural=n != 1; | | | | |
463465
| mnc | Manchu | nplurals=2; plural=n != 1; | | | | |
464466
| mni | Manipuri | nplurals=2; plural=n != 1; | | | ✔ | ✔ |
465467
| mnk | Mandinka | nplurals=3; plural=n==0 ? 0 : n==1 ? 1 : 2; | | | ✔ | ✔ |

languages.csv

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ it@formal,Italian (formal),2,n != 1
333333
it@informal,Italian (informal),2,n != 1
334334
it_CH,Italian (Switzerland),2,n != 1
335335
iu,Inuktitut,3,(n == 1) ? 0 : ((n == 2) ? 1 : 2)
336-
iu_Latn,Inuktitut (Latin),3,(n == 1) ? 0 : ((n == 2) ? 1 : 2)
336+
iu_Latn,Inuktitut (Latin script),3,(n == 1) ? 0 : ((n == 2) ? 1 : 2)
337337
ja,Japanese,1,0
338338
ja_KS,Japanese (Kansai),1,0
339339
jam,Jamaican Patois,2,n != 1
@@ -454,6 +454,8 @@ mjw,Karbi,2,n != 1
454454
mk,Macedonian,2,n==1 || n%10==1 ? 0 : 1
455455
ml,Malayalam,2,n != 1
456456
mn,Mongolian,2,n != 1
457+
mn_Cyrl,Mongolian (Cyrillic script),2,n != 1
458+
mn_Mong,Mongolian (Traditional script),2,n != 1
457459
mnc,Manchu,2,n != 1
458460
mni,Manipuri,2,n != 1
459461
mnk,Mandinka,3,n==0 ? 0 : n==1 ? 1 : 2

weblate_language_data/language_codes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,8 @@
730730
"mlg",
731731
"mlt",
732732
"mn",
733+
"mn_cyrl",
734+
"mn_mong",
733735
"mnc",
734736
"mni",
735737
"mnk",

weblate_language_data/languages.py

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3027,7 +3027,7 @@
30273027
# Translators: Language name for ISO code "iu_Latn". The parenthesis clarifies
30283028
# variant of the language. It could contain a region, age (Old, Middle, ...)
30293029
# or other variant.
3030-
_("Inuktitut (Latin)"),
3030+
_("Inuktitut (Latin script)"),
30313031
3,
30323032
"(n == 1) ? 0 : ((n == 2) ? 1 : 2)",
30333033
),
@@ -4111,6 +4111,24 @@
41114111
2,
41124112
"n != 1",
41134113
),
4114+
(
4115+
"mn_Cyrl",
4116+
# Translators: Language name for ISO code "mn_Cyrl". The parenthesis clarifies
4117+
# variant of the language. It could contain a region, age (Old, Middle, ...)
4118+
# or other variant.
4119+
_("Mongolian (Cyrillic script)"),
4120+
2,
4121+
"n != 1",
4122+
),
4123+
(
4124+
"mn_Mong",
4125+
# Translators: Language name for ISO code "mn_Mong". The parenthesis clarifies
4126+
# variant of the language. It could contain a region, age (Old, Middle, ...)
4127+
# or other variant.
4128+
_("Mongolian (Traditional script)"),
4129+
2,
4130+
"n != 1",
4131+
),
41144132
(
41154133
"mnc",
41164134
# Translators: Language name for ISO code "mnc". The parenthesis clarifies

weblate_language_data/locale/ab/LC_MESSAGES/django.po

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Weblate Language Data\n"
99
"Report-Msgid-Bugs-To: https://github.com/WeblateOrg/language-data/issues/\n"
10-
"POT-Creation-Date: 2025-01-23 16:06+0100\n"
10+
"POT-Creation-Date: 2025-01-23 16:09+0100\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: Automatically generated\n"
1313
"Language-Team: none\n"
@@ -2023,7 +2023,7 @@ msgstr ""
20232023
#. Translators: Language name for ISO code "iu_Latn". The parenthesis clarifies
20242024
#. variant of the language. It could contain a region, age (Old, Middle, ...)
20252025
#. or other variant.
2026-
msgid "Inuktitut (Latin)"
2026+
msgid "Inuktitut (Latin script)"
20272027
msgstr ""
20282028

20292029
#. Translators: Language name for ISO code "ja". The parenthesis clarifies
@@ -2746,6 +2746,18 @@ msgstr ""
27462746
msgid "Mongolian"
27472747
msgstr ""
27482748

2749+
#. Translators: Language name for ISO code "mn_Cyrl". The parenthesis clarifies
2750+
#. variant of the language. It could contain a region, age (Old, Middle, ...)
2751+
#. or other variant.
2752+
msgid "Mongolian (Cyrillic script)"
2753+
msgstr ""
2754+
2755+
#. Translators: Language name for ISO code "mn_Mong". The parenthesis clarifies
2756+
#. variant of the language. It could contain a region, age (Old, Middle, ...)
2757+
#. or other variant.
2758+
msgid "Mongolian (Traditional script)"
2759+
msgstr ""
2760+
27492761
#. Translators: Language name for ISO code "mnc". The parenthesis clarifies
27502762
#. variant of the language. It could contain a region, age (Old, Middle, ...)
27512763
#. or other variant.

0 commit comments

Comments
 (0)