diff options
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);
|
