diff options
author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-05-26 02:04:32 +0200 |
---|---|---|
committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-05-26 02:04:32 +0200 |
commit | f9aaf921e6760ce6f412855a331851dca076ff1d (patch) | |
tree | 3d5be06187c8d011afa037f8aa8439645c5703da /src/history/historypanel.cpp | |
parent | Merge commit 'refs/merge-requests/2277' of git://gitorious.org/rekonq/mainlin... (diff) | |
download | rekonq-f9aaf921e6760ce6f412855a331851dca076ff1d.tar.xz |
Add plural form to the strings
BUG: 238810
Diffstat (limited to 'src/history/historypanel.cpp')
-rw-r--r-- | src/history/historypanel.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/history/historypanel.cpp b/src/history/historypanel.cpp index 65c9de81..28284e0a 100644 --- a/src/history/historypanel.cpp +++ b/src/history/historypanel.cpp @@ -172,7 +172,9 @@ void HistoryPanel::openAll() if (allChild.length() > 8) { if (!(KMessageBox::warningContinueCancel(this, - i18n("You are about to open %1 tabs.\nAre you sure?", + i18ncp("%1=Number of tabs. Value is always >=8", + "You are about to open %1 tabs.\nAre you sure?", + "You are about to open %1 tabs.\nAre you sure?", QString::number(allChild.length()))) == KMessageBox::Continue) ) return; |