summaryrefslogtreecommitdiffstats
path: root/components/mailviewer/contents/ui
diff options
context:
space:
mode:
Diffstat (limited to 'components/mailviewer/contents/ui')
-rw-r--r--components/mailviewer/contents/ui/ErrorPart.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/mailviewer/contents/ui/ErrorPart.qml b/components/mailviewer/contents/ui/ErrorPart.qml
index 734d5c5f..0e5d9b8e 100644
--- a/components/mailviewer/contents/ui/ErrorPart.qml
+++ b/components/mailviewer/contents/ui/ErrorPart.qml
@@ -35,7 +35,7 @@ Item {
35 width: parent.width 35 width: parent.width
36 spacing: 5 36 spacing: 5
37 Text { 37 Text {
38 text: "An error occured: " + errorString 38 text: qsTr("An error occured: %1").arg(errorString)
39 } 39 }
40 } 40 }
41} 41}