diff options
author | Harald Sitter <sitter@kde.org> | 2013-04-16 11:14:15 +0200 |
---|---|---|
committer | Harald Sitter <sitter@kde.org> | 2013-04-16 11:14:15 +0200 |
commit | 824427e2fe2a840c53ec97d98c63ab8c1a988393 (patch) | |
tree | 4783869cc1277d43e9637435b95629e3b83412b6 /src | |
parent | Let offline web application cache quota being configurable :) (diff) | |
download | rekonq-824427e2fe2a840c53ec97d98c63ab8c1a988393.tar.xz |
pass menutitle through i18n() to get it localized -.-
Diffstat (limited to 'src')
-rw-r--r-- | src/webwindow/rekonqfactory.cpp | 2 |
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); } |