This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] sl_SI locale: Use "." as the thousands separator (bug 25233)


The patch is trivial but as we are in the (slushy) freeze period
the question is: Is it OK to commit today/tonight?  Siddhesh?

Regards,

Rafal

---------------------------8<---------------------------

From: =?UTF-8?q?Rafa=C5=82=20Lu=C5=BCy=C5=84ski?=
 <digitalfreak@lingonborough.com>
Date: Fri, 3 Jan 2020 12:11:20 +0100

This is correct according to CLDR [1] and Florian Weimer's quick
research. [2]

[1] https://st.unicode.org/cldr-apps/v#/sl/Symbols/
[2] https://sourceware.org/bugzilla/show_bug.cgi?id=25233#c0
---
 localedata/locales/sl_SI | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/localedata/locales/sl_SI b/localedata/locales/sl_SI
index 8e290175ba..3c15937801 100644
--- a/localedata/locales/sl_SI
+++ b/localedata/locales/sl_SI
@@ -2134,7 +2134,7 @@ LC_MONETARY
 int_curr_symbol           "EUR "
 currency_symbol           "<U20AC>"
 mon_decimal_point         ","
-mon_thousands_sep         "<U202F>"
+mon_thousands_sep         "."
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "-"
@@ -2150,7 +2150,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             ","
-thousands_sep             "<U202F>"
+thousands_sep             "."
 grouping                  0;0
 END LC_NUMERIC
 
-- 
2.21.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]