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: 830525 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-86365-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="y57klmZc"; 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 3yN0xW1L6qz9t3Z for ; Thu, 26 Oct 2017 19:47:10 +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=kvi6F/jNQhIsPJwHFwc6/SYmc4H09 IM66PhntwolEHUAo8cK/DRkWfrzwURpP1QfNQ009Orfgl+vS+gq8mbyxxst6eGwn eytBphM0mUiR1e0CRY5pFs+NslH6BXbh3QgDqvpcYB7XWNETCgUYygYrT7YNr2qy s/tAjiJyjVGrGc= 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=dCALsAwetLy5Rsv3hiw2n7XcPoY=; b=y57 klmZcu2nBPTq+pzw8SXn2Xqjf+rRh/Zc/orXf3u3bk2NoikGAZkCe13E7/PZ65Uc XYvnrBAhR6wI60JJU4JliRHXSghSQReVTSd6uhbpeiW9DcLkfPEAYIm49ZjRbEfw NCyEvzqPErrHhIk4aPeiT/UKak7rdrX7jnOLDDm4= 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