diff options
| author | Frank Reininghaus <[email protected]> | 2012-12-13 22:24:34 +0100 |
|---|---|---|
| committer | Frank Reininghaus <[email protected]> | 2012-12-13 22:30:07 +0100 |
| commit | bf39cc3808886eb8c502ebb9c5a91b3754f3b4bf (patch) | |
| tree | 3f433b4d6c824e963b451ea632348801a7096230 /src/views | |
| parent | b5000b871dd6c2e688f99e1f6383806bc6b427d4 (diff) | |
Add i18 call to untranslated string
The string was added in ecb2715ead30c2b9d483748074524322e5ecedcf.
According to the soft message freeze policy on techbase, it's OK to fix
previously untranslated strings. Translators, please tell me if I'm
wrong, then I'll remove the string and the surrounding code and re-add
it to master later for KDE 4.11. Sorry for the trouble.
Thanks to David Faure for pointing out this mistake!
CCMAIL: [email protected]
Diffstat (limited to 'src/views')
| -rw-r--r-- | src/views/dolphinview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index ea64a04dc..57c94a33b 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -801,7 +801,7 @@ void DolphinView::slotItemsActivated(const QSet<int>& indexes) } if (items.count() > 5) { - QString question = QString("Are you sure you want to open %1 items?").arg(items.count()); + QString question = i18np("Are you sure you want to open 1 item?", "Are you sure you want to open %1 items?", items.count()); const int answer = KMessageBox::warningYesNo(this, question); if (answer != KMessageBox::Yes) { return; |
