mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-29 22:01:14 -07:00
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:
parent
5339fc8e8d
commit
9f41d81e86
1 changed files with 2 additions and 2 deletions
|
|
@ -91,12 +91,12 @@ UM.PreferencesPage
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
append({ text: "English", code: "en" })
|
append({ text: "English", code: "en" })
|
||||||
|
append({ text: "Deutsch", code: "de" })
|
||||||
|
append({ text: "Español", code: "es" })
|
||||||
append({ text: "Suomi", code: "fi" })
|
append({ text: "Suomi", code: "fi" })
|
||||||
append({ text: "Français", code: "fr" })
|
append({ text: "Français", code: "fr" })
|
||||||
append({ text: "Deutsch", code: "de" })
|
|
||||||
append({ text: "Italiano", code: "it" })
|
append({ text: "Italiano", code: "it" })
|
||||||
append({ text: "Nederlands", code: "nl" })
|
append({ text: "Nederlands", code: "nl" })
|
||||||
append({ text: "Español", code: "es" })
|
|
||||||
append({ text: "Türkçe", code: "tr" })
|
append({ text: "Türkçe", code: "tr" })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue