[tor-commits] [bridgedb/master] Remove reference to I18n.py

aagbsn at torproject.org aagbsn at torproject.org
Fri Jun 21 09:31:14 UTC 2013


commit 663a5d971bc2d08ffe23732675a689ff8c919114
Author: aagbsn <aagbsn at extc.org>
Date:   Tue May 28 14:53:05 2013 -0400

    Remove reference to I18n.py
---
 lib/bridgedb/Bucket.py |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/bridgedb/Bucket.py b/lib/bridgedb/Bucket.py
index 2554bed..72f8962 100644
--- a/lib/bridgedb/Bucket.py
+++ b/lib/bridgedb/Bucket.py
@@ -23,9 +23,9 @@ instead of 'unallocated'. This is why they are called pseudo-distributors.
 
 import time
 import bridgedb.Storage
-from bridgedb.I18n import BRIDGEDB_TEXT
 import bridgedb.Bridges 
 import binascii
+from gettext import gettext as _
 toHex = binascii.b2a_hex
 
 
@@ -230,9 +230,9 @@ class BucketManager:
             for bh in bridgeHistories:
                 days = bh.tosa / long(60*60*24)
                 line = "%s:%s\t(%d %s)" %  \
-                        (bh.ip, bh.port, days, BRIDGEDB_TEXT[24])
+                        (bh.ip, bh.port, days,  _("""days at this address"""))
                 if str(bh.fingerprint) in blocklist.keys():
-                    line = line + "\t%s: (%s)" % (BRIDGEDB_TEXT[16],
+                    line = line + "\t%s: (%s)" % (_("""(Might be blocked)"""),
                             ",".join(blocklist[bh.fingerprint]),)
                 f.write(line + '\n')
             f.close()





More information about the tor-commits mailing list