From 04545406cdfc5b1a0641e357a9984faab39692a7 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 4 Oct 2016 11:29:44 +0200 Subject: [PATCH] Add Turkish language to drop-down The translation files are already in there (though the template all languages were based on is not entirely complete). But it wasn't yet in the drop-down so it couldn't be selected. Contributes to issue CURA-570. --- resources/qml/Preferences/GeneralPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 2839e1bc72..d254d5c15b 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -97,6 +97,7 @@ UM.PreferencesPage append({ text: catalog.i18nc("@item:inlistbox", "Italian"), code: "it" }) append({ text: catalog.i18nc("@item:inlistbox", "Dutch"), code: "nl" }) append({ text: catalog.i18nc("@item:inlistbox", "Spanish"), code: "es" }) + append({ text: catalog.i18nc("@item:inlistbox", "Turkish"), code: "tr" }) } }