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-05-23 12:54:26 +0300
committerGhostkeeper <rubend@tutanota.com>2022-05-23 12:54:26 +0300
commit0cb2b3e2cb2ad12ba97bd22d6dc9afac73d4f99c (patch)
treedd742c3fa538954a4dd8a338f40aa6011d532904
parentf130eb2e7cafdec78849d5763f2914d609691718 (diff)
Fix translation containing HTML tags
Let's not confuse the translators by requiring to translate these in the future. Done as a 5 minute fix.
-rw-r--r--cura/CrashHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py
index bda9568666..1e10d9b981 100644
--- a/cura/CrashHandler.py
+++ b/cura/CrashHandler.py
@@ -261,7 +261,7 @@ class CrashHandler:
opengl_instance = OpenGL.getInstance()
if not opengl_instance:
self.data["opengl"] = {"version": "n/a", "vendor": "n/a", "type": "n/a"}
- return catalog.i18nc("@label", "Not yet initialized<br/>")
+ return catalog.i18nc("@label", "Not yet initialized") + "<br />"
info = "<ul>"
info += catalog.i18nc("@label OpenGL version", "<li>OpenGL Version: {version}</li>").format(version = opengl_instance.getOpenGLVersion())