diff options
author | Robert C. Helling <helling@atdotde.de> | 2016-05-03 21:24:00 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-05-03 12:59:16 -0700 |
commit | 502be2a0f16474ed7520fb87071573e51f95a15a (patch) | |
tree | fe47196ca3a50b8ac66bc84976289d912390fd91 /mobile-widgets/qml/Log.qml | |
parent | 70e3ec9e90e33a2f11e500e1a1c807ab58b4ebe1 (diff) | |
download | subsurface-502be2a0f16474ed7520fb87071573e51f95a15a.tar.gz |
Mark strings in qml files for translation
I did this semi-automatically: I used the script from
the previous patch and then did some manual corrections.
This marks only title: and text: tags, there might be others
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/Log.qml')
-rw-r--r-- | mobile-widgets/qml/Log.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/Log.qml b/mobile-widgets/qml/Log.qml index 147709cea..7d630d0bf 100644 --- a/mobile-widgets/qml/Log.qml +++ b/mobile-widgets/qml/Log.qml @@ -12,7 +12,7 @@ Kirigami.ScrollablePage { id: logWindow anchors.margins: Kirigami.Units.gridUnit / 2 objectName: "Log" - title: "Application Log" + title: qsTr("Application Log") property int pageWidth: subsurfaceTheme.columnWidth - Kirigami.Units.smallSpacing @@ -20,7 +20,7 @@ Kirigami.ScrollablePage { width: logWindow.width - logWindow.leftPadding - logWindow.rightPadding - 2 * Kirigami.Units.smallSpacing spacing: Kirigami.Units.smallSpacing Kirigami.Heading { - text: "Application Log" + text: qsTr("Application Log") } Kirigami.Label { id: logContent |