From 175f629b699cad7845cc720815c0aa4b56846553 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Sat, 10 Mar 2007 20:45:07 +0000 Subject: fix internationalization issue svn path=/trunk/KDE/kdebase/apps/; revision=641301 --- src/dolphinmainwindow.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/dolphinmainwindow.cpp') diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index dc46a9429..6e2517344 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -595,13 +595,7 @@ void DolphinMainWindow::updatePasteAction() if (!urls.isEmpty()) { pasteAction->setEnabled(true); - const int count = urls.count(); - if (count == 1) { - pasteAction->setText(i18n("Paste 1 File")); - } - else { - pasteAction->setText(i18n("Paste %1 Files", count)); - } + pasteAction->setText(i18np("Paste One File", "Paste %1 Files", urls.count())); } else { pasteAction->setEnabled(false); -- cgit v1.3