summaryrefslogtreecommitdiffstats
path: root/framework/qml/MailViewer.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-07-19 11:41:40 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-07-19 11:41:40 +0200
commitbdcbf308d1b6c64d9a909cf232f4d805350aafdf (patch)
tree8d11126f975588324ebd643e0183ab443ed75727 /framework/qml/MailViewer.qml
parentae084506b673d4264f5da65e369922bfd29fe50a (diff)
downloadkube-bdcbf308d1b6c64d9a909cf232f4d805350aafdf.tar.gz
kube-bdcbf308d1b6c64d9a909cf232f4d805350aafdf.zip
qsTr all the strings
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r--framework/qml/MailViewer.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml
index 6cc318da..cbf754c3 100644
--- a/framework/qml/MailViewer.qml
+++ b/framework/qml/MailViewer.qml
@@ -161,15 +161,15 @@ Rectangle {
161 states: [ 161 states: [
162 State { 162 State {
163 name: "trash"; when: root.trash 163 name: "trash"; when: root.trash
164 PropertyChanges { target: subject; text: "Trash: " + root.subject } 164 PropertyChanges { target: subject; text: qsTr("Trash: %1").arg(root.subject) }
165 }, 165 },
166 State { 166 State {
167 name: "draft"; when: root.draft 167 name: "draft"; when: root.draft
168 PropertyChanges { target: subject; text: "Draft: " + root.subject } 168 PropertyChanges { target: subject; text: qsTr("Draft: %1").arg(root.subject) }
169 }, 169 },
170 State { 170 State {
171 name: "sent"; when: root.sent 171 name: "sent"; when: root.sent
172 PropertyChanges { target: subject; text: "Sent: " + root.subject } 172 PropertyChanges { target: subject; text: qsTr("Sent: %1").arg(root.subject) }
173 } 173 }
174 ] 174 ]
175 } 175 }