From patchwork Thu Oct 26 08:44:40 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike FABIAN X-Patchwork-Id: 23824 Received: (qmail 93782 invoked by alias); 26 Oct 2017 08:44:45 -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 93474 invoked by uid 89); 26 Oct 2017 08:44:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=AC_HTML_NONSENSE_TAGS, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=letters X-HELO: mx1.redhat.com DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 4360F2DA99C 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] bn_BD locale: Use only the first letters of the full yesstr and nostr in yesexpr and noexpr Date: Thu, 26 Oct 2017 10:44:40 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Using all characters of the full words for yes and no in yesexpr and noexpr makes no sense here, especially not because the words for yes and no share one character. * localedata/locales/bn_BD (LC_MESSAGES): Use only the first letters of the full yesstr and nostr in yesexpr and noexpr. From 3e79f758191d11e60cdf1975ece322831c73ede4 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Tue, 24 Oct 2017 11:56:18 +0200 Subject: [PATCH 03/19] bn_BD locale: Use only the first letters of the full yesstr and nostr in yesexpr and noexpr Using all characters of the full words for yes and no in yesexpr and noexpr makes no sense here, especially not because the words for yes and no share one character. * localedata/locales/bn_BD (LC_MESSAGES): Use only the first letters of the full yesstr and nostr in yesexpr and noexpr. --- ChangeLog | 5 +++++ localedata/locales/bn_BD | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0b04e9ce59..51457b63a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-10-24 Mike FABIAN + + * localedata/locales/bn_BD (LC_MESSAGES): Use only the first + letters of the full yesstr and nostr in yesexpr and noexpr. + 2017-10-24 Mike FABIAN * localedata/locales/an_ES (LC_MESSAGES): Add yesstr and nostr. diff --git a/localedata/locales/bn_BD b/localedata/locales/bn_BD index b220c215e8..f193595eee 100644 --- a/localedata/locales/bn_BD +++ b/localedata/locales/bn_BD @@ -144,8 +144,8 @@ first_weekday 6 END LC_TIME LC_MESSAGES -yesexpr "" -noexpr "" +yesexpr "^[+1yY]" +noexpr "^[-0nN]" yesstr "" nostr "" END LC_MESSAGES -- 2.14.2