diff --git a/part/part.cpp b/part/part.cpp index 3a59425d8..be205c16e 100644 --- a/part/part.cpp +++ b/part/part.cpp @@ -2550,7 +2550,7 @@ bool Part::saveAs(const QUrl &saveUrl, SaveAsFlags flags) if (realSaveUrl.isLocalFile()) { const QFileInfo fi(realSaveUrl.toLocalFile()); if (fi.exists() && !fi.isWritable()) { - KMessageBox::information(widget(), i18n("File could not be saved in '%1' because it is read only. Save it to another location or change its permissions.", realSaveUrl.toLocalFile())); + KMessageBox::information(widget(), xi18nc("@info", "Could not overwrite %1 because that file is read-only. Try saving to another location or changing that file's permissions.", realSaveUrl.toLocalFile())); return false; } }