┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorChusslove Illich <[email protected]>2007-02-20 15:03:09 +0000
committerChusslove Illich <[email protected]>2007-02-20 15:03:09 +0000
commit1a81483d2e1c269010b32355c0b64de0b0ba53b7 (patch)
tree9d12793e4c66c75e9fd9b897b1ecdc1f08941f53 /src/dolphinmainwindow.cpp
parent76ba5d5a0902232e68dfb9f4c54bd0e4c05ac9e9 (diff)
i18n fixes. Note: %n is no longer used in plural strings.
svn path=/trunk/KDE/kdebase/apps/; revision=635655
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 98c8af834..99ddcbbef 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -590,7 +590,7 @@ void DolphinMainWindow::updatePasteAction()
pasteAction->setText(i18n("Paste 1 File"));
}
else {
- pasteAction->setText(i18n("Paste %1 Files").arg(count));
+ pasteAction->setText(i18n("Paste %1 Files", count));
}
}
else {