diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-19 11:41:40 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-19 11:41:40 +0200 |
commit | bdcbf308d1b6c64d9a909cf232f4d805350aafdf (patch) | |
tree | 8d11126f975588324ebd643e0183ab443ed75727 /framework/qml/Outbox.qml | |
parent | ae084506b673d4264f5da65e369922bfd29fe50a (diff) | |
download | kube-bdcbf308d1b6c64d9a909cf232f4d805350aafdf.tar.gz kube-bdcbf308d1b6c64d9a909cf232f4d805350aafdf.zip |
qsTr all the strings
Diffstat (limited to 'framework/qml/Outbox.qml')
-rw-r--r-- | framework/qml/Outbox.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/Outbox.qml b/framework/qml/Outbox.qml index 9fad8db5..bdd68a7d 100644 --- a/framework/qml/Outbox.qml +++ b/framework/qml/Outbox.qml | |||
@@ -109,7 +109,7 @@ Kube.IconButton { | |||
109 | states: [ | 109 | states: [ |
110 | State { | 110 | State { |
111 | name: "inprogress"; when: model.status == Kube.OutboxModel.InProgressStatus | 111 | name: "inprogress"; when: model.status == Kube.OutboxModel.InProgressStatus |
112 | PropertyChanges { target: subjectLabel; text: "Sending: " + model.subject } | 112 | PropertyChanges { target: subjectLabel; text: qsTr("Sending: %1").arg(model.subject) } |
113 | }, | 113 | }, |
114 | State { | 114 | State { |
115 | name: "error"; when: model.status == Kube.OutboxModel.ErrorStatus | 115 | name: "error"; when: model.status == Kube.OutboxModel.ErrorStatus |