mirror of git://sourceware.org/git/glibc.git
Fix decimal point and thousands separator in es_CU locale to agree with CLDR.
[BZ #15332] * locales/es_CU (LC_MONETARY): use “,” for mon_decimal_point and “.” for mon_thousands_sep (to agree with CLDR) * locales/es_CU (LC_NUMERIC): Likewise.
This commit is contained in:
parent
d6e290a6ca
commit
8715f25630
|
@ -1,3 +1,11 @@
|
||||||
|
2017-08-31 Mike FABIAN <mfabian@redhat.com>
|
||||||
|
|
||||||
|
[BZ #15332]
|
||||||
|
* locales/es_CU (LC_MONETARY): use “,” for mon_decimal_point
|
||||||
|
and “.” for mon_thousands_sep (to agree with CLDR)
|
||||||
|
* locales/es_CU (LC_NUMERIC): Likewise for decimal_point and
|
||||||
|
thousands_sep.
|
||||||
|
|
||||||
2017-08-31 Akhilesh Kumar <akhilesh.k@samsung.com>
|
2017-08-31 Akhilesh Kumar <akhilesh.k@samsung.com>
|
||||||
|
|
||||||
[BZ #22044]
|
[BZ #22044]
|
||||||
|
|
|
@ -69,8 +69,8 @@ END LC_MESSAGES
|
||||||
LC_MONETARY
|
LC_MONETARY
|
||||||
int_curr_symbol "<U0043><U0055><U0050><U0020>"
|
int_curr_symbol "<U0043><U0055><U0050><U0020>"
|
||||||
currency_symbol "<U0024>"
|
currency_symbol "<U0024>"
|
||||||
mon_decimal_point "<U002C>"
|
mon_decimal_point ","
|
||||||
mon_thousands_sep "<U202F>"
|
mon_thousands_sep "."
|
||||||
mon_grouping 3;3
|
mon_grouping 3;3
|
||||||
positive_sign ""
|
positive_sign ""
|
||||||
negative_sign "<U002D>"
|
negative_sign "<U002D>"
|
||||||
|
@ -85,8 +85,8 @@ n_sign_posn 1
|
||||||
END LC_MONETARY
|
END LC_MONETARY
|
||||||
|
|
||||||
LC_NUMERIC
|
LC_NUMERIC
|
||||||
decimal_point "<U002C>"
|
decimal_point ","
|
||||||
thousands_sep ""
|
thousands_sep "."
|
||||||
grouping 0;0
|
grouping 0;0
|
||||||
END LC_NUMERIC
|
END LC_NUMERIC
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue