From: Peter Penz Date: Wed, 13 Jun 2007 20:41:06 +0000 (+0000) Subject: internationalization fix (thanks to Andrius Štikonas) X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/9966f3789c007df735ea231cb72692112df22909 internationalization fix (thanks to Andrius Štikonas) svn path=/trunk/KDE/kdebase/apps/; revision=675221 --- diff --git a/src/renamedialog.cpp b/src/renamedialog.cpp index f8f549ddf..681a5845a 100644 --- a/src/renamedialog.cpp +++ b/src/renamedialog.cpp @@ -56,7 +56,8 @@ RenameDialog::RenameDialog(const KUrl::List& items) : page); } else { m_newName = i18n("New name #"); - editLabel = new QLabel(i18n("Rename the %1 selected items to:", itemCount), + editLabel = new QLabel(i18np("Rename the %1 selected item to:", + "Rename the %1 selected items to:", itemCount), page); }