summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald Sitter <sitter@kde.org>2013-04-16 11:14:15 +0200
committerHarald Sitter <sitter@kde.org>2013-04-16 11:14:15 +0200
commit824427e2fe2a840c53ec97d98c63ab8c1a988393 (patch)
tree4783869cc1277d43e9637435b95629e3b83412b6
parentLet offline web application cache quota being configurable :) (diff)
downloadrekonq-824427e2fe2a840c53ec97d98c63ab8c1a988393.tar.xz
pass menutitle through i18n() to get it localized -.-
-rw-r--r--src/webwindow/rekonqfactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webwindow/rekonqfactory.cpp b/src/webwindow/rekonqfactory.cpp
index af15bf42..86c60b55 100644
--- a/src/webwindow/rekonqfactory.cpp
+++ b/src/webwindow/rekonqfactory.cpp
@@ -322,7 +322,7 @@ void RekonqFactory::fillMenu(KMenu *m, QDomNode node)
if (el.tagName() == QL1S("text"))
{
- const QString menuTitle = el.text();
+ const QString menuTitle = i18n(qPrintable(el.text()));
m->setTitle(menuTitle);
}