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]

[PATCH COMMITTED] lv_LV locale: Correct the time part of d_t_fmt (bug 25324)


From: =?UTF-8?q?Rafa=C5=82=20Lu=C5=BCy=C5=84ski?=
 <digitalfreak@lingonborough.com>
Date: Mon, 30 Dec 2019 11:42:46 +0100

Currently d_t_fmt formats time as "plkst. %H un %M".  A quick Google
search says that "plkst." means "o’clock" and "un" means "and".
Also this format does not display seconds.

CLDR does not mention anything like that.  We have no reason to use
anything different than "%H:%M:%S".
---
 localedata/locales/lv_LV | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/localedata/locales/lv_LV b/localedata/locales/lv_LV
index a20cbdde46..8939f46484 100644
--- a/localedata/locales/lv_LV
+++ b/localedata/locales/lv_LV
@@ -182,7 +182,7 @@ mon      "janv<U0101>ris";/
          "oktobris";/
          "novembris";/
          "decembris"
-d_t_fmt  "%A, %Y. gada %e. %B, plkst. %H un %M"
+d_t_fmt  "%A, %Y. gada %e. %B, %H:%M:%S"
 d_fmt    "%Y.%m.%d."
 t_fmt    "%T"
 am_pm    "";""
-- 
2.21.0


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