diff options
author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-09-08 13:59:55 +0200 |
---|---|---|
committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-09-08 13:59:55 +0200 |
commit | eccac019eef9645a82ea299d6cd40f4778e6c3d2 (patch) | |
tree | 4148182ba739120fc827d370c16121286dc5f67e /src/bookmarks | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-eccac019eef9645a82ea299d6cd40f4778e6c3d2.tar.xz |
make the string plural.
See https://bugs.kde.org/show_bug.cgi?id=238810
Since the string is now identical to the one in the bugreport I don’t think we broke string freeze ;-)
Diffstat (limited to 'src/bookmarks')
-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; |