From fa3568dca1af3b5899216a3314624fe9f39c867e Mon Sep 17 00:00:00 2001 From: Nikolay Kostov Date: Wed, 5 Jul 2023 13:12:49 +0300 Subject: [PATCH] Small fix in characters encodings in Languages.h --- lib/Languages.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Languages.h b/lib/Languages.h index 4d1e6175c..245430857 100644 --- a/lib/Languages.h +++ b/lib/Languages.h @@ -81,8 +81,8 @@ inline const auto & getLanguageList() { "turkish", "Turkish", "Türkçe", "CP1254", "tr", true }, { "ukrainian", "Ukrainian", "Українська", "CP1251", "uk", true }, - { "other_cp1250", "Other (East European)", "", "CP1251", "", false }, - { "other_cp1251", "Other (Cyrillic Script)", "", "CP1250", "", false }, + { "other_cp1250", "Other (East European)", "", "CP1250", "", false }, + { "other_cp1251", "Other (Cyrillic Script)", "", "CP1251", "", false }, { "other_cp1252", "Other (West European)", "", "CP1252", "", false } } }; static_assert(languages.size() == static_cast(ELanguages::COUNT), "Languages array is missing a value!");