From 629f0de4d9783e7efe800937b07f2edd254633a8 Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Wed, 28 Feb 2024 12:22:09 +0100 Subject: [PATCH] Fix local language names in language menu For Finnish, "Suomeksi" appears to be a declension of "Suomi", whose nominative form is more commonly used to refer to the language. For Ukrainian, it should be written in Cyrillic and use the word for the language instead of the country. Issue reported by Marina Veselkova. --- build_files/theme/js/version_switch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_files/theme/js/version_switch.js b/build_files/theme/js/version_switch.js index d7258a223..950d5839a 100644 --- a/build_files/theme/js/version_switch.js +++ b/build_files/theme/js/version_switch.js @@ -9,7 +9,7 @@ var all_langs = { "ar": "اَلْعَرَبِيَّةُ", "de": "Deutsch", "es": "Español", - "fi": "Suomeksi", + "fi": "Suomi", "fr": "Français", "id": "Bahasa Indonesia", "it": "Italiano", @@ -22,7 +22,7 @@ var all_langs = { "sk": "Slovenčina", "sl": "Slovenščina", "sr": "српски", - "uk": "Ukraїna", + "uk": "Українська", "vi": "Tiếng Việt", "zh-hans": "中文(简体)", "zh-hant": "中文(繁體)", -- 2.30.2