From patchwork Thu Oct 26 08:50:14 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike FABIAN X-Patchwork-Id: 830528 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-86368-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="sEglvQ2D"; 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 3yN11L6xJnz9t3n for ; Thu, 26 Oct 2017 19:50:30 +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=Tj3oEkvHaR1I1Z8vy5ca6pUIaHu2V y0br0jt8Dj3h2+7erVJa+DfvvL0KKkzHKG3KAeKwRu7PII7Coe3gBgT+zASS3T2I eaTMXg+m9HU52nC7MMHuM6ru5Mf84FzJwVEjepul480IeSb2J8MbHyXx+nsyrnX2 5Wcod/nkL7cN6Y= 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=o8/wgPyPbKhL4KcNbUwUUhQK8xg=; b=sEg lvQ2DD6zI4/sSbKTu55J92PzJSrmRhrACdOVsNsjbT+zVnuoMjadr0dBEHCJ4KTV Gcz33lxILUgPLHfzs1OSzuuYrrcEYaJnq7rSDDTYOLdNj1o/Ippxk4VaS7dRxLzN WBhYrdYCOMBdHvJHaQwJBL0GQ1NgolyLXiuU65+w= Received: (qmail 33152 invoked by alias); 26 Oct 2017 08:50:24 -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 33116 invoked by uid 89); 26 Oct 2017 08:50:23 -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 BDEB4C0587C2 Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=mfabian@redhat.com From: Mike FABIAN To: GNU C Library Subject: [committed, PATCH] ti_IN locale: Fix noexpr Date: Thu, 26 Oct 2017 10:50:14 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 * localedata/locales/te_IN (LC_MESSAGES): Fix noexpr by including the first letter of nostr in the regexp. It agrees with CLDR now. Also make it more readable by using ASCII where possible. From 725bbb3e18debf1e46d15bbf11da6393035aad5c Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Wed, 25 Oct 2017 08:17:24 +0200 Subject: [PATCH 07/19] ti_IN locale: Fix noexpr * localedata/locales/te_IN (LC_MESSAGES): Fix noexpr by including the first letter of nostr in the regexp. It agrees with CLDR now. Also make it more readable by using ASCII where possible. --- ChangeLog | 6 ++++++ localedata/locales/te_IN | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8c89a5e9df..e77574aa33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-10-25 Mike FABIAN + + * localedata/locales/te_IN (LC_MESSAGES): Fix noexpr by including + the first letter of nostr in the regexp. It agrees with CLDR now. + Also make it more readable by using ASCII where possible. + 2017-10-24 Mike FABIAN * localedata/locales/km_KH (LC_MESSAGES): Fix yestr and nostr. diff --git a/localedata/locales/te_IN b/localedata/locales/te_IN index c9cccafde6..e178bede6d 100644 --- a/localedata/locales/te_IN +++ b/localedata/locales/te_IN @@ -149,8 +149,8 @@ END LC_TIME LC_MESSAGES -yesexpr "" -noexpr "" +yesexpr "^[+1yY]" +noexpr "^[-0nN]" yesstr "" nostr "" END LC_MESSAGES -- 2.14.2