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.
This commit is contained in:
Rafał Lużyński 2019-12-30 11:58:18 +01:00
parent cc47d5c5f5
commit 75ba929987
204 changed files with 564 additions and 203 deletions

View File

@ -125,7 +125,10 @@ mon "Januarie";/
% "%Y" (year with century as a decimal number), % "%Y" (year with century as a decimal number),
% "%T" (24-hour clock time in format HH:MM:SS), % "%T" (24-hour clock time in format HH:MM:SS),
% "%Z" (Time zone name) % "%Z" (Time zone name)
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
% 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 - % Date representation to be referenced by the "%x" field descriptor -
% "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000).

View File

@ -96,7 +96,8 @@ day "Kwesida";/
"Fida";/ "Fida";/
"Memeneda" "Memeneda"
abday "Kwe";"Dwo";"Ben";"Wuk";"Yaw";"Fia";"Mem" abday "Kwe";"Dwo";"Ben";"Wuk";"Yaw";"Fia";"Mem"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%Y//%m//%d" d_fmt "%Y//%m//%d"
t_fmt "%r" t_fmt "%r"
% AM/PM time representation % AM/PM time representation

View File

@ -89,7 +89,8 @@ mon "chinero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"aviento" "aviento"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%Y" d_fmt "%d//%m//%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -124,7 +124,10 @@ am_pm "<U092A><U0942><U0930><U094D><U0935><U093E><U0939><U094D><U0928>";/
"<U0905><U092A><U0930><U093E><U0939><U094D><U0928>" "<U0905><U092A><U0930><U093E><U0939><U094D><U0928>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A %d %b %Y %I:%M:%S %p %Z" d_t_fmt "%A %d %b %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%A %d %b %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%-d//%-m//%y" d_fmt "%-d//%-m//%y"

View File

@ -127,7 +127,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -131,7 +131,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -136,7 +136,10 @@ mon "<U062C><U0627><U0646><U0641><U064A>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -134,7 +134,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -100,7 +100,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";"<U0641><U0628><U0631><U0627><
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A %d %B %Y %I:%M:%S %p %Z" d_t_fmt "%A %d %B %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%A %d %B %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%-d//%-m//%y" d_fmt "%-d//%-m//%y"

View File

@ -136,7 +136,10 @@ mon "<U0643><U0627><U0646><U0648><U0646> <U0627><U0644><U062B><U0627><U0
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -148,7 +148,10 @@ mon "<U0643><U0627><U0646><U0648><U0646> <U0627><U0644>/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -130,7 +130,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -147,7 +147,10 @@ mon "<U0643><U0627><U0646><U0648><U0646> <U0627><U0644>/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -130,7 +130,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -136,7 +136,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %H:%M:%S" d_t_fmt "%d %b, %Y %H:%M:%S"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %H:%M:%S"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -130,7 +130,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -130,7 +130,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -298,7 +298,8 @@ END LC_NUMERIC
LC_TIME LC_TIME
d_t_fmt "%A %e %B %Y %k:%M:%S" d_t_fmt "%A %e %B %Y %k:%M:%S"
date_fmt "%A %e %B %Y %Z %k:%M:%S"
d_fmt "%A %e %B %Y" d_fmt "%A %e %B %Y"
t_fmt "%k:%M:%S" t_fmt "%k:%M:%S"
t_fmt_ampm "%k:%M:%S" t_fmt_ampm "%k:%M:%S"

View File

@ -136,7 +136,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -135,7 +135,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -147,7 +147,10 @@ mon "<U0643><U0627><U0646><U0648><U0646> <U0627><U0644>/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -136,7 +136,10 @@ mon "<U062C><U0627><U0646><U0641><U064A>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -130,7 +130,10 @@ mon "<U064A><U0646><U0627><U064A><U0631>";/
am_pm "<U0635>";"<U0645>" am_pm "<U0635>";"<U0645>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%d %b, %Y %Z %I:%M:%S %p" d_t_fmt "%d %b, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%d %b, %Y %Z %I:%M:%S %p"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%d %b, %Y" d_fmt "%d %b, %Y"

View File

@ -103,7 +103,8 @@ mon "<U099C><U09BE><U09A8><U09C1><U09F1><U09BE><U09F0><U09C0>";/
"<U09A1><U09BF><U099A><U09C7><U09AE><U09CD><U09AC><U09F0>" "<U09A1><U09BF><U099A><U09C7><U09AE><U09CD><U09AC><U09F0>"
d_fmt "%e-%m-%Y" d_fmt "%e-%m-%Y"
t_fmt "%I.%M.%S %p" t_fmt "%I.%M.%S %p"
d_t_fmt "%e %B, %Y %I.%M.%S %p %Z" d_t_fmt "%e %B, %Y %I.%M.%S %p"
date_fmt "%e %B, %Y %I.%M.%S %p %Z"
am_pm "<U09AA><U09C2><U09F0><U09CD><U09AC><U09CD><U09AC><U09BE><U09B9><U09CD><U09A8>";"<U0985><U09AA><U09F0><U09BE><U09B9><U09CD><U09A8>" am_pm "<U09AA><U09C2><U09F0><U09CD><U09AC><U09CD><U09AC><U09BE><U09B9><U09CD><U09A8>";"<U0985><U09AA><U09F0><U09BE><U09B9><U09CD><U09A8>"
t_fmt_ampm "%I.%M.%S %p" t_fmt_ampm "%I.%M.%S %p"
week 7;19971130;1 week 7;19971130;1

View File

@ -108,7 +108,8 @@ alt_mon "xineru";/
"ochobre";/ "ochobre";/
"payares";/ "payares";/
"avientu" "avientu"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
% Month names in genitive form: % Month names in genitive form:

View File

@ -120,7 +120,10 @@ abday "tum";/
% "%Y" (year with century as a decimal number), % "%Y" (year with century as a decimal number),
% "%T" (24-hour clock time in format HH:MM:SS), % "%T" (24-hour clock time in format HH:MM:SS),
% "%Z" (Time zone name) % "%Z" (Time zone name)
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
% 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 - % Date representation to be referenced by the "%x" field descriptor -
% "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000).

View File

@ -217,7 +217,8 @@ abmon "Yan";/
"Okt";/ "Okt";/
"Noy";/ "Noy";/
"Dek" "Dek"
d_t_fmt "%A, %d %B %Y %T" d_t_fmt "%A, %d %B %Y %T"
date_fmt "%A, %d %B %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -188,7 +188,8 @@ abmon "<U0441><U0442><U0443>";/
"<U043A><U0430><U0441>";/ "<U043A><U0430><U0441>";/
"<U043B><U0456><U0441>";/ "<U043B><U0456><U0441>";/
"<U0441><U043D><U0435>" "<U0441><U043D><U0435>"
d_t_fmt "%a %d %b %Y %T" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -110,7 +110,8 @@ mon "studzienia";/
"listapada";/ "listapada";/
"<U015B>nie<U017E>nia" "<U015B>nie<U017E>nia"
am_pm "";"" am_pm "";""
d_t_fmt "%a %d %b %Y %T" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
t_fmt_ampm "" t_fmt_ampm ""

View File

@ -89,7 +89,8 @@ abday "Sun";/
"Sat" "Sat"
week 7;19971130;1 week 7;19971130;1
first_weekday 2 first_weekday 2
d_t_fmt "%a %d %b %Y %R %Z" d_t_fmt "%a %d %b %Y %R"
date_fmt "%a %d %b %Y %R %Z"
d_fmt "%m//%d//%Y" d_fmt "%m//%d//%Y"
% %T (HH:MM:SS) % %T (HH:MM:SS)
t_fmt "%T" t_fmt "%T"

View File

@ -217,7 +217,8 @@ abmon "Yan";/
"Okt";/ "Okt";/
"Noy";/ "Noy";/
"Dek" "Dek"
d_t_fmt "%A, %d %B %Y %T" d_t_fmt "%A, %d %B %Y %T"
date_fmt "%A, %d %B %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -168,7 +168,8 @@ abmon "Yan";/
"Okt";/ "Okt";/
"Noy";/ "Noy";/
"Dek" "Dek"
d_t_fmt "%A, %d %B %Y %T" d_t_fmt "%A, %d %B %Y %T"
date_fmt "%A, %d %B %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -272,7 +272,8 @@ grouping 3;3
END LC_NUMERIC END LC_NUMERIC
LC_TIME LC_TIME
d_t_fmt "%x (%a) %X %Z" d_t_fmt "%x (%a) %X"
date_fmt "%x (%a) %X %Z"
d_fmt "%e.%m.%Y" d_fmt "%e.%m.%Y"
t_fmt "%k:%M:%S" t_fmt "%k:%M:%S"
am_pm "";"" am_pm "";""

View File

@ -105,7 +105,10 @@ mon "January";/
am_pm "AM";"PM" am_pm "AM";"PM"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A %d %b %Y %I:%M:%S %p %Z" d_t_fmt "%A %d %b %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%A %d %b %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%-d//%-m//%y" d_fmt "%-d//%-m//%y"

View File

@ -111,7 +111,10 @@ am_pm "<U092A><U0942><U0930><U094D><U0935><U093E><U0939><U094D><U0928>";/
"<U0905><U092A><U0930><U093E><U0939><U094D><U0928>" "<U0905><U092A><U0930><U093E><U0939><U094D><U0928>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A %d %b %Y %I:%M:%S %p %Z" d_t_fmt "%A %d %b %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%A %d %b %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%-d//%-m//%y" d_fmt "%-d//%-m//%y"

View File

@ -95,8 +95,10 @@ abday "San";/
"Sar" "Sar"
% %
% Appropriate date and time representation % Appropriate date and time representation
% %A %d %b %Y%I:%M:%S %Z d_t_fmt "%A %d %b %Y %I:%M:%S %p"
d_t_fmt "%A %d %b %Y %I:%M:%S %p %Z" %
% Appropriate date and time representation for date(1)
date_fmt "%A %d %b %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%A %d %b %Y" d_fmt "%A %d %b %Y"

View File

@ -135,7 +135,8 @@ mon "<U099C><U09BE><U09A8><U09C1><U09AF><U09BC><U09BE><U09B0><U09C0>";/
"<U09A1><U09BF><U09B8><U09C7><U09AE><U09CD><U09AC><U09B0>" "<U09A1><U09BF><U09B8><U09C7><U09AE><U09CD><U09AC><U09B0>"
am_pm "<U09AA><U09C2><U09B0><U09CD><U09AC><U09BE><U09B9><U09CD><U09A3>";"<U0985><U09AA><U09B0><U09BE><U09B9><U09CD><U09A3>" am_pm "<U09AA><U09C2><U09B0><U09CD><U09AC><U09BE><U09B9><U09CD><U09A3>";"<U0985><U09AA><U09B0><U09BE><U09B9><U09CD><U09A3>"
d_t_fmt "%A %d %b %Y %I:%M:%S %p %Z" d_t_fmt "%A %d %b %Y %I:%M:%S %p"
date_fmt "%A %d %b %Y %I:%M:%S %p %Z"
d_fmt "%-d//%-m//%y" d_fmt "%-d//%-m//%y"
t_fmt "%I:%M:%S %p %Z" t_fmt "%I:%M:%S %p %Z"
t_fmt_ampm "%I:%M:%S %p %Z" t_fmt_ampm "%I:%M:%S %p %Z"

View File

@ -118,7 +118,10 @@ am_pm "<U09AA><U09C2><U09B0><U09CD><U09AC><U09BE><U09B9><U09CD><U09A3>";/
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A %d %b %Y %I:%M:%S %p %Z" d_t_fmt "%A %d %b %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%A %d %b %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%-d//%-m//%y" d_fmt "%-d//%-m//%y"

View File

@ -105,9 +105,14 @@ mon "<U0F5F><U0FB3><U0F0B><U0F56><U0F0B><U0F51><U0F44><U0F0B><U0F54><U0F0B>
% Appropriate date & time representation % Appropriate date & time representation
d_t_fmt "<U0F54><U0F66><U0FB1><U0F72><U0F0B><U0F63><U0F7C><U0025><U0079><U0F5F><U0F63><U0025><U006D><U0F5A><U0F7A><U0F66>/ d_t_fmt "<U0F54><U0F66><U0FB1><U0F72><U0F0B><U0F63><U0F7C>%y<U0F5F><U0F63>%m<U0F5A><U0F7A><U0F66>/
<U0025><U0064><U0F46><U0F74><U0F0B><U0F5A><U0F7C><U0F51><U0025><U0048><U0F40><U0F66><U0F62><U0F0B><U0F58>/ %d<U0F46><U0F74><U0F0B><U0F5A><U0F7C><U0F51>%H<U0F40><U0F66><U0F62><U0F0B><U0F58>/
<U0025><U004D><U0F40><U0F66><U0F62><U0F0B><U0F46><U0025><U0053>" %M<U0F40><U0F66><U0F62><U0F0B><U0F46>%S"
% Appropriate date & time representation for date(1)
date_fmt "<U0F54><U0F66><U0FB1><U0F72><U0F0B><U0F63><U0F7C>%y<U0F5F><U0F63>%m<U0F5A><U0F7A><U0F66>/
%d<U0F46><U0F74><U0F0B><U0F5A><U0F7C><U0F51>%H<U0F40><U0F66><U0F62><U0F0B><U0F58>/
%M<U0F40><U0F66><U0F62><U0F0B><U0F46>%S"
% Appropriate date representation % Appropriate date representation
d_fmt "<U0F54><U0F66><U0FB1><U0F72><U0F0B><U0F63><U0F7C><U0025><U0079>/ d_fmt "<U0F54><U0F66><U0FB1><U0F72><U0F0B><U0F63><U0F7C><U0025><U0079>/

View File

@ -134,7 +134,8 @@ mon "Genver";/
"Here";/ "Here";/
"Du";/ "Du";/
"Kerzu" "Kerzu"
d_t_fmt "D<U02BC>ar %A %d a viz %B %Y" d_t_fmt "D<U02BC>ar %A %d a viz %B %Y %T"
date_fmt "D<U02BC>ar %A %d a viz %B %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm " ";" " am_pm " ";" "

View File

@ -114,7 +114,10 @@ am_pm "<U092B><U0941><U0902>.";/
"<U092C><U0947><U0932><U093E><U0938><U0947>." "<U092C><U0947><U0932><U093E><U0938><U0947>."
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A %d %b %Y %I:%M:%S %p %Z" d_t_fmt "%A %d %b %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%A %d %b %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%-m//%-d//%y" d_fmt "%-m//%-d//%y"

View File

@ -123,7 +123,8 @@ mon "Januar";/
"Oktobar";/ "Oktobar";/
"Novembar";/ "Novembar";/
"Decembar" "Decembar"
d_t_fmt "%a %d %b %Y %T" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -148,7 +148,8 @@ mon "de gener";/
"d<U2019>octubre";/ "d<U2019>octubre";/
"de novembre";/ "de novembre";/
"de desembre" "de desembre"
d_t_fmt "%A, %-d %B de %Y, %T %Z" d_t_fmt "%A, %-d %B de %Y, %T"
date_fmt "%A, %-d %B de %Y, %T %Z"
d_fmt "%-d//%-m//%y" d_fmt "%-d//%-m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "a. m.";/ am_pm "a. m.";/

View File

@ -89,6 +89,7 @@ abday "<U041A><U04C0>";/
"<U041F><U04C0>";/ "<U041F><U04C0>";/
"<U0428><U043E>" "<U0428><U043E>"
d_t_fmt "%Y %d %b %a %T" d_t_fmt "%Y %d %b %a %T"
date_fmt "%Y %d %b %a %T %Z"
d_fmt "%Y.%d.%m" d_fmt "%Y.%d.%m"
t_fmt "%T" t_fmt "%T"
% %

View File

@ -87,7 +87,8 @@ mon "<U13A4><U13C3><U13B8><U13D4><U13C5>";/
"<U13DA><U13C2><U13C5><U13D7>";/ "<U13DA><U13C2><U13C5><U13D7>";/
"<U13C5><U13D3><U13D5><U13C6>";/ "<U13C5><U13D3><U13D5><U13C6>";/
"<U13A5><U13CD><U13A9><U13F1>" "<U13A5><U13CD><U13A9><U13F1>"
d_t_fmt "%a %d %b %Y %r %Z" d_t_fmt "%a %d %b %Y %r"
date_fmt "%a %d %b %Y %r %Z"
d_fmt "%m//%d//%Y" d_fmt "%m//%d//%Y"
t_fmt "%r" t_fmt "%r"
t_fmt_ampm "%I:%M:%S %p" t_fmt_ampm "%I:%M:%S %p"

View File

@ -175,7 +175,8 @@ abmon "Yan";/
"Okt";/ "Okt";/
"Noy";/ "Noy";/
"Dek" "Dek"
d_t_fmt "%a %d %b %Y %T" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "<U00DC>E";"<U00DC>S" am_pm "<U00DC>E";"<U00DC>S"

View File

@ -361,7 +361,8 @@ mon "ledna";/
week 7;19971130;4 week 7;19971130;4
first_weekday 2 first_weekday 2
d_t_fmt "%a<U00A0>%-d.<U00A0>%B<U00A0>%Y,<U00A0>%H:%M:%S<U00A0>%Z" d_t_fmt "%a<U00A0>%-d.<U00A0>%B<U00A0>%Y,<U00A0>%H:%M:%S"
date_fmt "%a<U00A0>%-d.<U00A0>%B<U00A0>%Y,<U00A0>%H:%M:%S<U00A0>%Z"
d_fmt "%-d.%-m.%Y" d_fmt "%-d.%-m.%Y"

View File

@ -183,7 +183,8 @@ mon "st<U00EB>cznika";/
"rujana";/ "rujana";/
"l<U00EB>stopadnika";/ "l<U00EB>stopadnika";/
"g<U00F2>dnika" "g<U00F2>dnika"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%Y-%m-%d" d_fmt "%Y-%m-%d"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -201,7 +201,8 @@ abmon "K<U0102>R";/
"JUP";/ "JUP";/
"C<U00DC>K";/ "C<U00DC>K";/
"RA<U0160>" "RA<U0160>"
d_t_fmt "%a %d %b %Y %T" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -114,7 +114,8 @@ mon "J<U00E4>nner";/
"Oktober";/ "Oktober";/
"November";/ "November";/
"Dezember" "Dezember"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%Y-%m-%d" d_fmt "%Y-%m-%d"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -114,7 +114,8 @@ mon "Januar";/
"Oktober";/ "Oktober";/
"November";/ "November";/
"Dezember" "Dezember"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%Y-%m-%d" d_fmt "%Y-%m-%d"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -116,7 +116,8 @@ mon "Januar";/
"Oktober";/ "Oktober";/
"November";/ "November";/
"Dezember" "Dezember"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -111,7 +111,8 @@ mon "Januar";/
"Oktober";/ "Oktober";/
"November";/ "November";/
"Dezember" "Dezember"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%Y-%m-%d" d_fmt "%Y-%m-%d"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -113,7 +113,10 @@ am_pm "<U0938><U091E><U0902>";/
"<U0938><U092C><U0947><U0930>" "<U0938><U092C><U0947><U0930>"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A %d %b %Y %I:%M:%S %p %Z" d_t_fmt "%A %d %b %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%A %d %b %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%-d//%-m//%y" d_fmt "%-d//%-m//%y"

View File

@ -205,7 +205,8 @@ mon "januara";/
"oktobra";/ "oktobra";/
"nowembra";/ "nowembra";/
"decembra" "decembra"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -127,7 +127,10 @@ mon "<U0796><U07AC><U0782><U07AA><U0787><U07A6><U0783><U07A9>";/
"<U0791><U07A8><U0790><U07AC><U0782><U07B0><U0784><U07A6><U0783>" "<U0791><U07A8><U0790><U07AC><U0782><U07B0><U0784><U07A6><U0783>"
% Date Time Format % Date Time Format
d_t_fmt "%Z %H:%M:%S %Y %b %d %a" d_t_fmt "%H:%M:%S %Y %b %d %a"
% Date Time Format for date(1)
date_fmt "%Z %H:%M:%S %Y %b %d %a"
% date Format. I have put this in reverse order to try to get the date % date Format. I have put this in reverse order to try to get the date
% in R->L order % in R->L order

View File

@ -2190,6 +2190,13 @@ d_t_fmt "<U0F54><U0F66><U0FB1><U0F72><U0F0B><U0F63><U0F7C>%y/
<U0F66><U0F62><U0F0B><U0F58>%M/ <U0F66><U0F62><U0F0B><U0F58>%M/
<U0F40><U0F66><U0F62><U0F0B><U0F46>%S" <U0F40><U0F66><U0F62><U0F0B><U0F46>%S"
% Appropriate date & time representation for date(1)
date_fmt "<U0F54><U0F66><U0FB1><U0F72><U0F0B><U0F63><U0F7C>%y/
<U0F5F><U0F63>%m<U0F5A><U0F7A><U0F66>%d/
<U0F46><U0F74><U0F0B><U0F5A><U0F7C><U0F51>%H<U0F40>/
<U0F66><U0F62><U0F0B><U0F58>%M/
<U0F40><U0F66><U0F62><U0F0B><U0F46>%S"
% Appropriate date representation % Appropriate date representation
d_fmt "<U0F54><U0F66><U0FB1><U0F72><U0F0B><U0F63><U0F7C>%y/ d_fmt "<U0F54><U0F66><U0FB1><U0F72><U0F0B><U0F63><U0F7C>%y/
<U0F5F><U0F63>%m<U0F5A><U0F7A><U0F66>%d" <U0F5F><U0F63>%m<U0F5A><U0F7A><U0F66>%d"

View File

@ -108,7 +108,8 @@ mon "January";/
"October";/ "October";/
"November";/ "November";/
"December" "December"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "AM";"PM" am_pm "AM";"PM"

View File

@ -116,7 +116,8 @@ mon "January";/
"October";/ "October";/
"November";/ "November";/
"December" "December"
d_t_fmt "%a %d %b %Y %r %Z" d_t_fmt "%a %d %b %Y %r"
date_fmt "%a %d %b %Y %r %Z"
d_fmt "%Y-%m-%d" d_fmt "%Y-%m-%d"
t_fmt "%r" t_fmt "%r"
am_pm "AM";"PM" am_pm "AM";"PM"

View File

@ -115,6 +115,7 @@ mon "January";/
"December" "December"
% date formats following ISO 8601-1988 % date formats following ISO 8601-1988
d_t_fmt "%Y-%m-%dT%T %Z" d_t_fmt "%Y-%m-%dT%T %Z"
date_fmt "%Y-%m-%dT%T %Z"
d_fmt "%Y-%m-%d" d_fmt "%Y-%m-%d"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -121,7 +121,10 @@ mon "January";"February";/
am_pm "AM";"PM" am_pm "AM";"PM"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A, %B %d, %Y %p%I:%M:%S %Z" d_t_fmt "%A, %B %d, %Y %p%I:%M:%S"
%
% Appropriate date and time representation for date(1)
date_fmt "%A, %B %d, %Y %p%I:%M:%S %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%A, %B %d, %Y" d_fmt "%A, %B %d, %Y"

View File

@ -107,7 +107,8 @@ mon "January";/
"October";/ "October";/
"November";/ "November";/
"December" "December"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -81,7 +81,8 @@ mon "January";/
"October";/ "October";/
"November";/ "November";/
"December" "December"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -102,7 +102,10 @@ mon "January";"February";/
am_pm "AM";"PM" am_pm "AM";"PM"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A %d %B %Y %I:%M:%S %p %Z" d_t_fmt "%A %d %B %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%A %d %B %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation (%x) % Appropriate date representation (%x)
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"

View File

@ -118,7 +118,7 @@ mon "January";/
"November";/ "November";/
"December" "December"
% Abreviated date and time representation to be referenced by the "%c" field descriptor - % Abbreviated date and time representation to be referenced by the "%c" field descriptor -
% %
% "%a" (short weekday name), % "%a" (short weekday name),
% "%d" (day of month as a decimal number), % "%d" (day of month as a decimal number),
@ -126,7 +126,10 @@ mon "January";/
% "%Y" (year with century as a decimal number), % "%Y" (year with century as a decimal number),
% "%T" (24-hour clock time in format HH:MM:SS), % "%T" (24-hour clock time in format HH:MM:SS),
% "%Z" (Time zone name) % "%Z" (Time zone name)
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
% 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 - % Date representation to be referenced by the "%x" field descriptor -
% "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000).

View File

@ -108,7 +108,8 @@ mon "January";/
"October";/ "October";/
"November";/ "November";/
"December" "December"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "AM";"PM" am_pm "AM";"PM"

View File

@ -124,7 +124,10 @@ mon "January";"February";/
am_pm "AM";"PM" am_pm "AM";"PM"
% %
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%A, %d %B, %Y %I:%M:%S %p %Z" d_t_fmt "%A, %d %B, %Y %I:%M:%S %p"
%
% Appropriate date and time representation for date(1)
date_fmt "%A, %d %B, %Y %I:%M:%S %p %Z"
% %
% Appropriate date representation % Appropriate date representation
d_fmt "%A, %d %B, %Y" d_fmt "%A, %d %B, %Y"

View File

@ -123,6 +123,9 @@ am_pm "AM";"PM"
% Appropriate date and time representation % Appropriate date and time representation
d_t_fmt "%a %d %b %Y %r" d_t_fmt "%a %d %b %Y %r"
% %
% Appropriate date and time representation for date(1)
date_fmt "%a %d %b %Y %r %Z"
%
% Appropriate date representation % Appropriate date representation
d_fmt "%d//%m//%Y" d_fmt "%d//%m//%Y"
% %

View File

@ -147,7 +147,7 @@ mon "January";/
"November";/ "November";/
"December" "December"
% Abreviated date and time representation to be referenced by the "%c" field descriptor - % Abbreviated date and time representation to be referenced by the "%c" field descriptor -
% %
% "%a" (short weekday name), % "%a" (short weekday name),
% "%d" (day of month as a decimal number), % "%d" (day of month as a decimal number),
@ -155,7 +155,10 @@ mon "January";/
% "%Y" (year with century as a decimal number), % "%Y" (year with century as a decimal number),
% "%T" (24-hour clock time in format HH:MM:SS), % "%T" (24-hour clock time in format HH:MM:SS),
% "%Z" (Time zone name) % "%Z" (Time zone name)
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
% 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 - % Date representation to be referenced by the "%x" field descriptor -
% "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000).

View File

@ -171,7 +171,8 @@ mon "Januaro";/
"Decembro" "Decembro"
am_pm "";"" am_pm "";""
t_fmt_ampm "" t_fmt_ampm ""
d_t_fmt "%a %d %b %Y %T %z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %z"
d_fmt "%Y-%m-%d" d_fmt "%Y-%m-%d"
t_fmt "%T" t_fmt "%T"
week 7;19971130;1 week 7;19971130;1

View File

@ -116,7 +116,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -114,7 +114,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -114,7 +114,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "AM";"PM" am_pm "AM";"PM"

View File

@ -116,7 +116,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -171,7 +171,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -116,7 +116,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -116,7 +116,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -116,7 +116,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -108,7 +108,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
t_fmt_ampm "%I:%M:%S %p" t_fmt_ampm "%I:%M:%S %p"

View File

@ -116,7 +116,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -114,7 +114,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
t_fmt_ampm "%I:%M:%S %p" t_fmt_ampm "%I:%M:%S %p"

View File

@ -108,7 +108,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -114,7 +114,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -116,7 +116,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -114,7 +114,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -114,7 +114,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -115,7 +115,8 @@ mon "enero";/
"octubre";/ "octubre";/
"noviembre";/ "noviembre";/
"diciembre" "diciembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "am";"pm" am_pm "am";"pm"

View File

@ -176,7 +176,8 @@ mon "jaanuar";/
% Suggested date formats % Suggested date formats
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -121,7 +121,8 @@ mon "urtarrila";/
"azaroa";/ "azaroa";/
"abendua" "abendua"
% YY-MM-DD % YY-MM-DD
d_t_fmt "%y-%m-%d %T %Z" d_t_fmt "%y-%m-%d %T"
date_fmt "%y-%m-%d %T %Z"
% dddddddddd, 19YYeko mmmmmmmren XXa % dddddddddd, 19YYeko mmmmmmmren XXa
% day of the week, year+eko month+ren day+a % day of the week, year+eko month+ren day+a
d_fmt "%a, %Y.eko %bren %da" d_fmt "%a, %Y.eko %bren %da"

View File

@ -89,7 +89,8 @@ abday "dew";/
"hbi" "hbi"
week 7;19971130;1 week 7;19971130;1
first_weekday 2 first_weekday 2
d_t_fmt "%a %d %b %Y %R %Z" d_t_fmt "%a %d %b %Y %R"
date_fmt "%a %d %b %Y %R %Z"
d_fmt "%d//%m//%Y" d_fmt "%d//%m//%Y"
t_fmt "%R" t_fmt "%R"
am_pm "subaka";"kikii<U0257>e" am_pm "subaka";"kikii<U0257>e"

View File

@ -143,7 +143,8 @@ mon "Enero";/
"Nobyembre";/ "Nobyembre";/
"Disyembre" "Disyembre"
% %
d_t_fmt "%a %d %b %Y %r %Z" d_t_fmt "%a %d %b %Y %r"
date_fmt "%a %d %b %Y %r %Z"
d_fmt "%m//%d//%y" d_fmt "%m//%d//%y"
t_fmt "%r" t_fmt "%r"
am_pm "N.U.";"N.H." am_pm "N.U.";"N.H."

View File

@ -98,7 +98,8 @@ mon "januar";/
"oktober";/ "oktober";/
"november";/ "november";/
"desember" "desember"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m-%Y" d_fmt "%d//%m-%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -115,7 +115,8 @@ mon "janvier";/
"octobre";/ "octobre";/
"novembre";/ "novembre";/
"d<U00E9>cembre" "d<U00E9>cembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%y" d_fmt "%d//%m//%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -112,7 +112,8 @@ mon "janvier";/
"octobre";/ "octobre";/
"novembre";/ "novembre";/
"d<U00E9>cembre" "d<U00E9>cembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%Y-%m-%d" d_fmt "%Y-%m-%d"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -99,7 +99,8 @@ mon "janvier";/
"octobre";/ "octobre";/
"novembre";/ "novembre";/
"d<U00E9>cembre" "d<U00E9>cembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d. %m. %y" d_fmt "%d. %m. %y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -131,7 +131,8 @@ mon "janvier";/
"octobre";/ "octobre";/
"novembre";/ "novembre";/
"d<U00E9>cembre" "d<U00E9>cembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d//%m//%Y" d_fmt "%d//%m//%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -115,7 +115,8 @@ mon "janvier";/
"octobre";/ "octobre";/
"novembre";/ "novembre";/
"d<U00E9>cembre" "d<U00E9>cembre"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -106,7 +106,8 @@ mon "Zen<U00E2>r";/
"Otubar";/ "Otubar";/
"Novembar";/ "Novembar";/
"Dicembar" "Dicembar"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d. %m. %y" d_fmt "%d. %m. %y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -116,7 +116,8 @@ mon "Jaunuwoa";/
"Oktoba";/ "Oktoba";/
"Nowamba";/ "Nowamba";/
"Dezamba" "Dezamba"
d_t_fmt "%a %d. %b %Y %T %Z" d_t_fmt "%a %d. %b %Y %T"
date_fmt "%a %d. %b %Y %T %Z"
d_fmt "%d.%m.%Y" d_fmt "%d.%m.%Y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

View File

@ -82,7 +82,8 @@ mon "Jannewaris";/
"Oktober";/ "Oktober";/
"Novimber";/ "Novimber";/
"Desimber" "Desimber"
d_t_fmt "%a %d %b %Y %T %Z" d_t_fmt "%a %d %b %Y %T"
date_fmt "%a %d %b %Y %T %Z"
d_fmt "%d-%m-%y" d_fmt "%d-%m-%y"
t_fmt "%T" t_fmt "%T"
am_pm "";"" am_pm "";""

Some files were not shown because too many files have changed in this diff Show More