Browse Source

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.
Ghostkeeper 8 years ago
parent
commit
5339fc8e8d
1 changed files with 8 additions and 8 deletions
  1. 8 8
      resources/qml/Preferences/GeneralPage.qml

+ 8 - 8
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" })
                     }
                 }