Module: wine Branch: master Commit: 8b442c29a30b0d48a8734fd66047cb25223ffd1e URL: https://gitlab.winehq.org/wine/wine/-/commit/8b442c29a30b0d48a8734fd66047cb2...
Author: Piotr Caban piotr@codeweavers.com Date: Tue Jun 6 16:18:29 2023 +0200
make_unicode: Don't use Türkiye as it can't be encoded in some locales.
---
nls/locale.nls | Bin 745142 -> 745154 bytes tools/make_unicode | 1 + 2 files changed, 1 insertion(+)
diff --git a/nls/locale.nls b/nls/locale.nls index 0a397e9ea61..bc028035a8b 100644 Binary files a/nls/locale.nls and b/nls/locale.nls differ diff --git a/tools/make_unicode b/tools/make_unicode index 4dde6c010ee..69dce31df47 100755 --- a/tools/make_unicode +++ b/tools/make_unicode @@ -4677,6 +4677,7 @@ sub build_locale_data() my $snativelangname = loc_query( $loc, "/ldml/localeDisplayNames/languages/language[@type='$language' and not(@alt)]" ); my $snativectryname = loc_query( $loc, "/ldml/localeDisplayNames/territories/territory[@type='$territory' and not(@alt)]" ); $sengcountry =~ s/South Korea/Korea/; + $sengcountry =~ s/T\xfcrkiye/Turkey/; $snativelangname ||= $senglanguage; $snativectryname ||= $sengcountry; if ($script)