diff options
| author | pano <pano@linux-xtvb.(none)> | 2010-02-19 18:34:01 +0100 | 
|---|---|---|
| committer | pano <pano@linux-xtvb.(none)> | 2010-02-19 18:34:01 +0100 | 
| commit | 0debb4dc3c946ac73c8e622f7c73565da7597767 (patch) | |
| tree | 075bf139d297b4cf87b12b93ab40cba9eea5f065 /src | |
| parent | change setHtml( string ) to setHtml( string, url ) to let webviews (diff) | |
| download | rekonq-0debb4dc3c946ac73c8e622f7c73565da7597767.tar.xz | |
window title fixes
Diffstat (limited to 'src')
| -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));          }      }  } | 
