diff options
| author | Peter Penz <[email protected]> | 2007-06-30 19:40:15 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-06-30 19:40:15 +0000 |
| commit | 08fc0833aa6329600236d6f0a5a02e71a754d1d6 (patch) | |
| tree | 974aaa14760cf244d33cc30ce563d4009b42525a /src/renamedialog.cpp | |
| parent | 553c85e336b9ebad47295306b37d4625d7db218b (diff) | |
KUIT adapations for labels
svn path=/trunk/KDE/kdebase/apps/; revision=681915
Diffstat (limited to 'src/renamedialog.cpp')
| -rw-r--r-- | src/renamedialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/renamedialog.cpp b/src/renamedialog.cpp index 681a5845a..32112b388 100644 --- a/src/renamedialog.cpp +++ b/src/renamedialog.cpp @@ -52,10 +52,10 @@ RenameDialog::RenameDialog(const KUrl::List& items) : if (m_renameOneItem) { const KUrl& url = items.first(); m_newName = url.fileName(); - editLabel = new QLabel(i18n("Rename the item '%1' to:", m_newName), + editLabel = new QLabel(i18nc("@label:textbox", "Rename the item <filename>%1</filename> to:", m_newName), page); } else { - m_newName = i18n("New name #"); + m_newName = i18nc("@info:status", "New name #"); editLabel = new QLabel(i18np("Rename the %1 selected item to:", "Rename the %1 selected items to:", itemCount), page); @@ -98,7 +98,7 @@ RenameDialog::RenameDialog(const KUrl::List& items) : topLayout->addWidget(m_lineEdit); if (!m_renameOneItem) { - QLabel* infoLabel = new QLabel(i18n("(# will be replaced by ascending numbers)"), page); + QLabel* infoLabel = new QLabel(i18nc("@info", "(# will be replaced by ascending numbers)"), page); topLayout->addWidget(infoLabel); } } |
