From 75ba929987f6950dd008ef0f6270f1b21e9af511 Mon Sep 17 00:00:00 2001 From: Rafał Lużyński Date: Mon, 30 Dec 2019 11:58:18 +0100 Subject: Multiple locales: Add date_fmt (bug 24054) It is not specified what should be the content of d_t_fmt and date_fmt but in the built-in C locale those fields have only one difference: date_fmt contains "%Z" (the current time zone) while d_t_fmt does not. For most of the locales this commit does the following operation: copy d_t_fmt to date_fmt, and then remove "%Z" from d_t_fmt. If "%Z" was originally missing from d_t_fmt add it to date_fmt. It also corrects comments where necessary. Exceptions: * In bo_CN, dz_BT, and km_KH "%Z" has not been added to date_fmt because it was too difficult. In these locales date_fmt has been set to the copy of d_t_fmt. * In en_DK "%Z" has not been removed from d_t_fmt in order to preserve the conformance with the standard mentioned in the comment. The command to identify and initially edit the locales that need the update was: for i in `grep -lw d_t_fmt *` do if ! grep -qw date_fmt $i ; then awk '/d_t_fmt/ { print $0; gsub("d_t_fmt", "date_fmt"); } //{ print $0 }' < $i > $i.next mv $i.next $i fi done and then each file was further edited manually. --- localedata/locales/ve_ZA | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'localedata/locales/ve_ZA') diff --git a/localedata/locales/ve_ZA b/localedata/locales/ve_ZA index 6b80455c98..4ca18ee240 100644 --- a/localedata/locales/ve_ZA +++ b/localedata/locales/ve_ZA @@ -129,8 +129,8 @@ mon "Phando";/ "ara";/ "Nyendavhusiku" -% Abreviated date and time representation to be referenced by the "%c" field descriptor - -d_t_fmt "%a %d %b %Y %T %Z" +% Abbreviated date and time representation to be referenced by the "%c" field descriptor - +d_t_fmt "%a %d %b %Y %T" % % "%a" (short weekday name), % "%d" (day of month as a decimal number), @@ -139,6 +139,9 @@ d_t_fmt "%a %d %b %Y %T %Z" % "%T" (24-hour clock time in format HH:MM:SS), % "%Z" (Time zone name) +% Abbreviated date and time representation to be used by date(1) +date_fmt "%a %d %b %Y %T %Z" + % Date representation to be referenced by the "%x" field descriptor - d_fmt "%d//%m//%Y" % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). -- cgit 1.4.1