diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-19 11:33:31 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-19 11:33:31 +0200 |
commit | ae084506b673d4264f5da65e369922bfd29fe50a (patch) | |
tree | ff42f8dc6fadb7a60f518ac8457a651cdf4ffb22 /framework/qml/MailViewer.qml | |
parent | 86d61d38091e71200e35b84c4eb7c6f8781c75db (diff) | |
download | kube-ae084506b673d4264f5da65e369922bfd29fe50a.tar.gz kube-ae084506b673d4264f5da65e369922bfd29fe50a.zip |
make more translatable
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 d2720665..6cc318da 100644 --- a/framework/qml/MailViewer.qml +++ b/framework/qml/MailViewer.qml | |||
@@ -325,17 +325,17 @@ Rectangle { | |||
325 | topMargin: Math.max(attachments.height, Kube.Units.largeSpacing) | 325 | topMargin: Math.max(attachments.height, Kube.Units.largeSpacing) |
326 | } | 326 | } |
327 | visible: root.incomplete | 327 | visible: root.incomplete |
328 | text: "Incomplete body..." | 328 | text: qsTr("Incomplete body...") |
329 | color: Kube.Colors.textColor | 329 | color: Kube.Colors.textColor |
330 | enabled: false | 330 | enabled: false |
331 | states: [ | 331 | states: [ |
332 | State { | 332 | State { |
333 | name: "inprogress"; when: model.status == Kube.MailListModel.InProgressStatus | 333 | name: "inprogress"; when: model.status == Kube.MailListModel.InProgressStatus |
334 | PropertyChanges { target: incompleteBody; text: "Downloading message..." } | 334 | PropertyChanges { target: incompleteBody; text: qsTr("Downloading message...") } |
335 | }, | 335 | }, |
336 | State { | 336 | State { |
337 | name: "error"; when: model.status == Kube.MailListModel.ErrorStatus | 337 | name: "error"; when: model.status == Kube.MailListModel.ErrorStatus |
338 | PropertyChanges { target: incompleteBody; text: "Failed to download message..." } | 338 | PropertyChanges { target: incompleteBody; text: qsTr("Failed to download message...") } |
339 | } | 339 | } |
340 | ] | 340 | ] |
341 | } | 341 | } |