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("
  • ")))); } }