diff options
author | Mike FABIAN <mfabian@redhat.com> | 2017-10-27 10:53:35 +0200 |
---|---|---|
committer | Mike FABIAN <mfabian@redhat.com> | 2017-10-27 10:53:35 +0200 |
commit | 1e5971ec1452784d6cb59539442d92b7020378d5 (patch) | |
tree | d77d21d7607d7814bf2443cd583626b703bea2c9 | |
parent | bc5fc7de2115847d9ed312a41713c6a4c724f3dd (diff) | |
download | glibc-1e5971ec1452784d6cb59539442d92b7020378d5.zip glibc-1e5971ec1452784d6cb59539442d92b7020378d5.tar.gz glibc-1e5971ec1452784d6cb59539442d92b7020378d5.tar.bz2 |
Fix all remaining issues of [BZ #15260]
[BZ #15260]
* localedata/locales/doi_IN (LC_MESSAGES): Match only for the
first letters of yesstr and nostr in yesexpr and noexpr,
not for the full words.
* localedata/locales/hne_IN (LC_MESSAGES): Likewise.
* localedata/locales/kok_IN (LC_MESSAGES): Likewise.
* localedata/locales/mr_IN (LC_MESSAGES): Likewise.
* localedata/locales/sat_IN (LC_MESSAGES): Likewise.
* localedata/locales/km_KH (LC_MESSAGES): Match also for the
first letters of yesstr and nostr in yesexpr and noexpr,
until now only English was matched in yesexpr and noexpr.
* localedata/locales/tl_PH (LC_MESSAGES): Use “copy "fil_PH"”
instead of “copy "en_US"”. CLDR has yesstr and nostr data for
fil but not for tl. As tl and fil are very similar, using fil
is probably better than using English.
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | localedata/locales/doi_IN | 4 | ||||
-rw-r--r-- | localedata/locales/hne_IN | 4 | ||||
-rw-r--r-- | localedata/locales/km_KH | 4 | ||||
-rw-r--r-- | localedata/locales/kok_IN | 4 | ||||
-rw-r--r-- | localedata/locales/mr_IN | 4 | ||||
-rw-r--r-- | localedata/locales/sat_IN | 4 | ||||
-rw-r--r-- | localedata/locales/tl_PH | 2 |
8 files changed, 31 insertions, 13 deletions
@@ -1,3 +1,21 @@ +2017-10-27 Mike FABIAN <mfabian@redhat.com> + + [BZ #15260] + * localedata/locales/doi_IN (LC_MESSAGES): Match only for the + first letters of yesstr and nostr in yesexpr and noexpr, + not for the full words. + * localedata/locales/hne_IN (LC_MESSAGES): Likewise. + * localedata/locales/kok_IN (LC_MESSAGES): Likewise. + * localedata/locales/mr_IN (LC_MESSAGES): Likewise. + * localedata/locales/sat_IN (LC_MESSAGES): Likewise. + * localedata/locales/km_KH (LC_MESSAGES): Match also for the + first letters of yesstr and nostr in yesexpr and noexpr, + until now only English was matched in yesexpr and noexpr. + * localedata/locales/tl_PH (LC_MESSAGES): Use “copy "fil_PH"” + instead of “copy "en_US"”. CLDR has yesstr and nostr data for + fil but not for tl. As tl and fil are very similar, using fil + is probably better than using English. + 2017-10-27 Thierry Vignaud <thierry.vignaud@gmail.com> [BZ #21706] diff --git a/localedata/locales/doi_IN b/localedata/locales/doi_IN index db215bc..dc057ff 100644 --- a/localedata/locales/doi_IN +++ b/localedata/locales/doi_IN @@ -136,8 +136,8 @@ END LC_TIME LC_MESSAGES -yesexpr "^(<U0911><U0939>|[+1yY])" -noexpr "^(<U0928><U093E>|[-0nN])" +yesexpr "^[+1yY<U0911>]" +noexpr "^[-0nN<U0928>]" yesstr "<U0911><U0939>" nostr "<U0928><U093E>" END LC_MESSAGES diff --git a/localedata/locales/hne_IN b/localedata/locales/hne_IN index 163e6a4..4da24ec 100644 --- a/localedata/locales/hne_IN +++ b/localedata/locales/hne_IN @@ -134,8 +134,8 @@ END LC_TIME LC_MESSAGES -yesexpr "^[+1yY<U0939><U0935>]" -noexpr "^[-0nN<U0928><U0907>]" +yesexpr "^[+1yY<U0939>]" +noexpr "^[-0nN<U0928>]" yesstr "<U0939><U0935>" nostr "<U0928><U0907>" END LC_MESSAGES diff --git a/localedata/locales/km_KH b/localedata/locales/km_KH index 55ee279..71bb41c 100644 --- a/localedata/locales/km_KH +++ b/localedata/locales/km_KH @@ -1000,8 +1000,8 @@ week 7;19971130;1 END LC_TIME LC_MESSAGES -yesexpr "^[+1yY]" -noexpr "^[-0nN]" +yesexpr "^[+1yY<U1794>]" +noexpr "^[-0nN<U1791>]" yesstr "<U1794><U17B6><U1791><U002F><U1785><U17B6><U179F>" nostr "<U1791><U17C1>" END LC_MESSAGES diff --git a/localedata/locales/kok_IN b/localedata/locales/kok_IN index a366570..e66a6f6 100644 --- a/localedata/locales/kok_IN +++ b/localedata/locales/kok_IN @@ -134,8 +134,8 @@ END LC_TIME LC_MESSAGES -yesexpr "^(<U0939><U092F>|[+1yY])" -noexpr "^(<U0928><U094D><U0939><U0940>|[-0nN])" +yesexpr "^[+1yY<U0939>]" +noexpr "^[-0nN<U0928>]" yesstr "<U0939><U092F>" nostr "<U0928><U094D><U0939><U0940>" END LC_MESSAGES diff --git a/localedata/locales/mr_IN b/localedata/locales/mr_IN index 3d10db8..af727cc 100644 --- a/localedata/locales/mr_IN +++ b/localedata/locales/mr_IN @@ -157,8 +157,8 @@ END LC_TIME LC_MESSAGES -yesexpr "^([+1yY]|<U0939><U094B>)" -noexpr "^([-0nN]|<U0928><U093E>)" +yesexpr "^[+1yY<U0939>]" +noexpr "^[-0nN<U0928>]" yesstr "<U0939><U094B><U092F>" nostr "<U0928><U093E><U0939><U0940>" END LC_MESSAGES diff --git a/localedata/locales/sat_IN b/localedata/locales/sat_IN index e460f74..c89c92e 100644 --- a/localedata/locales/sat_IN +++ b/localedata/locales/sat_IN @@ -136,8 +136,8 @@ END LC_TIME LC_MESSAGES -yesexpr "^(<U0939><U094B><U092F>|[+1yY])" -noexpr "^(<U092C><U093E><U0919>|[-0nN])" +yesexpr "^[+1yY<U0939>]" +noexpr "^[-0nN<U092C>]" yesstr "<U0939><U094B><U092F>" nostr "<U092C><U093E><U0919>" END LC_MESSAGES diff --git a/localedata/locales/tl_PH b/localedata/locales/tl_PH index 046e52f..16271be 100644 --- a/localedata/locales/tl_PH +++ b/localedata/locales/tl_PH @@ -143,7 +143,7 @@ week 7;19971130;1 END LC_TIME LC_MESSAGES -copy "en_US" +copy "fil_PH" END LC_MESSAGES LC_PAPER |