From 3c5496441761f7475428b33d444a1c8050d8a980 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 6 Dec 2021 16:02:42 +0100 Subject: [PATCH] Use same content for button as old one So make it dynamic based on the application name. This also causes the translation to be re-used. Contributes to issue CURA-8587. --- plugins/Marketplace/resources/qml/Marketplace.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Marketplace/resources/qml/Marketplace.qml b/plugins/Marketplace/resources/qml/Marketplace.qml index bda153ee23..e765f0f009 100644 --- a/plugins/Marketplace/resources/qml/Marketplace.qml +++ b/plugins/Marketplace/resources/qml/Marketplace.qml @@ -270,7 +270,7 @@ Window Cura.SecondaryButton { id: quitButton - text: catalog.i18nc("@button", "Quit Ultimaker Cura") + text: catalog.i18nc("@info:button, %1 is the application name", "Quit %1").arg(CuraApplication.applicationDisplayName) } } }