diff options
author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-07-14 19:44:01 +0200 |
---|---|---|
committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-07-14 19:44:01 +0200 |
commit | 3ad0cbadf61dcce5fde72d4a30c5db7da345acb0 (patch) | |
tree | a248f3b428ee688abb50a286665fb39ef1db2dc9 | |
parent | Add comment="KDE::DoNotExtract" to TextLabel. (diff) | |
download | rekonq-3ad0cbadf61dcce5fde72d4a30c5db7da345acb0.tar.xz |
add i18n to untranslatable strings
I chose to do this in my own clone, instead of doing it
directly in the mainline, because I’m not sure
whether how I did it is “good pratice”.
If you think it is, please merge it :-)
-rw-r--r-- | src/analyzer/networkanalyzer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analyzer/networkanalyzer.cpp b/src/analyzer/networkanalyzer.cpp index 47713557..1cf45e66 100644 --- a/src/analyzer/networkanalyzer.cpp +++ b/src/analyzer/networkanalyzer.cpp @@ -168,7 +168,7 @@ void NetworkAnalyzer::showItemDetails( QTreeWidgetItem *item ) QString details; QNetworkRequest req = _itemRequestMap[item]; - details += QL1S("<h3>Request Details</h3>"); + details += i18n("<h3>Request Details</h3>"); details += QL1S("<ul>"); foreach(const QByteArray &header, req.rawHeaderList() ) { @@ -181,7 +181,7 @@ void NetworkAnalyzer::showItemDetails( QTreeWidgetItem *item ) details += QL1S("</ul>"); QPair< QList<QByteArray>, QList<QByteArray> > replyHeaders = _itemReplyMap[item]; - details += QL1S("<h3>Response Details</h3>"); + details += i18n("<h3>Response Details</h3>"); details += QL1S("<ul>"); for ( int i = 0; i < replyHeaders.first.count(); i++ ) { |