From patchwork Thu Oct 26 08:46:58 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Mike FABIAN X-Patchwork-Id: 23825 Received: (qmail 24273 invoked by alias); 26 Oct 2017 08:47:04 -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 24257 invoked by uid 89); 26 Oct 2017 08:47:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No 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, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com EFDB315565 Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=mfabian@redhat.com From: Mike FABIAN To: GNU C Library Subject: [committed, PATCH] mr_IN locale: Fix yesstr and nostr and improve yesexpr and noexpr. Date: Thu, 26 Oct 2017 10:46:58 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 * localedata/locales/mr_IN (LC_MESSAGES): Fix yesstr and nostr and improve yesexpr and noexpr. The yesstr and nostr apparently came from CLDR. And CLDR has a bug there: these strings contain a U+0903 (which looks like a colon) instead of a real colon to separate the full words for “yes” and “no” from the single letter responses. From bab7b6b0a6474cf517a372aca2e2911ae907f96a Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Tue, 24 Oct 2017 14:06:05 +0200 Subject: [PATCH 04/19] mr_IN locale: Fix yesstr and nostr and improve yesexpr and noexpr. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * localedata/locales/mr_IN (LC_MESSAGES): Fix yesstr and nostr and improve yesexpr and noexpr. The yesstr and nostr apparently came from CLDR. And CLDR has a bug there: these strings contain a U+0903 (which looks like a colon) instead of a real colon to separate the full words for “yes” and “no” from the single letter responses. --- ChangeLog | 9 +++++++++ localedata/locales/mr_IN | 10 ++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 51457b63a1..ede09a9fbd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2017-10-24 Mike FABIAN + + * localedata/locales/mr_IN (LC_MESSAGES): Fix yesstr and nostr + and improve yesexpr and noexpr. The yesstr and nostr apparently + came from CLDR. And CLDR has a bug there: these strings contain + a U+0903 (which looks like a colon) instead of a real colon + to separate the full words for “yes” and “no” from the single + letter responses. + 2017-10-24 Mike FABIAN * localedata/locales/bn_BD (LC_MESSAGES): Use only the first diff --git a/localedata/locales/mr_IN b/localedata/locales/mr_IN index 04b1b4dec5..3d10db84dd 100644 --- a/localedata/locales/mr_IN +++ b/localedata/locales/mr_IN @@ -157,12 +157,10 @@ END LC_TIME LC_MESSAGES -yesexpr "/ -" -noexpr "/ -" -yesstr "" -nostr "" +yesexpr "^([+1yY]|)" +noexpr "^([-0nN]|)" +yesstr "" +nostr "" END LC_MESSAGES -- 2.14.2