diff mbox series

[COMMITTED] kl_GL: Update the month names and date formats (bug 23740).

Message ID 710432012.808966.1538995371029@poczta.nazwa.pl
State New
Headers show
Series [COMMITTED] kl_GL: Update the month names and date formats (bug 23740). | expand

Commit Message

Rafal Luzynski Oct. 8, 2018, 10:42 a.m. UTC
This is my second patch to kl_GL language and I don't plan more updates
at the moment.  Again, the same question as previously: is it OK to
backport this (along with the previous one) to 2.28?  Answering the
possible questions: yes, it introduces the nominative/relative grammar
cases and thus causes most of the month names longer if used when
formatting a full date, the longest "septemberi" changing to "septembarip".
Therefore I understand if the answer is "no".

Carlos, your opinion?

Regards,

Rafal

Comments

Carlos O'Donell Oct. 8, 2018, 6:07 p.m. UTC | #1
On 10/8/18 6:42 AM, Rafal Luzynski wrote:
> This is my second patch to kl_GL language and I don't plan more updates
> at the moment.  Again, the same question as previously: is it OK to
> backport this (along with the previous one) to 2.28?  Answering the
> possible questions: yes, it introduces the nominative/relative grammar
> cases and thus causes most of the month names longer if used when
> formatting a full date, the longest "septemberi" changing to "septembarip".
> Therefore I understand if the answer is "no".
> 
> Carlos, your opinion?

The patch itself looks good for master.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>

As for backporting to 2.28, I would not suggest it because the names get
longer and this might impact UI display of the names.
Rafal Luzynski Oct. 8, 2018, 10:34 p.m. UTC | #2
8.10.2018 20:07 Carlos O'Donell <carlos@redhat.com> wrote:
> [...]
> The patch itself looks good for master.
>
> Reviewed-by: Carlos O'Donell <carlos@redhat.com>

Thank you, Carlos.  Unfortunately, as the patch is already committed,
I cannot include your "Reviewed-by" tag.  But I appreciate it.

> As for backporting to 2.28, I would not suggest it because the names get
> longer and this might impact UI display of the names.

That's OK.  Therefore I'm backporting only the other patch which you
have already agreed to backport:

https://sourceware.org/ml/libc-alpha/2018-10/msg00062.html

Regards,

Rafal
diff mbox series

Patch

From a68ec8eac27ba5bed195bf574fdc0f391cde6fbf Mon Sep 17 00:00:00 2001
From: Rafal Luzynski <digitalfreak@lingonborough.com>
Date: Fri, 5 Oct 2018 22:52:51 +0200
Subject: [PATCH] kl_GL: Update the month names and date formats (bug 23740).

Month names as provided by Oqaasileriffik, the official Greenlandic
language regulator.  They have recently reached the consensus regarding
the orthography of the month names.

Date formats updated to match the correct Greenlandic order which is MDY.

	[BZ #23740]
	* localedata/locales/kl_GL (mon): Update, the relative case.
	(alt_mon): Add, fill with month names in the nominative case.
	(d_t_fmt): Set to "%a %b %d %Y %T %Z".
	(d_fmt): Set to "%b %d %Y".
---
 ChangeLog                |  8 ++++++++
 localedata/locales/kl_GL | 40 ++++++++++++++++++++++++++--------------
 2 files changed, 34 insertions(+), 14 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 4c865ab..70782a6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@ 
+2018-10-08  Rafal Luzynski  <digitalfreak@lingonborough.com>
+
+	[BZ #23740]
+	* localedata/locales/kl_GL (mon): Update, the relative case.
+	(alt_mon): Add, fill with month names in the nominative case.
+	(d_t_fmt): Set to "%a %b %d %Y %T %Z".
+	(d_fmt): Set to "%b %d %Y".
+
 2018-10-04  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/unix/sysv/linux/hppa/bits/mman.h: Include
diff --git a/localedata/locales/kl_GL b/localedata/locales/kl_GL
index 5723ce7..986d252 100644
--- a/localedata/locales/kl_GL
+++ b/localedata/locales/kl_GL
@@ -87,20 +87,32 @@  abmon    "jan";"feb";/
          "jul";"aug";/
          "sep";"okt";/
          "nov";"dec"
-mon      "januari";/
-         "februari";/
-         "martsi";/
-         "aprili";/
-         "maji";/
-         "juni";/
-         "juli";/
-         "augustusi";/
-         "septemberi";/
-         "oktoberi";/
-         "novemberi";/
-         "decemberi"
-d_t_fmt     "%a %d %b %Y %T %Z"
-d_fmt       "%d %b %Y"
+alt_mon  "januaari";/
+         "februaari";/
+         "marsi";/
+         "apriili";/
+         "maaji";/
+         "juuni";/
+         "juuli";/
+         "aggusti";/
+         "septembari";/
+         "oktobari";/
+         "novembari";/
+         "decembari"
+mon      "januaarip";/
+         "februaarip";/
+         "marsip";/
+         "apriilip";/
+         "maajip";/
+         "juunip";/
+         "juulip";/
+         "aggustip";/
+         "septembarip";/
+         "oktobarip";/
+         "novembarip";/
+         "decembarip"
+d_t_fmt     "%a %b %d %Y %T %Z"
+d_fmt       "%b %d %Y"
 t_fmt       "%T"
 am_pm       "";""
 t_fmt_ampm  ""
-- 
2.7.5