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:
authoralekseisasin <a.sasin@ultimaker.com>2017-09-13 14:58:08 +0300
committeralekseisasin <a.sasin@ultimaker.com>2017-09-13 14:58:08 +0300
commit204019702dc429a9f63b27a724c19d4f03cbfd52 (patch)
treebf7150ee166b71f3cdda5b97f9c224cb306b22b5 /cura/Settings
parent1fdf1036783b46536328371e1c825a192ee6a392 (diff)
Added Title for messages
CURA-4203
Diffstat (limited to 'cura/Settings')
-rw-r--r--cura/Settings/CuraContainerRegistry.py11
-rwxr-xr-xcura/Settings/MachineManager.py3
-rw-r--r--cura/Settings/MaterialManager.py2
3 files changed, 11 insertions, 5 deletions
diff --git a/cura/Settings/CuraContainerRegistry.py b/cura/Settings/CuraContainerRegistry.py
index c2422d909a..5b7f4199d8 100644
--- a/cura/Settings/CuraContainerRegistry.py
+++ b/cura/Settings/CuraContainerRegistry.py
@@ -140,15 +140,20 @@ class CuraContainerRegistry(ContainerRegistry):
success = profile_writer.write(file_name, found_containers)
except Exception as e:
Logger.log("e", "Failed to export profile to %s: %s", file_name, str(e))
- m = Message(catalog.i18nc("@info:status Don't translate the XML tags <filename> or <message>!", "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>", file_name, str(e)), lifetime = 0)
+ m = Message(catalog.i18nc("@info:status Don't translate the XML tags <filename> or <message>!", "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>", file_name, str(e)),
+ lifetime = 0,
+ title = catalog.i18nc("@info:title", "Error"))
m.show()
return
if not success:
Logger.log("w", "Failed to export profile to %s: Writer plugin reported failure.", file_name)
- m = Message(catalog.i18nc("@info:status Don't translate the XML tag <filename>!", "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure.", file_name), lifetime = 0)
+ m = Message(catalog.i18nc("@info:status Don't translate the XML tag <filename>!", "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure.", file_name),
+ lifetime = 0,
+ title = catalog.i18nc("@info:title", "Error"))
m.show()
return
- m = Message(catalog.i18nc("@info:status Don't translate the XML tag <filename>!", "Exported profile to <filename>{0}</filename>", file_name))
+ m = Message(catalog.i18nc("@info:status Don't translate the XML tag <filename>!", "Exported profile to <filename>{0}</filename>", file_name),
+ title = catalog.i18nc("@info:title", "Export Details"))
m.show()
## Gets the plugin object matching the criteria
diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py
index 7f7593a9d5..4fb700e5ea 100755
--- a/cura/Settings/MachineManager.py
+++ b/cura/Settings/MachineManager.py
@@ -105,7 +105,8 @@ class MachineManager(QObject):
self._auto_hotends_changed = {}
self._material_incompatible_message = Message(catalog.i18nc("@info:status",
- "The selected material is incompatible with the selected machine or configuration."))
+ "The selected material is incompatible with the selected machine or configuration."),
+ title = catalog.i18nc("@info:title", "Incompatible Material"))
globalContainerChanged = pyqtSignal() # Emitted whenever the global stack is changed (ie: when changing between printers, changing a global profile, but not when changing a value)
activeMaterialChanged = pyqtSignal()
diff --git a/cura/Settings/MaterialManager.py b/cura/Settings/MaterialManager.py
index 5640d7af38..e2f91622c8 100644
--- a/cura/Settings/MaterialManager.py
+++ b/cura/Settings/MaterialManager.py
@@ -21,7 +21,7 @@ class MaterialManager(QObject):
#Material diameter changed warning message.
self._material_diameter_warning_message = Message(catalog.i18nc("@info:status Has a cancel button next to it.",
- "The selected material diameter causes the material to become incompatible with the current printer."))
+ "The selected material diameter causes the material to become incompatible with the current printer."), title = catalog.i18nc("@info:title", "Incompatible Material"))
self._material_diameter_warning_message.addAction("Undo", catalog.i18nc("@action:button", "Undo"), None, catalog.i18nc("@action", "Undo changing the material diameter."))
self._material_diameter_warning_message.actionTriggered.connect(self._materialWarningMessageAction)