diff options
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 63c2c29d..e3beb60a 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -682,11 +682,11 @@ void MainWindow::updateWindowTitle(const QString &title) { if(settings->testAttribute(QWebSettings::PrivateBrowsingEnabled)) { - setWindowTitle(i18nc("window title, %1 = Title of the active website", "%1 – rekonq (Private Browsing)", title) ); + setWindowTitle(title + " - rekonq (" + i18n("Private Browsing") + ')'); } else { - setWindowTitle(i18nc("window title, %1 = title of the active website", "%1 – rekonq")); + setWindowTitle(title + " - rekonq"); } } } |