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-232-gfec8bb7


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  fec8bb7ca93d66cd2b019cfebcee6b3e6560ea36 (commit)
      from  b6e7c449f9bb33943f10fdd8f3e539dceb136177 (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=fec8bb7ca93d66cd2b019cfebcee6b3e6560ea36

commit fec8bb7ca93d66cd2b019cfebcee6b3e6560ea36
Author: Sergi Almacellas Abellana <sergi@koolpi.com>
Date:   Mon Oct 29 13:38:30 2018 +0100

    Currency symbol should not preceed amount for [BZ #23791]
    
    CLDR also has the currency symbol after the amount for Catalan.
    
    Also set grouping in LC_NUMERIC to 3;3.
    
    Reviewed-by: Mike FABIAN <mfabian@redhat.com>

diff --git a/ChangeLog b/ChangeLog
index 53fedc2..91104bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2018-10-29  Sergi Almacellas Abellana <sergi@koolpi.com>
+
+	[BZ #23791]
+	* localedata/locales/ca_ES (LC_MONETARY): set p_cs_precedes and
+	n_cs_precedes to 0.
+	* localedata/locales/ca_ES (LC_MONETARY): set grouping to 3;3
+
 2018-10-29  Joseph Myers  <joseph@codesourcery.com>
 
 	* conform/glibcconform.py: Do not import shutil.
diff --git a/localedata/locales/ca_ES b/localedata/locales/ca_ES
index 5d82978..0ba74cc 100644
--- a/localedata/locales/ca_ES
+++ b/localedata/locales/ca_ES
@@ -77,9 +77,9 @@ positive_sign        ""
 negative_sign        "-"
 int_frac_digits      2
 frac_digits          2
-p_cs_precedes        1
+p_cs_precedes        0
 p_sep_by_space       1
-n_cs_precedes        1
+n_cs_precedes        0
 n_sep_by_space       1
 p_sign_posn          1
 n_sign_posn          1
@@ -88,7 +88,7 @@ END LC_MONETARY
 LC_NUMERIC
 decimal_point        ","
 thousands_sep        "."
-grouping             0;0
+grouping             3;3
 END LC_NUMERIC
 
 LC_TIME

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

Summary of changes:
 ChangeLog                |    7 +++++++
 localedata/locales/ca_ES |    6 +++---
 2 files changed, 10 insertions(+), 3 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]