From cfa02c39ec6d922298fad8e0e853aedb10e360da Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 13 Mar 2019 14:26:37 +0100 Subject: [PATCH] Don't allow translating 'Ultimaker Cloud' It is a marketing name and shouldn't be translated then. Contributes to issue CURA-6257. --- resources/qml/Account/GeneralOperations.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Account/GeneralOperations.qml b/resources/qml/Account/GeneralOperations.qml index a648a5ad0b..f6bd7ce588 100644 --- a/resources/qml/Account/GeneralOperations.qml +++ b/resources/qml/Account/GeneralOperations.qml @@ -26,7 +26,7 @@ Column anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: Text.AlignHCenter renderType: Text.NativeRendering - text: catalog.i18nc("@label", "Ultimaker Cloud") + text: "Ultimaker Cloud" font: UM.Theme.getFont("large_bold") color: UM.Theme.getColor("text") }