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.28.9000-122-g527f355


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  527f355e5e97bb0f76e88caadb08d2405cacea94 (commit)
      from  7244f13ded2f09c089df768a4587110d181d1fb8 (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=527f355e5e97bb0f76e88caadb08d2405cacea94

commit 527f355e5e97bb0f76e88caadb08d2405cacea94
Author: Rafal Luzynski <digitalfreak@lingonborough.com>
Date:   Mon Sep 10 16:00:45 2018 +0200

    Italian and Swiss locales: Use the correct separators (bug 10797).
    
    CLDR and many other sources say that it_IT (Italian) should use a dot
    (".") as a thousands separator and a comma (",") as a decimal separator.
    
    For it_CH and de_CH CLDR says that they should use the Right Single
    Quotation Mark ("â??") as a thousands separator and a dot (".") as a
    decimal separator.  Consequently, the same rules are copied to all other
    locales in Switzerland.
    
    These rules apply to both LC_MONETARY and LC_NUMERIC.
    
    	[BZ #10797]
    	* localedata/locales/de_CH (mon_thousands_sep): Use "<U2019>" (Right
    	Single Quotation Mark).
    	(thousands_sep): Likewise.
    	* localedata/locales/it_CH (LC_NUMERIC): Use â??copy "de_CH"â??.
    	* localedata/locales/it_IT (thousands_sep): Use ".".
    	(grouping): Use "3;3".

diff --git a/ChangeLog b/ChangeLog
index 510e5bf..e0c9c39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2018-09-10  Rafal Luzynski  <digitalfreak@lingonborough.com>
+
+	[BZ #10797]
+	* localedata/locales/de_CH (mon_thousands_sep): Use "<U2019>" (Right
+	Single Quotation Mark).
+	(thousands_sep): Likewise.
+	* localedata/locales/it_CH (LC_NUMERIC): Use â??copy "de_CH"â??.
+	* localedata/locales/it_IT (thousands_sep): Use ".".
+	(grouping): Use "3;3".
+
 2018-09-10  Joseph Myers  <joseph@codesourcery.com>
 
 	* scripts/build-many-glibcs.py (Context.add_all_configs): Add
diff --git a/localedata/locales/de_CH b/localedata/locales/de_CH
index 2556488..2603bf1 100644
--- a/localedata/locales/de_CH
+++ b/localedata/locales/de_CH
@@ -65,7 +65,7 @@ LC_MONETARY
 int_curr_symbol           "CHF "
 currency_symbol           "CHF"
 mon_decimal_point         "."
-mon_thousands_sep         "'"
+mon_thousands_sep         "<U2019>"
 mon_grouping              3;3
 positive_sign             ""
 negative_sign             "-"
@@ -81,7 +81,7 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             "."
-thousands_sep             "'"
+thousands_sep             "<U2019>"
 grouping                  3;3
 END LC_NUMERIC
 
diff --git a/localedata/locales/it_CH b/localedata/locales/it_CH
index 821cfa8..df3b299 100644
--- a/localedata/locales/it_CH
+++ b/localedata/locales/it_CH
@@ -62,9 +62,7 @@ copy  "de_CH"
 END LC_MONETARY
 
 LC_NUMERIC
-decimal_point             ","
-thousands_sep             "'"
-grouping                  3;3
+copy  "de_CH"
 END LC_NUMERIC
 
 LC_TIME
diff --git a/localedata/locales/it_IT b/localedata/locales/it_IT
index 56140dd..de457f0 100644
--- a/localedata/locales/it_IT
+++ b/localedata/locales/it_IT
@@ -88,8 +88,8 @@ END LC_MONETARY
 
 LC_NUMERIC
 decimal_point             ","
-thousands_sep             ""
-grouping                  0;0
+thousands_sep             "."
+grouping                  3;3
 END LC_NUMERIC
 
 LC_TIME

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

Summary of changes:
 ChangeLog                |   10 ++++++++++
 localedata/locales/de_CH |    4 ++--
 localedata/locales/it_CH |    4 +---
 localedata/locales/it_IT |    4 ++--
 4 files changed, 15 insertions(+), 7 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]