[PATCH] localedata: Fix number formatting for mn_MN locale

Munkh-Itgel Lkhagvasuren munkh-itgel.lkhagvasuren@erin.systems
Fri Mar 20 03:18:50 GMT 2026


>From 9105462d91b156a83529a2d9e77fdeb20619c52e Mon Sep 17 00:00:00 2001

From: Munkh-Itgel Lkhagvasuren < mailto:munkh-itgel.lkhagvasuren@erin.systems >

Date: Sat, 28 Feb 2026 18:00:17 +0800

Subject: [PATCH] localedata: Fix number formatting for mn_MN locale



The decimal_point and thousands_sep values for Mongolia (mn_MN) were

inverted. According to common usage in Mongolia and CLDR data, numbers

should use '.' as the decimal separator and ',' as the thousands separator.



Current (incorrect): 123.456.789,00

Correct: 123,456,789.00



This patch swaps the decimal_point and thousands_sep values to match

the correct Mongolian number formatting conventions.

---

localedata/locales/mn_MN | 4 ++--

1 file changed, 2 insertions(+), 2 deletions(-)



diff --git a/localedata/locales/mn_MN b/localedata/locales/mn_MN

index 0e930217..81088298 100644

--- a/localedata/locales/mn_MN

+++ b/localedata/locales/mn_MN

@@ -153,8 +153,8 @@ n_sign_posn         1

END LC_MONETARY



LC_NUMERIC

-decimal_point   ","

-thousands_sep   "."

+decimal_point   "."

+thousands_sep   ","

grouping        3

END LC_NUMERIC



--

2.53.0
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://sourceware.org/pipermail/libc-alpha/attachments/20260320/9f61b6c9/attachment-0001.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-localedata-Fix-number-formatting-for-mn_MN-locale.patch
Type: application/octet-stream
Size: 1104 bytes
Desc: not available
URL: <https://sourceware.org/pipermail/libc-alpha/attachments/20260320/9f61b6c9/attachment-0001.obj>


More information about the Libc-alpha mailing list