|
@@ -1,4 +1,4 @@
|
|
|
-# Copyright (c) 2019 Ultimaker B.V.
|
|
|
+# Copyright (c) 2022 UltiMaker B.V.
|
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
|
|
import platform
|
|
@@ -110,7 +110,7 @@ class CrashHandler:
|
|
|
layout = QVBoxLayout(dialog)
|
|
|
|
|
|
label = QLabel()
|
|
|
- label.setText(catalog.i18nc("@label crash message", """<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>
|
|
|
+ label.setText(catalog.i18nc("@label crash message", """<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>
|
|
|
<p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>
|
|
|
<p>Backups can be found in the configuration folder.</p>
|
|
|
<p>Please send us this Crash Report to fix the problem.</p>
|
|
@@ -119,7 +119,7 @@ class CrashHandler:
|
|
|
layout.addWidget(label)
|
|
|
|
|
|
# "send report" check box and show details
|
|
|
- self._send_report_checkbox = QCheckBox(catalog.i18nc("@action:button", "Send crash report to Ultimaker"), dialog)
|
|
|
+ self._send_report_checkbox = QCheckBox(catalog.i18nc("@action:button", "Send crash report to UltiMaker"), dialog)
|
|
|
self._send_report_checkbox.setChecked(True)
|
|
|
|
|
|
show_details_button = QPushButton(catalog.i18nc("@action:button", "Show detailed crash report"), dialog)
|