From b5e971f9ecc2264f7f5a9d1f0261fb731af9cfc6 Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Wed, 20 May 2020 15:21:57 +0200 Subject: [PATCH] Update remove cloud printer pop-up message CURA-7436 --- .../src/Cloud/CloudOutputDeviceManager.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py index 71c1994bc1..3322bbd639 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py @@ -267,9 +267,10 @@ class CloudOutputDeviceManager: machine.setMetaDataEntry("group_name", device.name) machine.setMetaDataEntry("removal_warning", self.I18N_CATALOG.i18nc( "@label ({} is printer name)", - "{} will be removed but will be added again in the next sync. To remove the printer permanently, " - "visit Ultimaker Digital Factory", - device.name + "{} will be removed until the next account sync.
To remove {} permanently, " + "visit Ultimaker Digital Factory. " + "

Are you sure you want to remove {} temporarily?", + device.name, device.name, device.name )) machine.addConfiguredConnectionType(device.connectionType.value)