From 3f7eaaae946e7b2050a2705f47f869803238c515 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 24 Jan 2018 13:09:04 +0100 Subject: [PATCH] Move HTML tags out of translated text We always want the same HTML tag around it. There's no need to allow the translator to change that. Discovered during issue CURA-4692. --- resources/qml/SidebarHeader.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/SidebarHeader.qml b/resources/qml/SidebarHeader.qml index 3e1e85824a..ebfb0f6aff 100644 --- a/resources/qml/SidebarHeader.qml +++ b/resources/qml/SidebarHeader.qml @@ -349,7 +349,7 @@ Column Label { id: materialInfoLabel wrapMode: Text.WordWrap - text: catalog.i18nc("@label", "Check compatibility") + text: "" + catalog.i18nc("@label", "Check compatibility") + "" font: UM.Theme.getFont("default") color: UM.Theme.getColor("text") linkColor: UM.Theme.getColor("text_link")