From db4854702b8c809988cac2451cf3ce737a510323 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 4 Apr 2017 09:04:45 +0200 Subject: [PATCH] Add Japanese and Hangul to the language drop-down These are partial translations at the moment, and normally we don't allow them in the drop-down then. But this is an exception, orders from higher up. Contributes to issue CURA-3487. --- resources/qml/Preferences/GeneralPage.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index bb397baf08..b7febf801a 100755 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -133,6 +133,8 @@ UM.PreferencesPage append({ text: "Suomi", code: "fi" }) append({ text: "Français", code: "fr" }) append({ text: "Italiano", code: "it" }) + append({ text: "日本語", code: "jp" }) + append({ text: "한국어", code: "ko" }) append({ text: "Nederlands", code: "nl" }) append({ text: "Português do Brasil", code: "ptbr" }) append({ text: "Русский", code: "ru" })