From 1f6510a82f5de0434bf4ada53fb332a5f43c46b2 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 1 Dec 2017 15:40:36 +0100 Subject: [PATCH] Re-enable Russian and disable Finnish Russian has been translated by Bothof now so it's complete again. Finnish has been officially dropped now so we'll disable that language. Contributes to issue CURA-4601. --- resources/qml/Preferences/GeneralPage.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 9870cbe065..e9dae6eb11 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -151,7 +151,7 @@ UM.PreferencesPage append({ text: "English", code: "en_US" }) append({ text: "Deutsch", code: "de_DE" }) append({ text: "Español", code: "es_ES" }) - append({ text: "Suomi", code: "fi_FI" }) + //Finnish is disabled for being incomplete: append({ text: "Suomi", code: "fi_FI" }) append({ text: "Français", code: "fr_FR" }) append({ text: "Italiano", code: "it_IT" }) append({ text: "日本語", code: "ja_JP" }) @@ -159,7 +159,7 @@ UM.PreferencesPage append({ text: "Nederlands", code: "nl_NL" }) append({ text: "Polski", code: "pl_PL" }) append({ text: "Português do Brasil", code: "pt_BR" }) - //Russian is disabled for being incomplete: append({ text: "Русский", code: "ru_RU" }) + append({ text: "Русский", code: "ru_RU" }) append({ text: "Türkçe", code: "tr_TR" }) append({ text: "简体中文", code: "zh_CN" }) append({ text: "正體字", code: "zh_TW" })