diff options
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r-- | framework/qml/MailViewer.qml | 6 |
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 | } |