commit: a9b851aa79d0eed2b34e2a7763bc1ff23f64e598
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Fri Aug 15 22:27:21 2025 +0000
Commit: Kerin Millar <kfm <AT> plushkava <DOT> net>
CommitDate: Fri Aug 15 22:28:01 2025 +0000
URL: https://gitweb.gentoo.org/proj/locale-gen.git/commit/?id=a9b851aa
mkconfig: replace "Russian Federation" with "Russia"
Some Russian locales describe the territory as "Russian Federation",
whereas others describe it as "Russia". Given that the ru_RU locale has
it as "Russia", apply that name consistently.
See-also: ee1745e88deda1d3dc57ce7348de3c57fb4830d5
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
mkconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/mkconfig b/mkconfig
index d69597e..4397ca3 100755
--- a/mkconfig
+++ b/mkconfig
@@ -86,6 +86,8 @@ sub map_locale_attributes ($prefix) {
for ($territory) {
if (m/^Myanmar/) {
$_ = 'Myanmar/Burma';
+ } elsif (m/^Russian Federation\z/) {
+ $_ = 'Russia';
} elsif (m/^Turkiye\z/) {
$_ = 'Turkey';
}