summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainwindow.cpp6
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(),