Fix typo in i18n

wilder
Laurent Montel 6 years ago
parent 0ba46e177a
commit 4bf06e1f02
  1. 4
      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: <ul><li>%1</li></ul> was added from external. Remove it if it's an error.", lst.at(0)));
setText(i18n("This attachment: <ul><li>%1</li></ul> was added externally. Remove it if it's an error.", lst.at(0)));
} else {
setText(i18n("These attachments: <ul><li>%1</li></ul> were added from external. Remove them if it's an error.", lst.join(QLatin1String("</li><li>"))));
setText(i18n("These attachments: <ul><li>%1</li></ul> were added externally. Remove them if it's an error.", lst.join(QLatin1String("</li><li>"))));
}
}

Loading…
Cancel
Save