From patchwork Thu Oct 26 09:02:56 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike FABIAN X-Patchwork-Id: 830545 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-86378-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="YoUIKVtG"; 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 3yN1JD6q49z9t3n for ; Thu, 26 Oct 2017 20:03:24 +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=uCjoGFSQTXA+Hb5gi7JeCfAHWzjpC HB4mQhgzNpD6zF0/G7oXYZLv8uYFGXn60a2ITeHYiFny2AujNSfnjY4BLagldLdm t1fUIHH4MvVYL77PLt5G9aoY4BeUXOowbZPF3X1Dr5TiCoRaGi+wxnnDf0iN1uyY CLHcBHeMalGDXY= 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=GPHUpOIfrHqmesTFU0ny4LgQGC0=; b=YoU IKVtGvLg8tK/bNKlm6nUbobAV9C8SwdyK2dw5Shq2XTQjz7n2Dkz7eLnLY8nzGTx YxKo6PALBNgjGXy4iSqgc/HR7nXy/ScaypJtrhV4n1smwpTLooZWMS+6LpQHrn8u Jy7fBL9sQMnpvxbl4Vtn3uLHNj7RhzbQC1SPs9+g= Received: (qmail 120299 invoked by alias); 26 Oct 2017 09:03:16 -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 120216 invoked by uid 89); 26 Oct 2017 09:03:05 -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=Hx-languages-length:1717 X-HELO: mx1.redhat.com DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 567257D0D5 Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=mfabian@redhat.com From: Mike FABIAN To: GNU C Library Subject: [committed, PATCH] brx_IN locale: Fix yesexpr and noexpr Date: Thu, 26 Oct 2017 11:02:56 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 * localedata/locales/brx_IN (LC_MESSAGES): Fix yesexpr and noexpr (Use first letters of yesstr and nostr correctly instead of using full words). From 17e78edb814dfd90328efbc984e37cd4f70ef251 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Wed, 25 Oct 2017 10:40:20 +0200 Subject: [PATCH 16/19] brx_IN locale: Fix yesexpr and noexpr * localedata/locales/brx_IN (LC_MESSAGES): Fix yesexpr and noexpr (Use first letters of yesstr and nostr correctly instead of using full words). --- ChangeLog | 6 ++++++ localedata/locales/brx_IN | 6 ++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9a555db69b..3812f3fa5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-10-25 Mike FABIAN + + * localedata/locales/brx_IN (LC_MESSAGES): Fix yesexpr and noexpr + (Use first letters of yesstr and nostr correctly instead of using + full words). + 2017-10-25 Mike FABIAN * localedata/locales/ta_IN (LC_MESSAGES): Fix yesexpr and noexpr diff --git a/localedata/locales/brx_IN b/localedata/locales/brx_IN index c167e51f22..b9c4db4bbb 100644 --- a/localedata/locales/brx_IN +++ b/localedata/locales/brx_IN @@ -137,10 +137,8 @@ END LC_TIME LC_MESSAGES -yesexpr "/ -" -noexpr "/ -" +yesexpr "^[+1yY]" +noexpr "^[-0nN]" yesstr "" nostr "" END LC_MESSAGES -- 2.14.2