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>
This commit is contained in:
Robert C. Helling 2016-05-03 21:24:00 +02:00 committed by Dirk Hohndel
parent 70e3ec9e90
commit 502be2a0f1
13 changed files with 118 additions and 118 deletions

View file

@ -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