aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/http
diff options
context:
space:
mode:
authorGravatar un1versal2016-08-09 12:13:44 +0100
committerGravatar un1versal2016-08-16 09:30:45 +0100
commitbb37fd861477dc37d3b94df187247edcf2665230 (patch)
treefeb88fc7a6961ee75a3a2aca279e78a7f9d9082f /src/modules/http
parentDccFileTransfer: no need to use abreviations (diff)
downloadKVIrc-bb37fd861477dc37d3b94df187247edcf2665230.tar.gz
KVIrc-bb37fd861477dc37d3b94df187247edcf2665230.tar.bz2
KVIrc-bb37fd861477dc37d3b94df187247edcf2665230.zip
HttpFileTransfer: no need to use abreviattions
Diffstat (limited to 'src/modules/http')
-rw-r--r--src/modules/http/HttpFileTransfer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/http/HttpFileTransfer.cpp b/src/modules/http/HttpFileTransfer.cpp
index 970b1c8d9..d1112450e 100644
--- a/src/modules/http/HttpFileTransfer.cpp
+++ b/src/modules/http/HttpFileTransfer.cpp
@@ -232,7 +232,7 @@ void HttpFileTransfer::displayPaint(QPainter * p, int column, QRect rect)
int iRightHalf = iW - (iLeftHalf + 1);
int iLineSpacing = fm.lineSpacing() + 2;
- txt = __tr2qs_ctx("Avg:", "dcc");
+ txt = __tr2qs_ctx("Average:", "dcc");
txt += " ";
if(iAvgSpeed >= 0)
{
@@ -258,7 +258,7 @@ void HttpFileTransfer::displayPaint(QPainter * p, int column, QRect rect)
if(bIsTerminated)
{
KviTimeUtils::secondsToDaysHoursMinsSecs(kvi_timeSpan(m_tTransferEndTime, m_tTransferStartTime), &uD, &uH, &uM, &uS);
- txt = "TOT: ";
+ txt = "Total: ";
if(uD > 0)
txt += __tr2qs_ctx("%1d %2h %3m %4s", "http").arg(uD).arg(uH).arg(uM).arg(uS);
else if(uH > 0)