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: 990683 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-96839-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="up4pLBV5"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 42klMV5vw9z9s4s for ; Tue, 30 Oct 2018 19:42:13 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=j0TRGc/gknO9TDdNMNwxUV6GOImnP 5PtGD8liQAoMTcNAjFPCiEBcirGVzIbUSx3t7TvW+a8Din2cT0aCu7E/mo1+MjOd LqJccjqSx0JPUYF7hsmPmQSexn8Ynp6NVaRmUi9OfeK2o+/3LSytL3HX+Svmq1fN Y5YQo8sIiGrq28= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=4rR7hSJBRSm8g38PIc19LM2UnZY=; b=up4 pLBV5Xwp2nZSxFshqODdzq8li33ejsQIwoLyDo+GRaDiMyH1VC2YaHSfE4Ipkx11 pD56T9UJx23R+yJpR0OsZPlW+14gL7BgHbnWj1yl6hNlkHX23yrATx4XC/0PyASz wwn+YsTO50DQCTPoTf0vVYrK3tNI0OpTEUfA8ALs= 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 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