Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2022-01-10 19:28:45 +0300
committerGhostkeeper <rubend@tutanota.com>2022-01-10 19:28:45 +0300
commitf4d60b38eeca7d74f7a9600b2d2dac3a3d1087b8 (patch)
tree44cfa1ddd62b4cd6baa68106d8a3b5dab981fd94
parent888696155bccdbeffcfed81c11683a41ecb92be6 (diff)
Shorten two texts of 'Sync materials with printers'
In most languages this doesn't properly fit in the space we have for these buttons. The same text in the window title and header was not changed. There we do have space for it. The button in the material manager was also not adjusted since it's different and already about as short as can be (but needs to refer to printers instead of materials due to the context of already being in the material manager). Contributes to issue CURA-8753.
-rw-r--r--cura/Machines/Models/MaterialManagementModel.py2
-rw-r--r--cura/UltimakerCloud/CloudMaterialSync.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/cura/Machines/Models/MaterialManagementModel.py b/cura/Machines/Models/MaterialManagementModel.py
index 76b2c5b444..ce31193eb8 100644
--- a/cura/Machines/Models/MaterialManagementModel.py
+++ b/cura/Machines/Models/MaterialManagementModel.py
@@ -60,7 +60,7 @@ class MaterialManagementModel(QObject):
sync_materials_message.addAction(
"sync",
- name = catalog.i18nc("@action:button", "Sync materials with printers"),
+ name = catalog.i18nc("@action:button", "Sync materials"),
icon = "",
description = "Sync your newly installed materials with your printers.",
button_align = Message.ActionButtonAlignment.ALIGN_RIGHT
diff --git a/cura/UltimakerCloud/CloudMaterialSync.py b/cura/UltimakerCloud/CloudMaterialSync.py
index 8bf8962eaf..8848b9bd60 100644
--- a/cura/UltimakerCloud/CloudMaterialSync.py
+++ b/cura/UltimakerCloud/CloudMaterialSync.py
@@ -71,7 +71,7 @@ class CloudMaterialSync(QObject):
sync_materials_message.addAction(
"sync",
- name = catalog.i18nc("@action:button", "Sync materials with printers"),
+ name = catalog.i18nc("@action:button", "Sync materials"),
icon = "",
description = "Sync your newly installed materials with your printers.",
button_align = Message.ActionButtonAlignment.ALIGN_RIGHT