From 5339fc8e8d08423bb0d365423204a8fb69248d87 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 4 Oct 2016 11:40:06 +0200 Subject: [PATCH] Put translation drop-down in their native language This makes it slightly easier to select your native language if you don't know the current language. Of course, you have to find the drop-down first... But this is how many applications do it. Contributes to issue CURA-570. --- resources/qml/Preferences/GeneralPage.qml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index d254d5c15b..86dc3886a9 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -90,14 +90,14 @@ UM.PreferencesPage id: languageList Component.onCompleted: { - append({ text: catalog.i18nc("@item:inlistbox", "English"), code: "en" }) - append({ text: catalog.i18nc("@item:inlistbox", "Finnish"), code: "fi" }) - append({ text: catalog.i18nc("@item:inlistbox", "French"), code: "fr" }) - append({ text: catalog.i18nc("@item:inlistbox", "German"), code: "de" }) - 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" }) + append({ text: "English", code: "en" }) + append({ text: "Suomi", code: "fi" }) + append({ text: "Français", code: "fr" }) + append({ text: "Deutsch", code: "de" }) + append({ text: "Italiano", code: "it" }) + append({ text: "Nederlands", code: "nl" }) + append({ text: "Español", code: "es" }) + append({ text: "Türkçe", code: "tr" }) } }