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] hr_HR locale: Don’t use single code points for the digraphs in LC_TIME


            [BZ #10580]
            * localedata/locales/hr_HR (LC_TIME): Use two letters for the
            digraphs in the month and day names. Using single code points for
            digraphs is deprecated.  While there are dedicated Unicode
            codepoints, for the digraphs, these are included for backwards
            compatibility and modern texts use a sequence of Basic Latin
            characters. See: https://www.unicode.org/faq/ligature_digraph.html
            This makes the month and day names agree exactly with CLDR now,
            CLDR does not use the single code points for the digraphs either.

-- 
Mike FABIAN <mfabian@redhat.com>
>From 1f6d91f328b7699610210d7d56d2cc49d60e1c27 Mon Sep 17 00:00:00 2001
From: Mike FABIAN <mfabian@redhat.com>
Date: Mon, 4 Dec 2017 13:10:29 +0100
Subject: [PATCH 1/2] =?UTF-8?q?hr=5FHR=20locale:=20Don=E2=80=99t=20use=20s?=
 =?UTF-8?q?ingle=20code=20points=20for=20the=20digraphs=20in=20LC=5FTIME?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

	[BZ #10580]
	* localedata/locales/hr_HR (LC_TIME): Use two letters for the
	digraphs in the month and day names. Using single code points for
	digraphs is deprecated.  While there are dedicated Unicode
	codepoints, for the digraphs, these are included for backwards
	compatibility and modern texts use a sequence of Basic Latin
	characters. See: https://www.unicode.org/faq/ligature_digraph.html
	This makes the month and day names agree exactly with CLDR now,
	CLDR does not use the single code points for the digraphs either.
---
 ChangeLog                | 12 ++++++++++++
 localedata/locales/hr_HR | 18 +++++++++---------
 2 files changed, 21 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index ad05366a8e..758da6266d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2017-12-04  Mike FABIAN  <mfabian@redhat.com>
+
+	[BZ #10580]
+	* localedata/locales/hr_HR (LC_TIME): Use two letters for the
+	digraphs in the month and day names. Using single code points for
+	digraphs is deprecated.  While there are dedicated Unicode
+	codepoints, for the digraphs, these are included for backwards
+	compatibility and modern texts use a sequence of Basic Latin
+	characters. See: https://www.unicode.org/faq/ligature_digraph.html
+	This makes the month and day names agree exactly with CLDR now,
+	CLDR does not use the single code points for the digraphs either.
+
 2017-12-04  Chris Metcalf  <cmetcalf@mellanox.com>
 
 	* sysdeps/tile/libm-test-ulps: Update ca{cos,sin,tan}{,h} ulps.
diff --git a/localedata/locales/hr_HR b/localedata/locales/hr_HR
index a3b3a75387..9aaf803a4f 100644
--- a/localedata/locales/hr_HR
+++ b/localedata/locales/hr_HR
@@ -198,26 +198,26 @@ END LC_NUMERIC
 
 LC_TIME
 abday   "ned";"pon";"uto";"sri";"<U010D>et";"pet";"sub"
-day     "nedje<U01C9>a";/
-        "ponedje<U01C9>ak";/
+day     "nedjelja";/
+        "ponedjeljak";/
         "utorak";/
         "srijeda";/
         "<U010D>etvrtak";/
         "petak";/
         "subota"
-abmon   "sij";"ve<U01C9>";/
+abmon   "sij";"velj";/
         "o<U017E>u";"tra";/
         "svi";"lip";/
         "srp";"kol";/
         "ruj";"lis";/
         "stu";"pro"
-mon     "sije<U010D>a<U01CC>";/
-        "ve<U01C9>a<U010D>a";/
+mon     "sije<U010D>anj";/
+        "velja<U010D>a";/
         "o<U017E>ujak";/
-        "trava<U01CC>";/
-        "sviba<U01CC>";/
-        "lipa<U01CC>";/
-        "srpa<U01CC>";/
+        "travanj";/
+        "svibanj";/
+        "lipanj";/
+        "srpanj";/
         "kolovoz";/
         "rujan";/
         "listopad";/
-- 
2.14.3


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