diff options
author | Mike FABIAN <mfabian@redhat.com> | 2017-10-25 09:56:21 +0200 |
---|---|---|
committer | Mike FABIAN <mfabian@redhat.com> | 2017-10-25 10:49:36 +0200 |
commit | effc9e1d50912d4bc58e189ed30017bb596878b9 (patch) | |
tree | df4ec2f6ea1da5475c2a2f0c0069cbf222dac3fa | |
parent | 10320881d8ecd47b542b8e5ca42fdb1aa5516bbf (diff) | |
download | glibc-effc9e1d50912d4bc58e189ed30017bb596878b9.zip glibc-effc9e1d50912d4bc58e189ed30017bb596878b9.tar.gz glibc-effc9e1d50912d4bc58e189ed30017bb596878b9.tar.bz2 |
chr_US locale: Fix yesexpr and noexpr
* localedata/locales/chr_US (LC_MESSAGES): In yesexpr and noexpr,
match also for the contents of yesstr and nostr. As the first letter
of yesstr and nostr is equal, checking only for the first letter
is not enough.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | localedata/locales/chr_US | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,12 @@ 2017-10-25 Mike FABIAN <mfabian@redhat.com> + * localedata/locales/chr_US (LC_MESSAGES): In yesexpr and noexpr, + match also for the contents of yesstr and nostr. As the first letter + of yesstr and nostr is equal, checking only for the first letter + is not enough. + +2017-10-25 Mike FABIAN <mfabian@redhat.com> + * localedata/locales/ber_DZ (LC_MESSAGES): Use copy "kab_DZ", it is the same according to Belkacem Mohammed <belkacem77@gmail.com>. diff --git a/localedata/locales/chr_US b/localedata/locales/chr_US index 1fa25fb..5ff061a 100644 --- a/localedata/locales/chr_US +++ b/localedata/locales/chr_US @@ -98,8 +98,8 @@ week 7;19971130;1 END LC_TIME LC_MESSAGES -yesexpr "<U005E><U005B><U002B><U0031><U0079><U0059><U005D>" -noexpr "<U005E><U005B><U002D><U0030><U006E><U004E><U005D>" +yesexpr "^([+1yY]|<U13A5><U13A5>)" +noexpr "^([-0nN]|<U13A5><U13DD>)" yesstr "<U13A5><U13A5>" nostr "<U13A5><U13DD>" END LC_MESSAGES |