summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2021-11-28 14:58:21 +0900
committerMichele Calgaro <[email protected]>2021-11-28 14:59:05 +0900
commit3ac90b74721f95d30c1260537d075107fef1c7a5 (patch)
treea2b950e30aa98674bbf9d7a16909d7428f81e829 /src
parent59e40ff2e2e1716aa729a3441d690696f2536cdf (diff)
downloaddolphin-3ac90b74721f95d30c1260537d075107fef1c7a5.tar.gz
dolphin-3ac90b74721f95d30c1260537d075107fef1c7a5.zip
Fixed singular form in translation. This resolves issue #14.
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 4dc558cd6b21dad9b49e03022f4c41cf7ad09e40)
Diffstat (limited to 'src')
-rw-r--r--src/renamedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renamedialog.cpp b/src/renamedialog.cpp
index d9565fb..092f503 100644
--- a/src/renamedialog.cpp
+++ b/src/renamedialog.cpp
@@ -36,7 +36,7 @@ RenameDialog::RenameDialog(const KURL::List& items) :
topLayout->setMargin(KDialog::marginHint());
const int itemCount = items.count();
- TQLabel* editLabel = new TQLabel(i18n("Rename the %n selected items to:", "Rename the %n selected items to:", itemCount),
+ TQLabel* editLabel = new TQLabel(i18n("Rename the %n selected item to:", "Rename the %n selected items to:", itemCount),
plainPage());
m_lineEdit = new KLineEdit(plainPage());