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

chiiph at torproject.org chiiph at torproject.org
Wed Mar 21 17:52:10 UTC 2012


commit 68a3fcaa72a7ace304eec914d0231b97b5a8f336
Author: Tomás Touceda <chiiph at 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)+")");
   }
 }



More information about the tor-commits mailing list