diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-24 23:47:06 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-24 23:47:06 +0200 |
commit | 7ff973842f08ef4dad009ce5df6d4df31128ca09 (patch) | |
tree | 81095401aab1a0a587dafc84baf7f268cce398e1 | |
parent | Merge branch 'i18n' (diff) | |
download | rekonq-7ff973842f08ef4dad009ce5df6d4df31128ca09.tar.xz |
Home page translations
-rw-r--r-- | src/homepage.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/homepage.cpp b/src/homepage.cpp index 103f018c..54a89129 100644 --- a/src/homepage.cpp +++ b/src/homepage.cpp @@ -110,7 +110,7 @@ QString HomePage::speedDial() QString HomePage::searchEngines() { - QString engines = "<h2>Search Engines</h2>"; + QString engines = "<h2>" + i18n("Search Engines") + "</h2>"; // Google search engine engines += "<form method=\"get\" action=\"http://www.google.com/search\">"; @@ -124,7 +124,7 @@ QString HomePage::searchEngines() QString HomePage::recentlyClosedTabs() { - QString closed = "<h2>Recently closed tabs</h2>"; + QString closed = "<h2>" + i18n("Recently closed tabs") + "</h2>"; closed += "<ul>"; KUrl::List links = Application::instance()->mainWindow()->mainView()->recentlyClosedTabs(); @@ -141,7 +141,7 @@ QString HomePage::recentlyClosedTabs() QString HomePage::fillRecentHistory() { - QString history = "<h2>Last 20 visited sites</h2>"; + QString history = "<h2>" + i18n("Last 20 visited sites") + "</h2>"; history += "<ul>"; HistoryTreeModel *model = Application::historyManager()->historyTreeModel(); |