From bf96be3ab26eb720b6ce7e6ee563b35697a7047e Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 14 Sep 2017 16:40:20 +0200 Subject: [PATCH] Improve titles for slice failure messages a bit The previous ones were very vague. --- plugins/CuraEngineBackend/CuraEngineBackend.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index ea1f8c39b4..62e3703a3f 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -278,7 +278,7 @@ class CuraEngineBackend(QObject, Backend): if job.getResult() == StartSliceJob.StartJobResult.MaterialIncompatible: if Application.getInstance().platformActivity: self._error_message = Message(catalog.i18nc("@info:status", - "The selected material is incompatible with the selected machine or configuration."), title = catalog.i18nc("@info:title", "Material Details")) + "The selected material is incompatible with the selected machine or configuration."), title = catalog.i18nc("@info:title", "Incompatible material")) self._error_message.show() self.backendStateChange.emit(BackendState.Error) else: @@ -306,7 +306,7 @@ class CuraEngineBackend(QObject, Backend): error_labels = ", ".join(error_labels) self._error_message = Message(catalog.i18nc("@info:status", "Unable to slice with the current settings. The following settings have errors: {0}".format(error_labels)), - title = catalog.i18nc("@info:title", "Setting Details")) + title = catalog.i18nc("@info:title", "Invalid settings")) self._error_message.show() self.backendStateChange.emit(BackendState.Error) else: