[vidalia/alpha] Remove space from Recv/Sent so transifex does not complain

commit 68a3fcaa72a7ace304eec914d0231b97b5a8f336 Author: Tomás Touceda <chiiph@torproject.org> Date: Wed Mar 21 14:50:57 2012 -0300 Remove space from Recv/Sent so transifex does not complain Thanks sebb for the patch --- src/vidalia/bwgraph/GraphFrame.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vidalia/bwgraph/GraphFrame.cpp b/src/vidalia/bwgraph/GraphFrame.cpp index e44db9a..c930816 100644 --- a/src/vidalia/bwgraph/GraphFrame.cpp +++ b/src/vidalia/bwgraph/GraphFrame.cpp @@ -259,7 +259,7 @@ GraphFrame::paintTotals() y = rowHeight; _painter->setPen(RECV_COLOR); _painter->drawText(x, y, - tr("Recv: ") + totalToStr(_totalRecv) + + tr("Recv:") + " " + totalToStr(_totalRecv) + " ("+tr("%1 KB/s").arg(_recvData->first(), 0, 'f', 2)+")"); } @@ -268,7 +268,7 @@ GraphFrame::paintTotals() y += rowHeight; _painter->setPen(SEND_COLOR); _painter->drawText(x, y, - tr("Sent: ") + totalToStr(_totalSend) + + tr("Sent:") + " " + totalToStr(_totalSend) + " ("+tr("%1 KB/s").arg(_sendData->first(), 0, 'f', 2)+")"); } }
participants (1)
-
chiiph@torproject.org