This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed, PATCH] km_KH locale: Fix yesstr and nostr.


       * localedata/locales/km_KH (LC_MESSAGES): Fix yestr and nostr.
        The yesstr and nostr apparently came from CLDR. And CLDR has a bug there:
        these strings contain a U+17D6 (which somewhat looks like a colon)
        instead of a real colon to separate the full words for “yes”
        and “no” from the single letter responses.
        
https://unicode.org/cldr/trac/ticket/10726#comment:1

-- 
Mike FABIAN <mfabian@redhat.com>

>From fe043d8af2aac18246eac87b6ace24bf021806e7 Mon Sep 17 00:00:00 2001
From: Mike FABIAN <mfabian@redhat.com>
Date: Tue, 24 Oct 2017 16:37:36 +0200
Subject: [PATCH 06/19] km_KH locale: Fix yesstr and nostr.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

	* localedata/locales/km_KH (LC_MESSAGES): Fix yestr and nostr.
	The yesstr and nostr apparently	came from CLDR. And CLDR has a bug there:
	these strings contain a U+17D6 (which somewhat looks like a colon)
	instead of a real colon to separate the full words for â??yesâ??
	and â??noâ?? from the single letter responses.
---
 ChangeLog                | 8 ++++++++
 localedata/locales/km_KH | 4 ++--
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f209a1b18b..8c89a5e9df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2017-10-24  Mike FABIAN  <mfabian@redhat.com>
+
+	* localedata/locales/km_KH (LC_MESSAGES): Fix yestr and nostr.
+	The yesstr and nostr apparently	came from CLDR. And CLDR has a bug there:
+	these strings contain a U+17D6 (which somewhat 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  <mfabian@redhat.com>
 
 	* localedata/locales/ka_GE (LC_MESSAGES): Fix yesexp to make
diff --git a/localedata/locales/km_KH b/localedata/locales/km_KH
index 7e62bd6d0d..55ee279a28 100644
--- a/localedata/locales/km_KH
+++ b/localedata/locales/km_KH
@@ -1002,8 +1002,8 @@ END LC_TIME
 LC_MESSAGES
 yesexpr "^[+1yY]"
 noexpr  "^[-0nN]"
-yesstr  "<U1794><U17B6><U1791><U002F><U1785><U17B6><U179F><U200B><U17D6><U0020><U0079>"
-nostr   "<U1791><U17C1><U200B><U17D6><U0020><U006E>"
+yesstr  "<U1794><U17B6><U1791><U002F><U1785><U17B6><U179F>"
+nostr   "<U1791><U17C1>"
 END LC_MESSAGES
 
 LC_PAPER
-- 
2.14.2


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]