From 4bf06e1f02d0b971d41fd5bd7aa4e23472c17702 Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Tue, 17 Mar 2020 14:42:53 +0100 Subject: [PATCH] Fix typo in i18n --- .../warningwidgets/attachmentaddedfromexternalwarning.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/editor/warningwidgets/attachmentaddedfromexternalwarning.cpp b/src/editor/warningwidgets/attachmentaddedfromexternalwarning.cpp index cbbd89cd7..cd28c12da 100644 --- a/src/editor/warningwidgets/attachmentaddedfromexternalwarning.cpp +++ b/src/editor/warningwidgets/attachmentaddedfromexternalwarning.cpp @@ -37,8 +37,8 @@ AttachmentAddedFromExternalWarning::~AttachmentAddedFromExternalWarning() void AttachmentAddedFromExternalWarning::setAttachmentNames(const QStringList &lst) { if (lst.count() == 1) { - setText(i18n("This attachment: was added from external. Remove it if it's an error.", lst.at(0))); + setText(i18n("This attachment: was added externally. Remove it if it's an error.", lst.at(0))); } else { - setText(i18n("These attachments: were added from external. Remove them if it's an error.", lst.join(QLatin1String("
  • ")))); + setText(i18n("These attachments: were added externally. Remove them if it's an error.", lst.join(QLatin1String("
  • ")))); } }