diff options
author | Claude Paroz <claude@2xlibre.net> | 2017-11-06 14:14:28 +0100 |
---|---|---|
committer | Mike FABIAN <mfabian@redhat.com> | 2017-11-07 15:28:59 +0100 |
commit | d8301314bca5cd46ff157958d367df41939eaf6b (patch) | |
tree | 12899c4248413346ec0111f3f9f97073c6ed7a3c | |
parent | 06be6368da16104be51ebf23f7c68a51f321673f (diff) | |
download | glibc-d8301314bca5cd46ff157958d367df41939eaf6b.zip glibc-d8301314bca5cd46ff157958d367df41939eaf6b.tar.gz glibc-d8301314bca5cd46ff157958d367df41939eaf6b.tar.bz2 |
an_ES, kab_DZ, om_ET locales: Escape slashes in d_fmt [BZ #22403]
[BZ #22403]
* localedata/locales/an_ES (LC_TIME): Fix wrong d_fmt, / needs
to be escaped.
* localedata/locales/kab_DZ (LC_TIME): Fix wrong d_fmt, / needs
to be escaped.
* localedata/locales/om_ET (LC_TIME): Fix wrong d_fmt, / needs
to be escaped.
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | localedata/locales/an_ES | 2 | ||||
-rw-r--r-- | localedata/locales/kab_DZ | 2 | ||||
-rw-r--r-- | localedata/locales/om_ET | 2 |
4 files changed, 13 insertions, 3 deletions
@@ -1,3 +1,13 @@ +2017-11-07 Claude Paroz <claude@2xlibre.net> + + [BZ #22403] + * localedata/locales/an_ES (LC_TIME): Fix wrong d_fmt, / needs + to be escaped. + * localedata/locales/kab_DZ (LC_TIME): Fix wrong d_fmt, / needs + to be escaped. + * localedata/locales/om_ET (LC_TIME): Fix wrong d_fmt, / needs + to be escaped. + 2017-11-07 Adhemerval Zanella <adhemerval.zanella@linaro.org> [BZ #22298] diff --git a/localedata/locales/an_ES b/localedata/locales/an_ES index 172f632..7929402 100644 --- a/localedata/locales/an_ES +++ b/localedata/locales/an_ES @@ -105,7 +105,7 @@ mon "chinero";/ "nobiembre";/ "abiento" d_t_fmt "%a %d %b %Y %T %Z" -d_fmt "%d/%m/%y" +d_fmt "%d//%m//%y" t_fmt "%T" am_pm "";"" t_fmt_ampm "" diff --git a/localedata/locales/kab_DZ b/localedata/locales/kab_DZ index ced3402..a165f53 100644 --- a/localedata/locales/kab_DZ +++ b/localedata/locales/kab_DZ @@ -91,7 +91,7 @@ abday "Ace";/ % Appropriate date and time representation d_t_fmt "%a %d %b %Y %T %Z" % Appropriate date representation -d_fmt "%d/%m/%Y" +d_fmt "%d//%m//%Y" % Appropriate time representation t_fmt "%T" % Appropriate 12 h time representation diff --git a/localedata/locales/om_ET b/localedata/locales/om_ET index 1c8ed6e..7c81c17 100644 --- a/localedata/locales/om_ET +++ b/localedata/locales/om_ET @@ -214,7 +214,7 @@ mon "Amajjii";/ am_pm "WD";"WB" % % Appropriate date representation (%x) -d_fmt "%d/%m/%Y" +d_fmt "%d//%m//%Y" % % Appropriate time representation (%X) t_fmt "%l:%M:%S" |