[PATCH] localedata: Fix number formatting for mn_MN locale

Munkh-Itgel Lkhagvasuren munkh-itgel.lkhagvasuren@erin.systems
Mon Mar 23 07:26:13 GMT 2026


This patch content can be discarded. I've cloned the patch email to libc-locales.


Sincerely,

Munkh-Itgel L



-------------------------------------------------------



Software Architect | ERIN SYSTEMS LLC

 

Khan-Uul District, 18th khoroo

LS Plaza 301

17040 Ulaanbaatar, Mongolia

 

e-mail: mailto:munkh-itgel.lkhagvasuren@erin.systems 

mobile: (+976) 97176616










From: Munkh-Itgel Lkhagvasuren <munkh-itgel.lkhagvasuren@erin.systems>
To: "libc-alpha"<libc-alpha@sourceware.org>
Date: Fri, 20 Mar 2026 11:18:50 +0800
Subject: [PATCH] localedata: Fix number formatting for mn_MN locale



>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/20260323/b19c3abb/attachment-0001.htm>


More information about the Libc-alpha mailing list