From a60f63c71b5f4f1d739636bd465550ad03e69ae1 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 22 Mar 2016 15:38:01 +0100 Subject: [PATCH] Add internationalisation for ChangeLog plug-in Some of these strings were not translated. Contributes to issue CURA-1190. --- plugins/ChangeLogPlugin/ChangeLog.qml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/plugins/ChangeLogPlugin/ChangeLog.qml b/plugins/ChangeLogPlugin/ChangeLog.qml index 3379786493..86f80410d5 100644 --- a/plugins/ChangeLogPlugin/ChangeLog.qml +++ b/plugins/ChangeLogPlugin/ChangeLog.qml @@ -12,8 +12,8 @@ UM.Dialog { id: base minimumWidth: 400 - minimumHeight: 300; - title: "Changelog" + minimumHeight: 300 + title: catalog.i18nc("@label", "Changelog") ScrollView { @@ -28,8 +28,13 @@ UM.Dialog } Button { + UM.I18nCatalog + { + id: catalog + name: "cura" + } anchors.bottom:parent.bottom - text: "close" + text: catalog.i18nc("@action:button", "Close") onClicked: base.hide() anchors.horizontalCenter: parent.horizontalCenter }