diff options
| author | Montel Laurent <[email protected]> | 2014-07-16 13:26:38 +0200 |
|---|---|---|
| committer | Montel Laurent <[email protected]> | 2014-07-16 13:26:56 +0200 |
| commit | 31230ccdb561c1088824796a4429b363c8616237 (patch) | |
| tree | eeb64baf0dd0fb5adb4f2a9c59b4fcb8641e6b66 /src | |
| parent | e242d9548d11d92568a648efece5ff6c280b36cd (diff) | |
Use xi18n when text has markup
Diffstat (limited to 'src')
| -rw-r--r-- | src/views/draganddrophelper.cpp | 2 | ||||
| -rw-r--r-- | src/views/renamedialog.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/views/draganddrophelper.cpp b/src/views/draganddrophelper.cpp index f8ae0ad03..5bae50ef7 100644 --- a/src/views/draganddrophelper.cpp +++ b/src/views/draganddrophelper.cpp @@ -33,7 +33,7 @@ KonqOperations* DragAndDropHelper::dropUrls(const KFileItem& destItem, const KUr error.clear(); if (!destItem.isNull() && !destItem.isWritable()) { - error = i18nc("@info:status", "Access denied. Could not write to <filename>%1</filename>", destUrl.pathOrUrl()); + error = xi18nc("@info:status", "Access denied. Could not write to <filename>%1</filename>", destUrl.pathOrUrl()); return 0; } diff --git a/src/views/renamedialog.cpp b/src/views/renamedialog.cpp index bd0a31d11..5b20942d5 100644 --- a/src/views/renamedialog.cpp +++ b/src/views/renamedialog.cpp @@ -63,7 +63,7 @@ RenameDialog::RenameDialog(QWidget *parent, const KFileItemList& items) : QLabel* editLabel = 0; if (m_renameOneItem) { m_newName = items.first().name(); - editLabel = new QLabel(i18nc("@label:textbox", "Rename the item <filename>%1</filename> to:", m_newName), + editLabel = new QLabel(xi18nc("@label:textbox", "Rename the item <filename>%1</filename> to:", m_newName), page); editLabel->setTextFormat(Qt::PlainText); } else { |
