From b572fc68de39f13385ea19b33d6091927dc74f60 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 6 Mar 2020 15:54:23 +0100 Subject: [PATCH] Don't hard-code the application name As a response to the comment on commit d501f7730a42e45177fa3cdb89a4cdce1f1bd9a4. --- plugins/Toolbox/resources/qml/components/ToolboxFooter.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml b/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml index 7a2728d046..8408f94fe7 100644 --- a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml +++ b/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml @@ -42,7 +42,7 @@ Item rightMargin: UM.Theme.getSize("wide_margin").width } height: UM.Theme.getSize("toolbox_footer_button").height - text: catalog.i18nc("@info:button", "Quit Ultimaker Cura") + text: catalog.i18nc("@info:button, %1 is the application name", "Quit %1").arg(CuraApplication.applicationDisplayName) onClicked: toolbox.restart() }