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>2018-01-24 15:09:04 +0300
committerGhostkeeper <rubend@tutanota.com>2018-01-24 15:52:31 +0300
commit3f7eaaae946e7b2050a2705f47f869803238c515 (patch)
tree02acd14e40777a799a66e33102ab63bea4b8d80f /resources/qml/SidebarHeader.qml
parentd6182c8c4957ed2380f4077b041633b922b815c9 (diff)
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.
Diffstat (limited to 'resources/qml/SidebarHeader.qml')
-rw-r--r--resources/qml/SidebarHeader.qml2
1 files changed, 1 insertions, 1 deletions
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", "<a href='%1'>Check compatibility</a>")
+ text: "<a href='%1'>" + catalog.i18nc("@label", "Check compatibility") + "</a>"
font: UM.Theme.getFont("default")
color: UM.Theme.getColor("text")
linkColor: UM.Theme.getColor("text_link")