summaryrefslogtreecommitdiffstats
path: root/framework/qml/Outbox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml/Outbox.qml')
-rw-r--r--framework/qml/Outbox.qml2
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