diff options
author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-09-03 17:19:30 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-10 10:27:47 +0200 |
commit | 5139de923ad96c0207e05a6792fffae600fea487 (patch) | |
tree | a390667252b5e2512c607a6f86d7a3cb702c1965 | |
parent | Make strings comply to the KDE HIG (diff) | |
download | rekonq-5139de923ad96c0207e05a6792fffae600fea487.tar.xz |
Some typo fixes
-rw-r--r-- | src/mainwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 7a3d165f..7f5c5996 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -352,7 +352,7 @@ void MainWindow::setupActions() // Bookmarks ToolBar Action QAction *qa = m_bmBar->toggleViewAction(); - qa->setText( i18n("Bookmarks ToolBar") ); + qa->setText( i18n("Bookmarks Toolbar") ); qa->setIcon( KIcon("bookmark-toolbar") ); actionCollection()->addAction(QLatin1String("bm_bar"), qa); } @@ -836,9 +836,9 @@ bool MainWindow::queryClose() int answer = KMessageBox::questionYesNoCancel( this, i18np("Are you sure you want to close the window?\n" \ - "You have 1 tab open", + "You have 1 tab open.", "Are you sure you want to close the window?\n" \ - "You have %1 tabs open", + "You have %1 tabs open.", m_view->count()), i18n("Closing..."), KStandardGuiItem::quit(), |