diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-09-09 17:24:28 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-09-09 17:24:28 +0200 |
commit | c4f242ab10b02c60f46eee90c6d8d07eac558abf (patch) | |
tree | 69af8614c637ea682466f5242afe8e648297a7b3 /src/bookmarks/bookmarkowner.cpp | |
parent | Merge commit 'refs/merge-requests/205' of git://gitorious.org/rekonq/mainline (diff) | |
parent | make the string plural. (diff) | |
download | rekonq-c4f242ab10b02c60f46eee90c6d8d07eac558abf.tar.xz |
Merge branch 'master' of gitorious.org:rekonq/mainline
Diffstat (limited to 'src/bookmarks/bookmarkowner.cpp')
-rw-r--r-- | src/bookmarks/bookmarkowner.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bookmarks/bookmarkowner.cpp b/src/bookmarks/bookmarkowner.cpp index f9e64d68..8a05d646 100644 --- a/src/bookmarks/bookmarkowner.cpp +++ b/src/bookmarks/bookmarkowner.cpp @@ -167,7 +167,9 @@ void BookmarkOwner::openBookmarkFolder(const KBookmark &bookmark) { if (KMessageBox::warningContinueCancel( Application::instance()->mainWindow(), - i18n("You are about to open %1 tabs.\nAre you sure?", urlList.length())) + 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?", urlList.length())) != KMessageBox::Continue ) return; |