diff options
| -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 e3beb60a..f9143a18 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -671,7 +671,7 @@ void MainWindow::updateWindowTitle(const QString &title)      {          if(settings->testAttribute(QWebSettings::PrivateBrowsingEnabled))          { -            setWindowTitle(i18nc("Window title when private browsing is activated", "rekonq (Private Browsing)")); +            setWindowTitle(i18nc("Window title when private browsing is activated", "rekonq (Private Browsing)"));           }          else          { @@ -682,11 +682,11 @@ void MainWindow::updateWindowTitle(const QString &title)      {          if(settings->testAttribute(QWebSettings::PrivateBrowsingEnabled))          { -            setWindowTitle(title + " - rekonq (" + i18n("Private Browsing")  + ')'); +            setWindowTitle(i18nc("window title, %1 = title of the active website", "%1 – rekonq (Private Browsing)", title) );           }          else          { -            setWindowTitle(title + " - rekonq"); +            setWindowTitle(i18nc("window title, %1 = title of the active website", "%1 – rekonq", title));          }      }  } | 
