Change the currency symbol for the bg_BG locale to euro. (RHEL-137185)

Resolves: RHEL-137185
This commit is contained in:
Patsy Griffin 2026-04-14 16:58:33 -04:00
parent 11c8cbb394
commit 5163c4e961
2 changed files with 35 additions and 1 deletions

30
glibc-RHEL-137185.patch Normal file
View File

@ -0,0 +1,30 @@
commit 78fdb2d6b1c34ea8e779fd48f9436dfbd50b6387
Author: Florian Weimer <fweimer@redhat.com>
Date: Thu Jan 8 12:35:08 2026 +0100
Switch currency symbol for the bg_BG locale to euro
Bulgaria joined the eurozone on 2026-01-01.
Suggested-by: Йордан Гигов <jgigov@abv.bg>
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
Conflicts:
localedata/locales/bg_BG
(Adjust for missing UTF-8 conversion and separator/grouping
fixes downstream)
diff -Nrup a/localedata/locales/bg_BG b/localedata/locales/bg_BG
--- a/localedata/locales/bg_BG 2018-08-01 01:10:47.000000000 -0400
+++ b/localedata/locales/bg_BG 2026-04-09 15:01:50.118100059 -0400
@@ -248,8 +248,8 @@ reorder-end
END LC_COLLATE
LC_MONETARY
-int_curr_symbol "BGN "
-currency_symbol "<U043B><U0432>."
+int_curr_symbol "EUR "
+currency_symbol "<U20AC>"
mon_decimal_point ","
mon_thousands_sep "<U202F>"
mon_grouping 3;3

View File

@ -115,7 +115,7 @@ end \
Summary: The GNU libc libraries
Name: glibc
Version: %{glibcversion}
Release: %{glibcrelease}.32
Release: %{glibcrelease}.33
# In general, GPLv2+ is used by programs, LGPLv2+ is used for
# libraries.
@ -1321,6 +1321,7 @@ Patch1086: glibc-RHEL-24169-19.patch
Patch1087: glibc-RHEL-24169-20.patch
Patch1088: glibc-RHEL-24169-21.patch
Patch1089: glibc-RHEL-24169-22.patch
Patch1090: glibc-RHEL-137185.patch
##############################################################################
# Continued list of core "glibc" package information:
@ -2982,6 +2983,9 @@ fi
%{_libdir}/libpthread_nonshared.a
%changelog
* Mon Apr 13 2026 Patsy Griffin <patsy@redhat.com> - 2.28-251.33
- Change the currency symbol for the bg_BG locale to euro. (RHEL-137185)
* Wed Apr 01 2026 Patsy Griffin <patsy@redhat.com> - 2.28-251.32
- Improve qsort implementation (RHEL-24169)