From e6951327bba2139ccad30cb89bd077743cc7f2f9 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 2 Apr 2021 11:09:24 +0200 Subject: [PATCH] Translate title of sign in screen Formerly this probably wasn't translated because it's like a name or term. But now it definitely needs to be translated. Contributes to issue CURA-8107. Co-authored-by: Jaime van Kessel --- resources/qml/Account/GeneralOperations.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Account/GeneralOperations.qml b/resources/qml/Account/GeneralOperations.qml index da2e323828..c78e9ad828 100644 --- a/resources/qml/Account/GeneralOperations.qml +++ b/resources/qml/Account/GeneralOperations.qml @@ -17,7 +17,7 @@ Column id: title anchors.horizontalCenter: parent.horizontalCenter renderType: Text.NativeRendering - text: "Sign in to the Ultimaker platform" + text: catalog.i18nc("@label", "Sign in to the Ultimaker platform") font: UM.Theme.getFont("large_bold") color: UM.Theme.getColor("text") } @@ -62,4 +62,4 @@ Column text: catalog.i18nc("@button", "Create a free Ultimaker account") onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl + "/app/create") } -} \ No newline at end of file +}