diff options
| author | Peter Penz <[email protected]> | 2007-03-10 20:45:07 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-03-10 20:45:07 +0000 |
| commit | 175f629b699cad7845cc720815c0aa4b56846553 (patch) | |
| tree | 5d159326e19e71cfe5cde80da99a438e9a9d999c /src/dolphinmainwindow.cpp | |
| parent | 16b56261a8ead7b9862dd3908424b990a419f978 (diff) | |
fix internationalization issue
svn path=/trunk/KDE/kdebase/apps/; revision=641301
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
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);
|
