summaryrefslogtreecommitdiffstats
path: root/components/mailviewer/contents/ui/MailPart.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-07-19 11:41:40 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-07-19 11:41:40 +0200
commitbdcbf308d1b6c64d9a909cf232f4d805350aafdf (patch)
tree8d11126f975588324ebd643e0183ab443ed75727 /components/mailviewer/contents/ui/MailPart.qml
parentae084506b673d4264f5da65e369922bfd29fe50a (diff)
downloadkube-bdcbf308d1b6c64d9a909cf232f4d805350aafdf.tar.gz
kube-bdcbf308d1b6c64d9a909cf232f4d805350aafdf.zip
qsTr all the strings
Diffstat (limited to 'components/mailviewer/contents/ui/MailPart.qml')
-rw-r--r--components/mailviewer/contents/ui/MailPart.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/mailviewer/contents/ui/MailPart.qml b/components/mailviewer/contents/ui/MailPart.qml
index 7ff426e9..3dbca1d4 100644
--- a/components/mailviewer/contents/ui/MailPart.qml
+++ b/components/mailviewer/contents/ui/MailPart.qml
@@ -51,7 +51,7 @@ Item {
51 leftMargin: Kube.Units.smallSpacing 51 leftMargin: Kube.Units.smallSpacing
52 } 52 }
53 53
54 text: "sent by " + root.sender + " on " + root.date 54 text: qsTr("sent by %1 on %2").arg(root.sender).arg(root.date)
55 color: "grey" 55 color: "grey"
56 } 56 }
57 ListView { 57 ListView {