Update language codes

The folders were renamed, so they should get renamed here as well.

Contributes to issue CURA-4263.
This commit is contained in:
Ruben D 2017-09-10 01:35:59 +02:00
parent 91c5da7054
commit 48778a2801
No known key found for this signature in database
GPG Key ID: 6B42C9465E304A62

View File

@ -1,4 +1,4 @@
// Copyright (c) 2016 Ultimaker B.V. // Copyright (c) 2017 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher. // Cura is released under the terms of the AGPLv3 or higher.
import QtQuick 2.1 import QtQuick 2.1
@ -148,19 +148,19 @@ UM.PreferencesPage
id: languageList id: languageList
Component.onCompleted: { Component.onCompleted: {
append({ text: "English", code: "en" }) append({ text: "English", code: "en_US" })
append({ text: "Deutsch", code: "de" }) append({ text: "Deutsch", code: "de_DE" })
append({ text: "Español", code: "es" }) append({ text: "Español", code: "es_ES" })
append({ text: "Suomi", code: "fi" }) append({ text: "Suomi", code: "fi_FI" })
append({ text: "Français", code: "fr" }) append({ text: "Français", code: "fr_FR" })
append({ text: "Italiano", code: "it" }) append({ text: "Italiano", code: "it_IT" })
append({ text: "日本語", code: "ja" }) append({ text: "日本語", code: "ja_JP" })
append({ text: "한국어", code: "ko" }) append({ text: "한국어", code: "ko_KR" })
append({ text: "Nederlands", code: "nl" }) append({ text: "Nederlands", code: "nl_NL" })
append({ text: "Polski", code: "pl" }) append({ text: "Polski", code: "pl_PL" })
append({ text: "Português do Brasil", code: "pt_BR" }) append({ text: "Português do Brasil", code: "pt_BR" })
append({ text: "Русский", code: "ru" }) append({ text: "Русский", code: "ru_RU" })
append({ text: "Türkçe", code: "tr" }) append({ text: "Türkçe", code: "tr_TR" })
append({ text: "简体中文", code: "zh_CN" }) append({ text: "简体中文", code: "zh_CN" })
var date_object = new Date(); var date_object = new Date();