diff options
author | Michele Calgaro <[email protected]> | 2021-11-28 14:58:21 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-11-28 14:58:39 +0900 |
commit | 4dc558cd6b21dad9b49e03022f4c41cf7ad09e40 (patch) | |
tree | 968bdc6f84ece0211a6dc41c5fb9d4bfa3e40c95 /src | |
parent | 1d0c89465d94d922fabc540bc39d2fe907bc06cd (diff) | |
download | dolphin-4dc558cd6b21dad9b49e03022f4c41cf7ad09e40.tar.gz dolphin-4dc558cd6b21dad9b49e03022f4c41cf7ad09e40.zip |
Fixed singular form in translation. This resolves issue #14.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/renamedialog.cpp | 2 |
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()); |