diff options
| author | Andrea Diamantini <adjam7@gmail.com> | 2010-07-22 00:32:09 +0200 | 
|---|---|---|
| committer | Andrea Diamantini <adjam7@gmail.com> | 2010-07-22 00:32:09 +0200 | 
| commit | 7209ddcd11d448b3a1d9507c06979ff4b78df0f9 (patch) | |
| tree | 0ef59bdf0524df2c8b5147c19ea0b9a37bb5ec22 /src | |
| parent | rekonq 0.5.51 (diff) | |
| parent | add i18n to untranslatable strings (diff) | |
| download | rekonq-7209ddcd11d448b3a1d9507c06979ff4b78df0f9.tar.xz | |
Merge commit 'refs/merge-requests/150' of git://gitorious.org/rekonq/mainline
Diffstat (limited to 'src')
| -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++ )       {  | 
