diff --git a/kate/kateviewmanager.cpp b/kate/kateviewmanager.cpp --- a/kate/kateviewmanager.cpp +++ b/kate/kateviewmanager.cpp @@ -247,8 +247,9 @@ } } if (!fileListWithTooLargeFiles.isEmpty()) { - const QString text = i18n("

You are attempting to open one or more large files:

Do you want to proceed?

Beware that kate may stop responding for some time when opening large files.

"); - const auto ret = KMessageBox::warningYesNo(this, text.arg(fileListWithTooLargeFiles), i18n("Opening Large File"), KStandardGuiItem::cont(), KStandardGuiItem::stop()); + const QString text = i18n("

You are attempting to open one or more large files:

Do you want to proceed?

Beware that kate may stop responding for some time when opening large files.

" + , fileListWithTooLargeFiles); + const auto ret = KMessageBox::warningYesNo(this, text, i18n("Opening Large File"), KStandardGuiItem::cont(), KStandardGuiItem::stop()); if (ret == KMessageBox::No) { return; }