From patchwork Tue Oct 30 08:42:02 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike FABIAN X-Patchwork-Id: 29957 Received: (qmail 34925 invoked by alias); 30 Oct 2018 08:42:08 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 34901 invoked by uid 89); 30 Oct 2018 08:42:08 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 spammy=H*M:site, H*MI:site, HX-Received:sk:z14-v6m X-HELO: mail-wm1-f43.google.com Return-Path: From: Mike FABIAN To: GNU C Library Subject: [Comitted] Currency symbol should not preceed amount for ca_ES [BZ #23791] Date: Tue, 30 Oct 2018 09:42:02 +0100 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 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 From fec8bb7ca93d66cd2b019cfebcee6b3e6560ea36 Mon Sep 17 00:00:00 2001 From: Sergi Almacellas Abellana Date: Mon, 29 Oct 2018 13:38:30 +0100 Subject: [PATCH] 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 --- ChangeLog | 7 +++++++ localedata/locales/ca_ES | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 53fedc21f9..91104bb03f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2018-10-29 Sergi Almacellas Abellana + + [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 * conform/glibcconform.py: Do not import shutil. diff --git a/localedata/locales/ca_ES b/localedata/locales/ca_ES index 5d8297823e..0ba74ccf33 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 -- 2.19.1