diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-03-20 17:58:18 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-03-20 17:58:18 +0100 |
commit | dd5af22d1f90c7d5ec74c02dab12ec63f686a0ae (patch) | |
tree | 4f35f6d234535f4fbf451864e3993248eaab2028 | |
parent | 54194b5a5054aa1be6e1dbbbaad00968f8848d75 (diff) | |
download | kube-dd5af22d1f90c7d5ec74c02dab12ec63f686a0ae.tar.gz kube-dd5af22d1f90c7d5ec74c02dab12ec63f686a0ae.zip |
Use translatable strings
-rw-r--r-- | framework/qml/MailViewer.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml index e9ffd108..2a1af3a6 100644 --- a/framework/qml/MailViewer.qml +++ b/framework/qml/MailViewer.qml | |||
@@ -386,7 +386,7 @@ Rectangle { | |||
386 | visible: !model.trash && !model.draft | 386 | visible: !model.trash && !model.draft |
387 | activeFocusOnTab: false | 387 | activeFocusOnTab: false |
388 | 388 | ||
389 | text: "Share" | 389 | text: qsTr("Share") |
390 | onClicked: { | 390 | onClicked: { |
391 | Kube.Fabric.postMessage(Kube.Messages.forward, {"mail": model.mail}) | 391 | Kube.Fabric.postMessage(Kube.Messages.forward, {"mail": model.mail}) |
392 | } | 392 | } |
@@ -396,7 +396,7 @@ Rectangle { | |||
396 | visible: !model.trash | 396 | visible: !model.trash |
397 | activeFocusOnTab: false | 397 | activeFocusOnTab: false |
398 | 398 | ||
399 | text: model.draft ? "Edit" : "Reply" | 399 | text: model.draft ? qsTr("Edit") : qsTr("Reply") |
400 | onClicked: { | 400 | onClicked: { |
401 | if (model.draft) { | 401 | if (model.draft) { |
402 | Kube.Fabric.postMessage(Kube.Messages.edit, {"mail": model.mail}) | 402 | Kube.Fabric.postMessage(Kube.Messages.edit, {"mail": model.mail}) |