summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-09-24 23:47:06 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-09-24 23:47:06 +0200
commit7ff973842f08ef4dad009ce5df6d4df31128ca09 (patch)
tree81095401aab1a0a587dafc84baf7f268cce398e1 /src
parentMerge branch 'i18n' (diff)
downloadrekonq-7ff973842f08ef4dad009ce5df6d4df31128ca09.tar.xz
Home page translations
Diffstat (limited to 'src')
-rw-r--r--src/homepage.cpp6
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();