This is the mail archive of the glibc-cvs@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]

GNU C Library master sources branch master updated. glibc-2.26-79-ga6bd872


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  a6bd872286b981b08577218c00e1ea693bad6095 (commit)
       via  d68b451903acfa1f8c64bb168b2cbe78beeacb3d (commit)
       via  70a6707fa15e63591d991761be025e26e8d02bb6 (commit)
      from  8b2c63e4e2ad1fd161f80004ed30624f2a37b57b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a6bd872286b981b08577218c00e1ea693bad6095

commit a6bd872286b981b08577218c00e1ea693bad6095
Author: Mike FABIAN <mfabian@redhat.com>
Date:   Sat Aug 12 17:15:25 2017 +0200

    Adapt test case data to the changes in the thousands separators
    
    	[BZ #20756]
    	* localedata/tst-langinfo.sh: Adapt test case data.
    	* stdlib/tst-strfmon_l.c: Likewise.
    	* stdlib/tst-strtod4.c: Likewise.
    	* stdlib/tst-strtod5i.c: Likewise.

diff --git a/ChangeLog b/ChangeLog
index 000dc6d..4b64396 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2017-08-12  Mike FABIAN  <mfabian@redhat.com>
+
+	Adapt test case data to the changes in the thousands
+	separators.
+
+	[BZ #20756]
+	* localedata/tst-langinfo.sh: Adapt test case data.
+	* stdlib/tst-strfmon_l.c: Likewise.
+	* stdlib/tst-strtod4.c: Likewise.
+	* stdlib/tst-strtod5i.c: Likewise.
+
 2017-08-11  Florian Weimer  <fweimer@redhat.com>
 
 	[BZ #21242]
diff --git a/localedata/tst-langinfo.sh b/localedata/tst-langinfo.sh
index 2f8854c..972a949 100755
--- a/localedata/tst-langinfo.sh
+++ b/localedata/tst-langinfo.sh
@@ -289,7 +289,7 @@ fr_FR.ISO-8859-1     D_T_FMT     "%a %d %b %Y %T %Z"
 fr_FR.ISO-8859-1     D_FMT       "%d/%m/%Y"
 fr_FR.ISO-8859-1     T_FMT       "%T"
 fr_FR.ISO-8859-1     RADIXCHAR   ,
-fr_FR.ISO-8859-1     THOUSEP     " "
+fr_FR.ISO-8859-1     THOUSEP     " "
 fr_FR.ISO-8859-1     YESEXPR     ^[+1oOyY]
 fr_FR.ISO-8859-1     NOEXPR      ^[-0nN]
 ja_JP.EUC-JP         ABDAY_1     Æü
diff --git a/stdlib/tst-strfmon_l.c b/stdlib/tst-strfmon_l.c
index ed7d486..dff186f 100644
--- a/stdlib/tst-strfmon_l.c
+++ b/stdlib/tst-strfmon_l.c
@@ -150,11 +150,11 @@ static const struct locale_pair tests[] =
       "tg_TJ.UTF-8",
       {
         {
-          "1 234 567.89 TJS", "1 234 567.89 \u0440\u0443\u0431",
+          "1\u202f234\u202f567.89 TJS", "1\u202f234\u202f567.89 \u0440\u0443\u0431",
           "1234567.89 TJS", "1234567.89 \u0440\u0443\u0431"
         },
         {
-          "-1 234 567.89 TJS", "-1 234 567.89 \u0440\u0443\u0431",
+          "-1\u202f234\u202f567.89 TJS", "-1\u202f234\u202f567.89 \u0440\u0443\u0431",
           "-1234567.89 TJS", "-1234567.89 \u0440\u0443\u0431"
         }
       }
@@ -163,11 +163,11 @@ static const struct locale_pair tests[] =
       "hr_HR.UTF-8",
       {
         {
-          "HRK 1 234 567,89", "Kn 1 234 567,89",
+          "HRK 1\u202f234\u202f567,89", "Kn 1\u202f234\u202f567,89",
           "HRK 1234567,89", "Kn 1234567,89"
         },
         {
-          "-HRK 1 234 567,89", "-Kn 1 234 567,89",
+          "-HRK 1\u202f234\u202f567,89", "-Kn 1\u202f234\u202f567,89",
           "-HRK 1234567,89", "-Kn 1234567,89"
         }
       }
diff --git a/stdlib/tst-strtod4.c b/stdlib/tst-strtod4.c
index 2d9d54c..aae9835 100644
--- a/stdlib/tst-strtod4.c
+++ b/stdlib/tst-strtod4.c
@@ -3,7 +3,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#define NBSP "\xc2\xa0"
+#define NNBSP "\xe2\x80\xaf"
 
 static const struct
 {
@@ -12,8 +12,8 @@ static const struct
   double expected;
 } tests[] =
   {
-    { "000"NBSP"000"NBSP"000", "", 0.0 },
-    { "1"NBSP"000"NBSP"000,5x", "x", 1000000.5 }
+    { "000"NNBSP"000"NNBSP"000", "", 0.0 },
+    { "1"NNBSP"000"NNBSP"000,5x", "x", 1000000.5 }
   };
 #define NTESTS (sizeof (tests) / sizeof (tests[0]))
 
diff --git a/stdlib/tst-strtod5i.c b/stdlib/tst-strtod5i.c
index 7e31958..d7135da 100644
--- a/stdlib/tst-strtod5i.c
+++ b/stdlib/tst-strtod5i.c
@@ -22,7 +22,7 @@
 #include <string.h>
 #include <math.h>
 
-#define NBSP "\xc2\xa0"
+#define NNBSP "\xe2\x80\xaf"
 
 static const struct
 {
@@ -57,8 +57,8 @@ static const struct
     { "-0e-10", 1, -0.0 },
     { "0e-1000000", 1, 0.0 },
     { "-0e-1000000", 1, -0.0 },
-    { "000"NBSP"000"NBSP"000", 1, 0.0 },
-    { "-000"NBSP"000"NBSP"000", 1, -0.0 }
+    { "000"NNBSP"000"NNBSP"000", 1, 0.0 },
+    { "-000"NNBSP"000"NNBSP"000", 1, -0.0 }
   };
 #define NTESTS (sizeof (tests) / sizeof (tests[0]))
 

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=d68b451903acfa1f8c64bb168b2cbe78beeacb3d

commit d68b451903acfa1f8c64bb168b2cbe78beeacb3d
Author: Mike FABIAN <mfabian@redhat.com>
Date:   Sat Aug 12 15:34:36 2017 +0200

    Use U+202F instead of U+2009 as thousands_sep for es_MX
    
    See also [BZ #20756].
    
    U+202F NARROW NO-BREAK SPACE: a narrow form of a no-break space,
    typically the width of a thin space or a mid space.
    
    U+2009 THIN SPACE.

diff --git a/localedata/ChangeLog b/localedata/ChangeLog
index 20c710f..379abfe 100644
--- a/localedata/ChangeLog
+++ b/localedata/ChangeLog
@@ -1,3 +1,7 @@
+2017-08-12  Mike FABIAN  <mfabian@redhat.com>
+
+	* locales/es_MX (LC_NUMERIC): Replace thin space with NNBSP as thousands separator.
+
 2017-08-12  Stanislav Brabec <sbrabec@suse.cz>
 
 	[BZ #20756]
diff --git a/localedata/locales/es_MX b/localedata/locales/es_MX
index fcd926d..5e8c3f6 100644
--- a/localedata/locales/es_MX
+++ b/localedata/locales/es_MX
@@ -82,7 +82,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point        "<U002E>"
-thousands_sep        "<U2009>"
+thousands_sep        "<U202F>"
 grouping             3;3
 END LC_NUMERIC
 

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=70a6707fa15e63591d991761be025e26e8d02bb6

commit 70a6707fa15e63591d991761be025e26e8d02bb6
Author: Stanislav Brabec <sbrabec@suse.cz>
Date:   Wed Nov 2 16:52:58 2016 +0100

    Locales: Use Unicode wise thousands separator
    
    Many languages use small gap as thousands separator.
    
    Thousands separator should not be a plain space, but a narrow space.
    And additionally, it is not allowed to wrap line in the middle of the
    number.
    
    Locale data were created in a deep age of 8-bit encodings, so most of
    them use space (incorrect: it allows wrapping the line in the middle
    of the number), or NBSP (better, but typographically incorrect: space
    between groups is too wide).
    
    Now UNICODE is widely supported, so we should leave legacy characters
    in favor of correct UNICODE character.
    
    UNICODE has a dedicated character for this purpose:
    
    NNBSP
    U+202F NARROW NO-BREAK SPACE: a narrow form of a no-break space,
    typically the width of a thin space or a mid space
    
    The NNBSP exists since Unicode 3.0.
    
    Use of NNBSP will prevent line wrapping in the midle of number and
    improve readability of numbers.
    
    	[BZ #20756]
    	* locales/aa_DJ (LC_MONETARY): Replace space by NNBSP as thousands separator.
    	* locales/az_AZ (LC_MONETARY): Likewise.
    	* locales/be_BY (LC_MONETARY): Likewise.
    	* locales/be_BY@latin (LC_MONETARY): Likewise.
    	* locales/bg_BG (LC_MONETARY): Likewise.
    	* locales/bs_BA (LC_MONETARY): Likewise.
    	* locales/ce_RU (LC_MONETARY): Likewise.
    	* locales/crh_UA (LC_MONETARY): Likewise.
    	* locales/cs_CZ (LC_MONETARY): Likewise.
    	* locales/cs_CZ (LC_NUMERIC): Likewise.
    	* locales/cv_RU (LC_MONETARY): Likewise.
    	* locales/de_AT (LC_MONETARY): Likewise.
    	* locales/eo (LC_MONETARY): Likewise.
    	* locales/es_CR (LC_MONETARY): Likewise.
    	* locales/es_CR (LC_NUMERIC): Likewise.
    	* locales/es_CU (LC_MONETARY): Likewise.
    	* locales/et_EE (LC_MONETARY): Likewise.
    	* locales/et_EE (LC_NUMERIC): Likewise.
    	* locales/fi_FI (LC_MONETARY): Likewise.
    	* locales/fi_FI (LC_NUMERIC): Likewise.
    	* locales/fr_CA (LC_MONETARY): Likewise.
    	* locales/fr_FR (LC_MONETARY): Likewise.
    	* locales/fr_FR (LC_NUMERIC): Likewise.
    	* locales/fr_LU (LC_MONETARY): Likewise.
    	* locales/fr_LU (LC_NUMERIC): Likewise.
    	* locales/hr_HR (LC_MONETARY): Likewise.
    	* locales/ht_HT (LC_NUMERIC): Likewise.
    	* locales/kk_KZ (LC_MONETARY): Likewise.
    	* locales/kk_KZ (LC_NUMERIC): Likewise.
    	* locales/ky_KG (LC_MONETARY): Likewise.
    	* locales/ky_KG (LC_NUMERIC): Likewise.
    	* locales/lv_LV (LC_MONETARY): Likewise.
    	* locales/lv_LV (LC_NUMERIC): Likewise.
    	* locales/mg_MG (LC_MONETARY): Likewise.
    	* locales/mhr_RU (LC_MONETARY): Likewise.
    	* locales/mk_MK (LC_MONETARY): Likewise.
    	* locales/mk_MK (LC_NUMERIC): Likewise.
    	* locales/mn_MN (LC_MONETARY): Likewise.
    	* locales/nb_NO (LC_MONETARY): Likewise.
    	* locales/nb_NO (LC_NUMERIC): Likewise.
    	* locales/nl_AW (LC_MONETARY): Likewise.
    	* locales/nl_NL (LC_MONETARY): Likewise.
    	* locales/nn_NO (LC_MONETARY): Likewise.
    	* locales/os_RU (LC_MONETARY): Likewise.
    	* locales/pap_AW (LC_MONETARY): Likewise.
    	* locales/pap_CW (LC_MONETARY): Likewise.
    	* locales/ru_RU (LC_MONETARY): Likewise.
    	* locales/ru_RU (LC_NUMERIC): Likewise.
    	* locales/ru_UA (LC_MONETARY): Likewise.
    	* locales/sk_SK (LC_MONETARY): Likewise.
    	* locales/sk_SK (LC_NUMERIC): Likewise.
    	* locales/sl_SI (LC_MONETARY): Likewise.
    	* locales/sl_SI (LC_NUMERIC): Likewise.
    	* locales/sq_MK (LC_MONETARY): Likewise.
    	* locales/sv_SE (LC_MONETARY): Likewise.
    	* locales/sv_SE (LC_NUMERIC): Likewise.
    	* locales/tg_TJ (LC_MONETARY): Likewise.
    	* locales/tt_RU (LC_MONETARY): Likewise.
    	* locales/tt_RU@iqtelif (LC_MONETARY): Likewise.
    	* locales/uk_UA (LC_MONETARY): Likewise.
    	* locales/uk_UA (LC_NUMERIC): Likewise.
    	* locales/unm_US (LC_MONETARY): Likewise.
    	* locales/unm_US (LC_NUMERIC): Likewise.
    	* locales/wo_SN (LC_MONETARY): Likewise.

diff --git a/localedata/ChangeLog b/localedata/ChangeLog
index af08af9..20c710f 100644
--- a/localedata/ChangeLog
+++ b/localedata/ChangeLog
@@ -1,3 +1,71 @@
+2017-08-12  Stanislav Brabec <sbrabec@suse.cz>
+
+	[BZ #20756]
+	* locales/aa_DJ (LC_MONETARY): Replace space by NNBSP as thousands separator.
+	* locales/az_AZ (LC_MONETARY): Likewise.
+	* locales/be_BY (LC_MONETARY): Likewise.
+	* locales/be_BY@latin (LC_MONETARY): Likewise.
+	* locales/bg_BG (LC_MONETARY): Likewise.
+	* locales/bs_BA (LC_MONETARY): Likewise.
+	* locales/ce_RU (LC_MONETARY): Likewise.
+	* locales/crh_UA (LC_MONETARY): Likewise.
+	* locales/cs_CZ (LC_MONETARY): Likewise.
+	* locales/cs_CZ (LC_NUMERIC): Likewise.
+	* locales/cv_RU (LC_MONETARY): Likewise.
+	* locales/de_AT (LC_MONETARY): Likewise.
+	* locales/eo (LC_MONETARY): Likewise.
+	* locales/es_CR (LC_MONETARY): Likewise.
+	* locales/es_CR (LC_NUMERIC): Likewise.
+	* locales/es_CU (LC_MONETARY): Likewise.
+	* locales/et_EE (LC_MONETARY): Likewise.
+	* locales/et_EE (LC_NUMERIC): Likewise.
+	* locales/fi_FI (LC_MONETARY): Likewise.
+	* locales/fi_FI (LC_NUMERIC): Likewise.
+	* locales/fr_CA (LC_MONETARY): Likewise.
+	* locales/fr_FR (LC_MONETARY): Likewise.
+	* locales/fr_FR (LC_NUMERIC): Likewise.
+	* locales/fr_LU (LC_MONETARY): Likewise.
+	* locales/fr_LU (LC_NUMERIC): Likewise.
+	* locales/hr_HR (LC_MONETARY): Likewise.
+	* locales/ht_HT (LC_NUMERIC): Likewise.
+	* locales/kk_KZ (LC_MONETARY): Likewise.
+	* locales/kk_KZ (LC_NUMERIC): Likewise.
+	* locales/ky_KG (LC_MONETARY): Likewise.
+	* locales/ky_KG (LC_NUMERIC): Likewise.
+	* locales/lv_LV (LC_MONETARY): Likewise.
+	* locales/lv_LV (LC_NUMERIC): Likewise.
+	* locales/mg_MG (LC_MONETARY): Likewise.
+	* locales/mhr_RU (LC_MONETARY): Likewise.
+	* locales/mk_MK (LC_MONETARY): Likewise.
+	* locales/mk_MK (LC_NUMERIC): Likewise.
+	* locales/mn_MN (LC_MONETARY): Likewise.
+	* locales/nb_NO (LC_MONETARY): Likewise.
+	* locales/nb_NO (LC_NUMERIC): Likewise.
+	* locales/nl_AW (LC_MONETARY): Likewise.
+	* locales/nl_NL (LC_MONETARY): Likewise.
+	* locales/nn_NO (LC_MONETARY): Likewise.
+	* locales/os_RU (LC_MONETARY): Likewise.
+	* locales/pap_AW (LC_MONETARY): Likewise.
+	* locales/pap_CW (LC_MONETARY): Likewise.
+	* locales/ru_RU (LC_MONETARY): Likewise.
+	* locales/ru_RU (LC_NUMERIC): Likewise.
+	* locales/ru_UA (LC_MONETARY): Likewise.
+	* locales/sk_SK (LC_MONETARY): Likewise.
+	* locales/sk_SK (LC_NUMERIC): Likewise.
+	* locales/sl_SI (LC_MONETARY): Likewise.
+	* locales/sl_SI (LC_NUMERIC): Likewise.
+	* locales/sq_MK (LC_MONETARY): Likewise.
+	* locales/sv_SE (LC_MONETARY): Likewise.
+	* locales/sv_SE (LC_NUMERIC): Likewise.
+	* locales/tg_TJ (LC_MONETARY): Likewise.
+	* locales/tt_RU (LC_MONETARY): Likewise.
+	* locales/tt_RU@iqtelif (LC_MONETARY): Likewise.
+	* locales/uk_UA (LC_MONETARY): Likewise.
+	* locales/uk_UA (LC_NUMERIC): Likewise.
+	* locales/unm_US (LC_MONETARY): Likewise.
+	* locales/unm_US (LC_NUMERIC): Likewise.
+	* locales/wo_SN (LC_MONETARY): Likewise.
+
 2017-08-10  Akhilesh Kumar <akhilesh.k@samsung.com>
 
 	Remove redundant data for LC_MONETARY
diff --git a/localedata/locales/aa_DJ b/localedata/locales/aa_DJ
index fa918d7..9d9e6f0 100644
--- a/localedata/locales/aa_DJ
+++ b/localedata/locales/aa_DJ
@@ -88,7 +88,7 @@ LC_MONETARY
 int_curr_symbol       "<U0044><U004A><U0046><U0020>"
 currency_symbol       "<U0046><U0064><U006A>"
 mon_decimal_point     "<U002E>"
-mon_thousands_sep     "<U0020>"
+mon_thousands_sep     "<U202F>"
 mon_grouping          3;3
 positive_sign         ""
 negative_sign         "<U002D>"
diff --git a/localedata/locales/az_AZ b/localedata/locales/az_AZ
index d452d4b..28de66d 100644
--- a/localedata/locales/az_AZ
+++ b/localedata/locales/az_AZ
@@ -214,7 +214,7 @@ LC_MONETARY
 int_curr_symbol           "<U0041><U005A><U004E><U0020>"
 currency_symbol           "<U20BC>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/be_BY b/localedata/locales/be_BY
index e6ed0ad..041b386 100644
--- a/localedata/locales/be_BY
+++ b/localedata/locales/be_BY
@@ -82,7 +82,7 @@ LC_MONETARY
 int_curr_symbol           "<U0042><U0059><U0052><U0020>"
 currency_symbol           "<U0440><U0443><U0431>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/be_BY@latin b/localedata/locales/be_BY@latin
index 58fee57..1a32e76 100644
--- a/localedata/locales/be_BY@latin
+++ b/localedata/locales/be_BY@latin
@@ -115,7 +115,7 @@ LC_MONETARY
 int_curr_symbol           "<U0042><U0059><U0052><U0020>"
 currency_symbol           "<U0052><U0075><U0062>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/bg_BG b/localedata/locales/bg_BG
index 92ca5ad..508a815 100644
--- a/localedata/locales/bg_BG
+++ b/localedata/locales/bg_BG
@@ -165,7 +165,7 @@ LC_MONETARY
 int_curr_symbol           "<U0042><U0047><U004E><U0020>"
 currency_symbol           "<U043B><U0432><U002E>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U00A0>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/bs_BA b/localedata/locales/bs_BA
index 6fa4523..45dd49d 100644
--- a/localedata/locales/bs_BA
+++ b/localedata/locales/bs_BA
@@ -157,7 +157,7 @@ LC_MONETARY
 int_curr_symbol           "<U0042><U0041><U004D><U0020>"
 currency_symbol           "<U004B><U004D>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/ce_RU b/localedata/locales/ce_RU
index 7f24fe0..7beadfb 100644
--- a/localedata/locales/ce_RU
+++ b/localedata/locales/ce_RU
@@ -111,7 +111,7 @@ int_curr_symbol    "<U0052><U0055><U0042><U0020>"
 currency_symbol    "<U20BD>"
 % .
 mon_decimal_point  "<U002E>"
-mon_thousands_sep  "<U00A0>"
+mon_thousands_sep  "<U202F>"
 mon_grouping       3;3
 positive_sign      ""
 negative_sign      "<U002D>"
diff --git a/localedata/locales/crh_UA b/localedata/locales/crh_UA
index 06b9b5a..8023e63 100644
--- a/localedata/locales/crh_UA
+++ b/localedata/locales/crh_UA
@@ -137,7 +137,7 @@ LC_MONETARY
 int_curr_symbol           "<U0055><U0041><U0048><U0020>"
 currency_symbol           "<U20B4>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/cs_CZ b/localedata/locales/cs_CZ
index 7973dca..ca486c2 100644
--- a/localedata/locales/cs_CZ
+++ b/localedata/locales/cs_CZ
@@ -2332,7 +2332,7 @@ LC_MONETARY
 int_curr_symbol		"<U0043><U005A><U004B><U0020>"
 currency_symbol		"<U004B><U010D>"
 mon_decimal_point	"<U002C>"
-mon_thousands_sep	"<U00A0>"
+mon_thousands_sep	"<U202F>"
 mon_grouping      	3;3
 positive_sign		""
 negative_sign		"<U002D>"
@@ -2353,7 +2353,7 @@ END LC_MONETARY
 LC_NUMERIC
 
 decimal_point		"<U002C>"
-thousands_sep		"<U00A0>"
+thousands_sep		"<U202F>"
 grouping		3;3
 
 END LC_NUMERIC
diff --git a/localedata/locales/cv_RU b/localedata/locales/cv_RU
index aa00293..e0d166a 100644
--- a/localedata/locales/cv_RU
+++ b/localedata/locales/cv_RU
@@ -123,7 +123,7 @@ int_curr_symbol           "<U0052><U0055><U0042><U0020>"
 currency_symbol "<U20BD>"
 
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U00A0>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/de_AT b/localedata/locales/de_AT
index 82bee3e..a7f8381 100644
--- a/localedata/locales/de_AT
+++ b/localedata/locales/de_AT
@@ -65,7 +65,7 @@ LC_MONETARY
 int_curr_symbol           "<U0045><U0055><U0052><U0020>"
 currency_symbol           "<U20AC>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/eo b/localedata/locales/eo
index a33db5a..642dccb 100644
--- a/localedata/locales/eo
+++ b/localedata/locales/eo
@@ -110,7 +110,7 @@ LC_MONETARY
 int_curr_symbol     "<U0058><U0044><U0052><U0020>"
 currency_symbol     "<U00A4>"
 mon_decimal_point   "<U002C>"
-mon_thousands_sep   "<U0020>"
+mon_thousands_sep   "<U202F>"
 mon_grouping        3;3
 positive_sign       ""
 negative_sign       "<U002D>"
diff --git a/localedata/locales/es_CR b/localedata/locales/es_CR
index ac18b9c..67da359 100644
--- a/localedata/locales/es_CR
+++ b/localedata/locales/es_CR
@@ -59,7 +59,7 @@ int_curr_symbol      "<U0043><U0052><U0043><U0020>"
 currency_symbol      "<U20A1>"
 % Decreto Ejecutivo 29660
 mon_decimal_point    "<U002C>"
-mon_thousands_sep    "<U0020>"
+mon_thousands_sep    "<U202F>"
 mon_grouping         3;3
 positive_sign        ""
 negative_sign        "<U002D>"
@@ -76,7 +76,7 @@ END LC_MONETARY
 LC_NUMERIC
 % Decreto Ejecutivo 29660
 decimal_point        "<U002C>"
-thousands_sep        "<U0020>"
+thousands_sep        "<U202F>"
 grouping             3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/es_CU b/localedata/locales/es_CU
index 6c56071..88e7444 100644
--- a/localedata/locales/es_CU
+++ b/localedata/locales/es_CU
@@ -70,7 +70,7 @@ LC_MONETARY
 int_curr_symbol      "<U0043><U0055><U0050><U0020>"
 currency_symbol      "<U0024>"
 mon_decimal_point    "<U002C>"
-mon_thousands_sep    "<U0020>"
+mon_thousands_sep    "<U202F>"
 mon_grouping         3;3
 positive_sign        ""
 negative_sign        "<U002D>"
diff --git a/localedata/locales/et_EE b/localedata/locales/et_EE
index 50470b0..17338ca 100644
--- a/localedata/locales/et_EE
+++ b/localedata/locales/et_EE
@@ -2134,7 +2134,7 @@ LC_MONETARY
 int_curr_symbol     "<U0045><U0055><U0052><U0020>"
 currency_symbol     "<U20AC>"
 mon_decimal_point   "<U002C>"
-mon_thousands_sep   "<U00A0>"
+mon_thousands_sep   "<U202F>"
 mon_grouping        3;3
 positive_sign       ""
 negative_sign       "<U002D>"
@@ -2150,7 +2150,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point           "<U002C>"
-thousands_sep           "<U00A0>"
+thousands_sep           "<U202F>"
 grouping                3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/fi_FI b/localedata/locales/fi_FI
index 6d0dbb3..39e8630 100644
--- a/localedata/locales/fi_FI
+++ b/localedata/locales/fi_FI
@@ -143,7 +143,7 @@ LC_MONETARY
 int_curr_symbol      "<U0045><U0055><U0052><U0020>"
 currency_symbol      "<U20AC>"
 mon_decimal_point    "<U002C>"
-mon_thousands_sep    "<U00A0>"
+mon_thousands_sep    "<U202F>"
 mon_grouping         3;3
 positive_sign        ""
 negative_sign        "<U002D>"
@@ -159,7 +159,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point        "<U002C>"
-thousands_sep        "<U00A0>"
+thousands_sep        "<U202F>"
 grouping             3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/fr_CA b/localedata/locales/fr_CA
index 195d214..b121782 100644
--- a/localedata/locales/fr_CA
+++ b/localedata/locales/fr_CA
@@ -65,7 +65,7 @@ LC_MONETARY
 int_curr_symbol           "<U0043><U0041><U0044><U0020>"
 currency_symbol           "<U0024>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/fr_FR b/localedata/locales/fr_FR
index 3c41622..4ecd4a4 100644
--- a/localedata/locales/fr_FR
+++ b/localedata/locales/fr_FR
@@ -78,7 +78,7 @@ LC_MONETARY
 int_curr_symbol           "<U0045><U0055><U0052><U0020>"
 currency_symbol           "<U20AC>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3
 positive_sign             ""
 negative_sign             "<U002D>"
@@ -94,7 +94,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             "<U002C>"
-thousands_sep             "<U0020>"
+thousands_sep             "<U202F>"
 grouping                  3
 END LC_NUMERIC
 
diff --git a/localedata/locales/fr_LU b/localedata/locales/fr_LU
index 332c6c7..b3ab114 100644
--- a/localedata/locales/fr_LU
+++ b/localedata/locales/fr_LU
@@ -68,7 +68,7 @@ LC_MONETARY
 int_curr_symbol           "<U0045><U0055><U0052><U0020>"
 currency_symbol           "<U20AC>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
@@ -84,7 +84,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             "<U002C>"
-thousands_sep             "<U0020>"
+thousands_sep             "<U202F>"
 grouping                  3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/hr_HR b/localedata/locales/hr_HR
index 6f36b24..4075bf6 100644
--- a/localedata/locales/hr_HR
+++ b/localedata/locales/hr_HR
@@ -2158,7 +2158,7 @@ LC_MONETARY
 int_curr_symbol           "<U0048><U0052><U004B><U0020>"
 currency_symbol           "<U004B><U006E>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/ht_HT b/localedata/locales/ht_HT
index 9d1e1b3..58b25db 100644
--- a/localedata/locales/ht_HT
+++ b/localedata/locales/ht_HT
@@ -123,7 +123,7 @@ LC_NUMERIC
 % ,
 decimal_point "<U002C>"
 %
-thousands_sep "<U0020>"
+thousands_sep "<U202F>"
 grouping      3
 END LC_NUMERIC
 
@@ -131,7 +131,7 @@ LC_MONETARY
 int_curr_symbol           "<U0048><U0054><U0047><U0020>"
 currency_symbol           "<U0067>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/kk_KZ b/localedata/locales/kk_KZ
index 0962feb..2ff25da 100644
--- a/localedata/locales/kk_KZ
+++ b/localedata/locales/kk_KZ
@@ -171,7 +171,7 @@ LC_MONETARY
 int_curr_symbol           "<U004B><U005A><U0054><U0020>"
 currency_symbol           "<U20B8>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U00A0>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
@@ -193,7 +193,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             "<U002C>"
-thousands_sep             "<U00A0>"
+thousands_sep             "<U202F>"
 grouping                  3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/ky_KG b/localedata/locales/ky_KG
index 920b240..2130b72 100644
--- a/localedata/locales/ky_KG
+++ b/localedata/locales/ky_KG
@@ -102,7 +102,7 @@ LC_MONETARY
 int_curr_symbol           "<U004B><U0047><U0053><U0020>"
 currency_symbol           "<U0441><U043E><U043C>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
@@ -118,7 +118,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             "<U002C>"
-thousands_sep             "<U0020>"
+thousands_sep             "<U202F>"
 grouping                  3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/lv_LV b/localedata/locales/lv_LV
index 9a9bd0e..0bba78f 100644
--- a/localedata/locales/lv_LV
+++ b/localedata/locales/lv_LV
@@ -2128,7 +2128,7 @@ LC_MONETARY
 int_curr_symbol   "<U0045><U0055><U0052><U0020>"
 currency_symbol   "<U20AC>"
 mon_decimal_point "<U002C>"
-mon_thousands_sep "<U00A0>"
+mon_thousands_sep "<U202F>"
 mon_grouping      3;3
 positive_sign     ""
 negative_sign     "<U002D>"
@@ -2144,7 +2144,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point     "<U002C>"
-thousands_sep     "<U00A0>"
+thousands_sep     "<U202F>"
 grouping          3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/mg_MG b/localedata/locales/mg_MG
index 2983ab6..c82fe5b 100644
--- a/localedata/locales/mg_MG
+++ b/localedata/locales/mg_MG
@@ -74,7 +74,7 @@ LC_MONETARY
 int_curr_symbol           "<U004D><U0047><U0041><U0020>"
 currency_symbol           "<U0041><U0072>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/mhr_RU b/localedata/locales/mhr_RU
index 7ad658a..012757e 100644
--- a/localedata/locales/mhr_RU
+++ b/localedata/locales/mhr_RU
@@ -70,7 +70,7 @@ LC_MONETARY
 int_curr_symbol           "<U0052><U0055><U0042><U0020>"
 currency_symbol           "<U20BD>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U00A0>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/mk_MK b/localedata/locales/mk_MK
index a2a2f48..a980bac 100644
--- a/localedata/locales/mk_MK
+++ b/localedata/locales/mk_MK
@@ -98,7 +98,7 @@ LC_MONETARY
 int_curr_symbol           "<U004D><U004B><U0044><U0020>"
 currency_symbol           "<U0434><U0435><U043D>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
@@ -114,7 +114,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             "<U002C>"
-thousands_sep             "<U0020>"
+thousands_sep             "<U202F>"
 grouping                  3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/mn_MN b/localedata/locales/mn_MN
index 44b49f3..020a941 100644
--- a/localedata/locales/mn_MN
+++ b/localedata/locales/mn_MN
@@ -151,7 +151,7 @@ LC_MONETARY
 int_curr_symbol     "<U004D><U004E><U0054><U0020>"
 currency_symbol     "<U20AE>"
 mon_decimal_point   "<U002E>"
-mon_thousands_sep   "<U0020>"
+mon_thousands_sep   "<U202F>"
 mon_grouping        3;3
 positive_sign       ""
 negative_sign       "<U002D>"
diff --git a/localedata/locales/nb_NO b/localedata/locales/nb_NO
index a878850..fb0eca3 100644
--- a/localedata/locales/nb_NO
+++ b/localedata/locales/nb_NO
@@ -161,7 +161,7 @@ LC_MONETARY
 int_curr_symbol         "<U004E><U004F><U004B><U0020>"
 currency_symbol         "<U006B><U0072>"
 mon_decimal_point       "<U002C>"
-mon_thousands_sep       "<U00A0>"
+mon_thousands_sep       "<U202F>"
 mon_grouping            3;3
 positive_sign           ""
 negative_sign           "<U002D>"
@@ -177,7 +177,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point           "<U002C>"
-thousands_sep           "<U00A0>"
+thousands_sep           "<U202F>"
 grouping                3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/nl_AW b/localedata/locales/nl_AW
index 8de1410..4265fa0 100644
--- a/localedata/locales/nl_AW
+++ b/localedata/locales/nl_AW
@@ -50,7 +50,7 @@ LC_MONETARY
 int_curr_symbol     "<U0041><U0057><U0047><U0020>"
 currency_symbol     "<U0041><U0066><U006C><U002E>"
 mon_decimal_point   "<U002C>"
-mon_thousands_sep   "<U0020>"
+mon_thousands_sep   "<U202F>"
 mon_grouping        3;3
 positive_sign       ""
 negative_sign       "<U002D>"
diff --git a/localedata/locales/nl_NL b/localedata/locales/nl_NL
index fade2f1..5aa2ffb 100644
--- a/localedata/locales/nl_NL
+++ b/localedata/locales/nl_NL
@@ -74,7 +74,7 @@ LC_MONETARY
 int_curr_symbol           "<U0045><U0055><U0052><U0020>"
 currency_symbol           "<U20AC>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/nn_NO b/localedata/locales/nn_NO
index feefdae..2ad3e09 100644
--- a/localedata/locales/nn_NO
+++ b/localedata/locales/nn_NO
@@ -56,7 +56,7 @@ LC_MONETARY
 int_curr_symbol       "<U004E><U004F><U004B><U0020>"
 currency_symbol       "<U006B><U0072>"
 mon_decimal_point     "<U002C>"
-mon_thousands_sep     "<U00A0>"
+mon_thousands_sep     "<U202F>"
 mon_grouping          3
 positive_sign         ""
 negative_sign         "<U002D>"
diff --git a/localedata/locales/os_RU b/localedata/locales/os_RU
index 3b7cdf0..7d8a39a 100644
--- a/localedata/locales/os_RU
+++ b/localedata/locales/os_RU
@@ -84,7 +84,7 @@ LC_MONETARY
 int_curr_symbol           "<U0052><U0055><U0042><U0020>"
 currency_symbol           "<U20BD>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U00A0>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/pap_AW b/localedata/locales/pap_AW
index e490ca8..e3fe56a 100644
--- a/localedata/locales/pap_AW
+++ b/localedata/locales/pap_AW
@@ -85,7 +85,7 @@ LC_MONETARY
 int_curr_symbol           "<U0041><U0057><U0047><U0020>"
 currency_symbol           "<U0192>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/pap_CW b/localedata/locales/pap_CW
index 45eb3db..b7ed091 100644
--- a/localedata/locales/pap_CW
+++ b/localedata/locales/pap_CW
@@ -84,7 +84,7 @@ LC_MONETARY
 int_curr_symbol           "<U0041><U004E><U0047><U0020>"
 currency_symbol           "<U0192>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/ru_RU b/localedata/locales/ru_RU
index 6434f39..8f8bb11 100644
--- a/localedata/locales/ru_RU
+++ b/localedata/locales/ru_RU
@@ -87,7 +87,7 @@ LC_MONETARY
 int_curr_symbol           "<U0052><U0055><U0042><U0020>"
 currency_symbol           "<U20BD>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U00A0>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
@@ -103,7 +103,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             "<U002C>"
-thousands_sep             "<U00A0>"
+thousands_sep             "<U202F>"
 grouping                  3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/ru_UA b/localedata/locales/ru_UA
index 8c071ec..3a2163f 100644
--- a/localedata/locales/ru_UA
+++ b/localedata/locales/ru_UA
@@ -79,7 +79,7 @@ LC_MONETARY
 int_curr_symbol           "<U0055><U0041><U0048><U0020>"
 currency_symbol           "<U20B4>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/sk_SK b/localedata/locales/sk_SK
index 11e86d3..cf0126b 100644
--- a/localedata/locales/sk_SK
+++ b/localedata/locales/sk_SK
@@ -91,7 +91,7 @@ LC_MONETARY
 int_curr_symbol		"<U0045><U0055><U0052><U0020>"
 currency_symbol		"<U20AC>"
 mon_decimal_point	"<U002C>"
-mon_thousands_sep	"<U00A0>"
+mon_thousands_sep	"<U202F>"
 mon_grouping      	3;3
 positive_sign		""
 negative_sign		"<U002D>"
@@ -112,7 +112,7 @@ END LC_MONETARY
 LC_NUMERIC
 
 decimal_point		"<U002C>"
-thousands_sep		"<U00A0>"
+thousands_sep		"<U202F>"
 grouping		3;3
 
 END LC_NUMERIC
diff --git a/localedata/locales/sl_SI b/localedata/locales/sl_SI
index b2aee95..8ef1b77 100644
--- a/localedata/locales/sl_SI
+++ b/localedata/locales/sl_SI
@@ -2134,7 +2134,7 @@ LC_MONETARY
 int_curr_symbol           "<U0045><U0055><U0052><U0020>"
 currency_symbol           "<U20AC>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
@@ -2150,7 +2150,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             "<U002C>"
-thousands_sep             "<U0020>"
+thousands_sep             "<U202F>"
 grouping                  0;0
 END LC_NUMERIC
 
diff --git a/localedata/locales/sq_MK b/localedata/locales/sq_MK
index 4c45594..e8ec556 100644
--- a/localedata/locales/sq_MK
+++ b/localedata/locales/sq_MK
@@ -54,7 +54,7 @@ LC_MONETARY
 int_curr_symbol           "<U004D><U004B><U0044><U0020>"
 currency_symbol           "<U0064><U0065><U006E>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/sv_SE b/localedata/locales/sv_SE
index 535597f..0ec08eb 100644
--- a/localedata/locales/sv_SE
+++ b/localedata/locales/sv_SE
@@ -145,7 +145,7 @@ LC_MONETARY
 int_curr_symbol         "<U0053><U0045><U004B><U0020>"
 currency_symbol         "<U006B><U0072>"
 mon_decimal_point       "<U002C>"
-mon_thousands_sep       "<U0020>"
+mon_thousands_sep       "<U202F>"
 mon_grouping            3;3
 positive_sign           ""
 negative_sign           "<U002D>"
@@ -161,7 +161,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point           "<U002C>"
-thousands_sep           "<U0020>"
+thousands_sep           "<U202F>"
 grouping                3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/tg_TJ b/localedata/locales/tg_TJ
index 4b8b0f5..f32b01b 100644
--- a/localedata/locales/tg_TJ
+++ b/localedata/locales/tg_TJ
@@ -136,7 +136,7 @@ LC_MONETARY
 int_curr_symbol           "<U0054><U004A><U0053><U0020>"
 currency_symbol           "<U0440><U0443><U0431>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/tt_RU b/localedata/locales/tt_RU
index e305cf5..343074c 100644
--- a/localedata/locales/tt_RU
+++ b/localedata/locales/tt_RU
@@ -237,7 +237,7 @@ LC_MONETARY
 int_curr_symbol           "<U0052><U0055><U0042><U0020>"
 currency_symbol           "<U20BD>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/tt_RU@iqtelif b/localedata/locales/tt_RU@iqtelif
index 0e1c392..4d41ac4 100644
--- a/localedata/locales/tt_RU@iqtelif
+++ b/localedata/locales/tt_RU@iqtelif
@@ -86,7 +86,7 @@ LC_MONETARY
 int_curr_symbol           "<U0052><U0055><U0042><U0020>"
 currency_symbol           "<U20BD>"
 mon_decimal_point         "<U002E>"
-mon_thousands_sep         "<U2002>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"
diff --git a/localedata/locales/uk_UA b/localedata/locales/uk_UA
index f430495..52f57a3 100644
--- a/localedata/locales/uk_UA
+++ b/localedata/locales/uk_UA
@@ -630,7 +630,7 @@ mon_decimal_point         "<U002C>"
 % This string is used as a thousands separator when formatting monetary
 % quantities.
 % see LC_NUMERIC:thousands separator
-mon_thousands_sep         "<U00A0>" % <NBSP> (0xA0)
+mon_thousands_sep         "<U202F>" % <NNBSP> (0X202F)
 
 % Define  the  size of each group of digits in formatted monetary
 % quantities.  The operand is a sequence of integers separated by
@@ -760,7 +760,7 @@ decimal_point             "<U002C>" % see LC_MONETARY:mon_decimal_pint
 % The string that will be used as a group separator when formatting
 % numeric quantities.
 % see LC_MONETARY:mon_thousands_sep
-thousands_sep             "<U00A0>" % <NBSP> (0xA0)
+thousands_sep             "<U202F>" % <NNBSP> (0X202F)
 
 % A string that describes the formatting of numeric quantities.
 %
diff --git a/localedata/locales/unm_US b/localedata/locales/unm_US
index 05d21d3..59f24f7 100644
--- a/localedata/locales/unm_US
+++ b/localedata/locales/unm_US
@@ -100,7 +100,7 @@ END LC_TIME
 
 LC_NUMERIC
 decimal_point           "<U002E>"
-thousands_sep           "<U0020>"
+thousands_sep           "<U202F>"
 grouping                2;2;2;3
 END LC_NUMERIC
 
@@ -108,7 +108,7 @@ LC_MONETARY
 int_curr_symbol         "<U0055><U0053><U0044><U0020>"
 currency_symbol         "<U0024>"
 mon_decimal_point       "<U002E>"
-mon_thousands_sep       "<U0020>"
+mon_thousands_sep       "<U202F>"
 mon_grouping            3
 positive_sign           ""
 negative_sign           "<U002D>"
diff --git a/localedata/locales/wo_SN b/localedata/locales/wo_SN
index 8fc8894..6549dab 100644
--- a/localedata/locales/wo_SN
+++ b/localedata/locales/wo_SN
@@ -72,7 +72,7 @@ LC_MONETARY
 int_curr_symbol           "<U0058><U004F><U0046><U0020>"
 currency_symbol           "<U0043><U0046><U0041>"
 mon_decimal_point         "<U002C>"
-mon_thousands_sep         "<U0020>"
+mon_thousands_sep         "<U202F>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "<U002D>"

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

Summary of changes:
 ChangeLog                        |   11 ++++++
 localedata/ChangeLog             |   72 ++++++++++++++++++++++++++++++++++++++
 localedata/locales/aa_DJ         |    2 +-
 localedata/locales/az_AZ         |    2 +-
 localedata/locales/be_BY         |    2 +-
 localedata/locales/be_BY@latin   |    2 +-
 localedata/locales/bg_BG         |    2 +-
 localedata/locales/bs_BA         |    2 +-
 localedata/locales/ce_RU         |    2 +-
 localedata/locales/crh_UA        |    2 +-
 localedata/locales/cs_CZ         |    4 +-
 localedata/locales/cv_RU         |    2 +-
 localedata/locales/de_AT         |    2 +-
 localedata/locales/eo            |    2 +-
 localedata/locales/es_CR         |    4 +-
 localedata/locales/es_CU         |    2 +-
 localedata/locales/es_MX         |    2 +-
 localedata/locales/et_EE         |    4 +-
 localedata/locales/fi_FI         |    4 +-
 localedata/locales/fr_CA         |    2 +-
 localedata/locales/fr_FR         |    4 +-
 localedata/locales/fr_LU         |    4 +-
 localedata/locales/hr_HR         |    2 +-
 localedata/locales/ht_HT         |    4 +-
 localedata/locales/kk_KZ         |    4 +-
 localedata/locales/ky_KG         |    4 +-
 localedata/locales/lv_LV         |    4 +-
 localedata/locales/mg_MG         |    2 +-
 localedata/locales/mhr_RU        |    2 +-
 localedata/locales/mk_MK         |    4 +-
 localedata/locales/mn_MN         |    2 +-
 localedata/locales/nb_NO         |    4 +-
 localedata/locales/nl_AW         |    2 +-
 localedata/locales/nl_NL         |    2 +-
 localedata/locales/nn_NO         |    2 +-
 localedata/locales/os_RU         |    2 +-
 localedata/locales/pap_AW        |    2 +-
 localedata/locales/pap_CW        |    2 +-
 localedata/locales/ru_RU         |    4 +-
 localedata/locales/ru_UA         |    2 +-
 localedata/locales/sk_SK         |    4 +-
 localedata/locales/sl_SI         |    4 +-
 localedata/locales/sq_MK         |    2 +-
 localedata/locales/sv_SE         |    4 +-
 localedata/locales/tg_TJ         |    2 +-
 localedata/locales/tt_RU         |    2 +-
 localedata/locales/tt_RU@iqtelif |    2 +-
 localedata/locales/uk_UA         |    4 +-
 localedata/locales/unm_US        |    4 +-
 localedata/locales/wo_SN         |    2 +-
 localedata/tst-langinfo.sh       |    2 +-
 stdlib/tst-strfmon_l.c           |    8 ++--
 stdlib/tst-strtod4.c             |    6 ++--
 stdlib/tst-strtod5i.c            |    6 ++--
 54 files changed, 160 insertions(+), 77 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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