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-223-g8715f25


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  8715f256302cab595eaf9589b3f4341f1dab020d (commit)
      from  d6e290a6ca822a42a69acde42e7b5003ae185534 (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=8715f256302cab595eaf9589b3f4341f1dab020d

commit 8715f256302cab595eaf9589b3f4341f1dab020d
Author: Mike FABIAN <mfabian@redhat.com>
Date:   Thu Aug 31 12:56:07 2017 +0200

    Fix decimal point and thousands separator in es_CU locale to agree with CLDR.
    
    	[BZ #15332]
    	* locales/es_CU (LC_MONETARY): use â??,â?? for mon_decimal_point
    	and â??.â?? for mon_thousands_sep (to agree with CLDR)
    	* locales/es_CU (LC_NUMERIC): Likewise.

diff --git a/localedata/ChangeLog b/localedata/ChangeLog
index 87de677..7f50584 100644
--- a/localedata/ChangeLog
+++ b/localedata/ChangeLog
@@ -1,3 +1,11 @@
+2017-08-31  Mike FABIAN  <mfabian@redhat.com>
+
+	[BZ #15332]
+	* locales/es_CU (LC_MONETARY): use â??,â?? for mon_decimal_point
+	and â??.â?? for mon_thousands_sep (to agree with CLDR)
+	* locales/es_CU (LC_NUMERIC): Likewise for decimal_point and
+	thousands_sep.
+
 2017-08-31  Akhilesh Kumar <akhilesh.k@samsung.com>
 
 	[BZ #22044]
diff --git a/localedata/locales/es_CU b/localedata/locales/es_CU
index 88e7444..b287309 100644
--- a/localedata/locales/es_CU
+++ b/localedata/locales/es_CU
@@ -69,8 +69,8 @@ END LC_MESSAGES
 LC_MONETARY
 int_curr_symbol      "<U0043><U0055><U0050><U0020>"
 currency_symbol      "<U0024>"
-mon_decimal_point    "<U002C>"
-mon_thousands_sep    "<U202F>"
+mon_decimal_point    ","
+mon_thousands_sep    "."
 mon_grouping         3;3
 positive_sign        ""
 negative_sign        "<U002D>"
@@ -85,8 +85,8 @@ n_sign_posn          1
 END LC_MONETARY
 
 LC_NUMERIC
-decimal_point        "<U002C>"
-thousands_sep        ""
+decimal_point        ","
+thousands_sep        "."
 grouping             0;0
 END LC_NUMERIC
 

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

Summary of changes:
 localedata/ChangeLog     |    8 ++++++++
 localedata/locales/es_CU |    8 ++++----
 2 files changed, 12 insertions(+), 4 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]