From 70c6b3acb8044058ca8ce6b57ff4805181c2daf7 Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Fri, 2 Dec 2016 20:58:16 +0100 Subject: [PATCH] QML: Remove name of application For me having "Cura" under the logo actually doesn't make sense, as it is quite obvious by the logo that we are talking about _Cura_ here. So in my opinion we can prefix the application version here with "version: " instead. Untested but it should work (fingers crossed) --- resources/qml/AboutDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/AboutDialog.qml b/resources/qml/AboutDialog.qml index e81c0e3ca8..3bd76ea3b3 100644 --- a/resources/qml/AboutDialog.qml +++ b/resources/qml/AboutDialog.qml @@ -40,7 +40,7 @@ UM.Dialog { id: version - text: "Cura %1".arg(UM.Application.version) + text: catalog.i18nc("@label","version: %1").arg(UM.Application.version) font: UM.Theme.getFont("large") anchors.horizontalCenter : logo.horizontalCenter anchors.horizontalCenterOffset : (logo.width * 0.25)