diff options
Diffstat (limited to 'framework')
-rw-r--r-- | framework/qml/EditAccount.qml | 2 | ||||
-rw-r--r-- | framework/qml/MailViewer.qml | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/framework/qml/EditAccount.qml b/framework/qml/EditAccount.qml index 69c0ff11..ad7c1f76 100644 --- a/framework/qml/EditAccount.qml +++ b/framework/qml/EditAccount.qml | |||
@@ -121,7 +121,7 @@ Item { | |||
121 | 121 | ||
122 | Kube.Button { | 122 | Kube.Button { |
123 | anchors.right: parent.right | 123 | anchors.right: parent.right |
124 | text: "Save" | 124 | text: qsTr("Save") |
125 | onClicked: { | 125 | onClicked: { |
126 | loader.item.save() | 126 | loader.item.save() |
127 | //TODO Feedback that the settings have been saved (popup notification/animation?) | 127 | //TODO Feedback that the settings have been saved (popup notification/animation?) |
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 | } |