From d7d91d2fec1328d3bc1615b505cd5515231a5392 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 10 Mar 2020 11:19:13 +0100 Subject: [PATCH] Don't translate 'Language:' string This should make it easier to find the language drop-down again if you can't read the current language. Done as a 5 minute fix. --- resources/qml/Preferences/GeneralPage.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 5a2a76dd3f..4cd3afb4af 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2020 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.1 @@ -12,7 +12,7 @@ import Cura 1.0 as Cura UM.PreferencesPage { //: General configuration page title - title: catalog.i18nc("@title:tab","General") + title: catalog.i18nc("@title:tab", "General") id: generalPreferencesPage function setDefaultLanguage(languageCode) @@ -129,7 +129,7 @@ UM.PreferencesPage Label { font.bold: true - text: catalog.i18nc("@label","Interface") + text: catalog.i18nc("@label", "Interface") } GridLayout @@ -140,7 +140,7 @@ UM.PreferencesPage Label { id: languageLabel - text: catalog.i18nc("@label","Language:") + text: "Language:" //Don't translate this, to make it easier to find the language drop-down if you can't read the current language. } ComboBox