Sort language list by language code

This makes it slightly easier to find your language. English is an exception, it is always put in front.

Contributes to issue CURA-570.
This commit is contained in:
Ghostkeeper 2016-10-04 11:41:24 +02:00
parent 5339fc8e8d
commit 9f41d81e86
No known key found for this signature in database
GPG key ID: 701948C5954A7385

View file

@ -91,12 +91,12 @@ UM.PreferencesPage
Component.onCompleted: {
append({ text: "English", code: "en" })
append({ text: "Deutsch", code: "de" })
append({ text: "Español", code: "es" })
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" })
}
}