From patchwork Thu Oct 26 09:02:09 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike FABIAN X-Patchwork-Id: 830544 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-86377-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="LpRu4tK4"; 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 3yN1HD4b1Hz9t43 for ; Thu, 26 Oct 2017 20:02:32 +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=Ryw2MjYiOjCszO5i1kPrQ1Kwyv0bh pjCFKfM0ZbmDzigoJU/qwvivbXbrzzYj3+AT+Djflsx/PcmplcWNi8kPLit9GuaO sLaGIR0JKxuQPVWcItKu9wMt09CWwapnoZyll4nSW1OJZqoGureKbQzJI9nrMjPg Z5wnhPpuMlSbFs= 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=B1vPxYyZUMtHgs5WuPTTPsxnJ44=; b=LpR u4tK4WMf2Lnfa0zxTvZDNSWMLowR8V1XDuojMhtOOA7AVTOW7jjhzCQ1craNefwc mKSS7xbRc9RcNYkseSjA6mfPwi3sjPg93XKtgkK/zubn6w3IMX4anfiYheZXLWcY tNsCcfUiC7Z6Jl6SSuTch6jvQ1e78vl7SjIhC1Yg= Received: (qmail 115446 invoked by alias); 26 Oct 2017 09:02:26 -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 115403 invoked by uid 89); 26 Oct 2017 09:02:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=AC_HTML_NONSENSE_TAGS, 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=letters X-HELO: mx1.redhat.com DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 1104E7C82B Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=mfabian@redhat.com From: Mike FABIAN To: GNU C Library Subject: [committed, PATCH] ta_IN locale: Fix yesexpr and noexpr Date: Thu, 26 Oct 2017 11:02:09 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 * localedata/locales/ta_IN (LC_MESSAGES): Fix yesexpr and noexpr (Use first letters of yesstr and nostr correctly). From 74e7284fe1d4be0e7eb3eb3ba9908eb7d0f04e3f Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Wed, 25 Oct 2017 10:35:19 +0200 Subject: [PATCH 15/19] ta_IN locale: Fix yesexpr and noexpr * localedata/locales/ta_IN (LC_MESSAGES): Fix yesexpr and noexpr (Use first letters of yesstr and nostr correctly). --- ChangeLog | 5 +++++ localedata/locales/ta_IN | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a68d70bbc6..9a555db69b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-10-25 Mike FABIAN + + * localedata/locales/ta_IN (LC_MESSAGES): Fix yesexpr and noexpr + (Use first letters of yesstr and nostr correctly). + 2017-10-25 Mike FABIAN * localedata/locales/hi_IN (LC_MESSAGES): In yesexpr and noexpr, diff --git a/localedata/locales/ta_IN b/localedata/locales/ta_IN index 5963a264b7..e5d51149de 100644 --- a/localedata/locales/ta_IN +++ b/localedata/locales/ta_IN @@ -146,8 +146,8 @@ END LC_TIME LC_MESSAGES -yesexpr "" -noexpr "" +yesexpr "^[+1yY]" +noexpr "^[-0nN]" yesstr "" nostr "" END LC_MESSAGES -- 2.14.2