diff --git a/src/editor/warningwidgets/attachmentaddedfromexternalwarning.cpp b/src/editor/warningwidgets/attachmentaddedfromexternalwarning.cpp index 44e7eaa6a..cbbd89cd7 100644 --- a/src/editor/warningwidgets/attachmentaddedfromexternalwarning.cpp +++ b/src/editor/warningwidgets/attachmentaddedfromexternalwarning.cpp @@ -1,44 +1,44 @@ /* Copyright (C) 2020 Laurent Montel This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "attachmentaddedfromexternalwarning.h" #include AttachmentAddedFromExternalWarning::AttachmentAddedFromExternalWarning(QWidget *parent) : KMessageWidget(parent) { setVisible(false); setCloseButtonVisible(true); setMessageType(Information); setWordWrap(true); } AttachmentAddedFromExternalWarning::~AttachmentAddedFromExternalWarning() { } void AttachmentAddedFromExternalWarning::setAttachmentNames(const QStringList &lst) { if (lst.count() == 1) { - setText(i18n("These attachment: was added from external. Remove them if it's an error.", lst.at(0))); + setText(i18n("This attachment: was added from external. 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("
  • ")))); } }