diff options
author | Rafał Lużyński <digitalfreak@lingonborough.com> | 2019-12-30 11:58:18 +0100 |
---|---|---|
committer | Rafał Lużyński <digitalfreak@lingonborough.com> | 2020-01-02 11:45:45 +0100 |
commit | 75ba929987f6950dd008ef0f6270f1b21e9af511 (patch) | |
tree | 2ba4e842bba01da72e5c885b98ab918491649358 /localedata/locales/yo_NG | |
parent | cc47d5c5f53f6d845ac54698ae8929af15662c44 (diff) | |
download | glibc-75ba929987f6950dd008ef0f6270f1b21e9af511.tar.gz glibc-75ba929987f6950dd008ef0f6270f1b21e9af511.tar.xz glibc-75ba929987f6950dd008ef0f6270f1b21e9af511.zip |
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.
Diffstat (limited to 'localedata/locales/yo_NG')
-rw-r--r-- | localedata/locales/yo_NG | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/localedata/locales/yo_NG b/localedata/locales/yo_NG index a3102270bf..28773494aa 100644 --- a/localedata/locales/yo_NG +++ b/localedata/locales/yo_NG @@ -213,8 +213,10 @@ mon "O<U1E63><U00F9> <U1E62><U1EB9><U0301>r<U1EB9><U0301>";/ "O<U1E63><U00F9> <U1ECC><U0300>w<U00E0>r<U00E0>";/ "O<U1E63><U00F9> B<U00E9>l<U00FA>";/ "O<U1E63><U00F9> <U1ECC><U0300>p<U1EB9><U0300>" +% ọjọ́ %a, %d oṣù %b ọdún %Y %T +d_t_fmt "<U1ECD>j<U1ECD><U0301> %a, %d o<U1E63><U00F9> %b <U1ECD>d<U00FA>n %Y %T" % ọjọ́ %a, %d oṣù %b ọdún %Y %T %Z -d_t_fmt "<U1ECD>j<U1ECD><U0301> %a, %d o<U1E63><U00F9> %b <U1ECD>d<U00FA>n %Y %T %Z" +date_fmt "<U1ECD>j<U1ECD><U0301> %a, %d o<U1E63><U00F9> %b <U1ECD>d<U00FA>n %Y %T %Z" d_fmt "%d//%m//%y" t_fmt "%r" am_pm "AM";"PM" |