tor-commits
Threads by month
- ----- 2025 -----
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
March 2011
- 18 participants
- 683 discussions
commit b62abf9f21499abda5b703271d5663a2a7380ca0
Author: Jacob Appelbaum <jacob(a)appelbaum.net>
Date: Wed Mar 16 18:35:31 2011 -0700
Fix libevent autoconf bug #2698
---
changes/bug2698 | 3 +++
configure.in | 20 +++++++++++++++++---
2 files changed, 20 insertions(+), 3 deletions(-)
diff --git a/changes/bug2698 b/changes/bug2698
new file mode 100644
index 0000000..3c2468f
--- /dev/null
+++ b/changes/bug2698
@@ -0,0 +1,3 @@
+ o Minor build issues
+ - We incorrectly linked libevent when configured with
+ --enable-static-libevent. Fixes bug 2698.
diff --git a/configure.in b/configure.in
index 4436fe2..bd94174 100644
--- a/configure.in
+++ b/configure.in
@@ -271,7 +271,21 @@ tor_libevent_pkg_debian="libevent-dev"
tor_libevent_devpkg_redhat="libevent-devel"
tor_libevent_devpkg_debian="libevent-dev"
-TOR_SEARCH_LIBRARY(libevent, $trylibeventdir, [-levent $TOR_LIB_WS32], [
+dnl On Gnu/Linux or any place we require it, we'll add librt to the Libevent
+dnl linking for static builds.
+STATIC_LIBEVENT_FLAGS=""
+if test "$enable_static_libevent" = "yes"; then
+ dnl Determine if we have clock_gettime in librt
+ AC_SEARCH_LIBS([clock_gettime], [rt],
+ [have_rt=yes])
+ if test "$have_rt" = yes; then
+ STATIC_LIBEVENT_FLAGS=" -lrt "
+ else
+ STATIC_LIBEVENT_FLAGS=""
+ fi
+fi
+
+TOR_SEARCH_LIBRARY(libevent, $trylibeventdir, [-levent $STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32], [
#ifdef WIN32
#include <winsock2.h>
#endif
@@ -294,7 +308,7 @@ dnl Now check for particular libevent functions.
save_LIBS="$LIBS"
save_LDFLAGS="$LDFLAGS"
save_CPPFLAGS="$CPPFLAGS"
-LIBS="-levent $TOR_LIB_WS32 $LIBS"
+LIBS="-levent $STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32 $LIBS"
LDFLAGS="$TOR_LDFLAGS_libevent $LDFLAGS"
CPPFLAGS="$TOR_CPPFLAGS_libevent $CPPFLAGS"
AC_CHECK_FUNCS(event_get_version event_get_version_number event_get_method event_set_log_callback evdns_set_outgoing_bind_address event_base_loopexit)
@@ -315,7 +329,7 @@ if test "$enable_static_libevent" = "yes"; then
if test "$tor_cv_library_libevent_dir" = "(system)"; then
AC_MSG_ERROR("You must specify an explicit --with-libevent-dir=x option when using --enable-static-libevent")
else
- TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent.a"
+ TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent.a $STATIC_LIBEVENT_FLAGS"
fi
else
TOR_LIBEVENT_LIBS="-levent"
1
0
commit 47621188328c19be18a6915f937e4e0f7e04fba8
Author: Sebastian Hahn <sebastian(a)torproject.org>
Date: Sun Mar 27 05:35:17 2011 +0200
Small tweaks for bug2698 bugfix
---
changes/bug2698 | 9 ++++++---
configure.in | 2 --
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/changes/bug2698 b/changes/bug2698
index 3c2468f..d995788 100644
--- a/changes/bug2698
+++ b/changes/bug2698
@@ -1,3 +1,6 @@
- o Minor build issues
- - We incorrectly linked libevent when configured with
- --enable-static-libevent. Fixes bug 2698.
+ o Minor bugfixes:
+ - Fix an issue that prevented static linking of libevent on
+ some platforms (notably Linux). Fixes bug 2698, bugfix on
+ versions 0.2.1.23/0.2.2.8-alpha (the versions introducing
+ the --with-static-libevent configure option).
+
diff --git a/configure.in b/configure.in
index bd94174..6ed43ce 100644
--- a/configure.in
+++ b/configure.in
@@ -280,8 +280,6 @@ if test "$enable_static_libevent" = "yes"; then
[have_rt=yes])
if test "$have_rt" = yes; then
STATIC_LIBEVENT_FLAGS=" -lrt "
- else
- STATIC_LIBEVENT_FLAGS=""
fi
fi
1
0

r24490: {arm} Upping the time we block for to identify application connect (arm/trunk/src/interface/connections)
by Damian Johnson 28 Mar '11
by Damian Johnson 28 Mar '11
28 Mar '11
Author: atagar
Date: 2011-03-28 16:10:51 +0000 (Mon, 28 Mar 2011)
New Revision: 24490
Modified:
arm/trunk/src/interface/connections/connPanel.py
Log:
Upping the time we block for to identify application connections so they're commonly fetched on the first refresh.
Modified: arm/trunk/src/interface/connections/connPanel.py
===================================================================
--- arm/trunk/src/interface/connections/connPanel.py 2011-03-28 16:08:42 UTC (rev 24489)
+++ arm/trunk/src/interface/connections/connPanel.py 2011-03-28 16:10:51 UTC (rev 24490)
@@ -356,7 +356,7 @@
# Fetches results. If the query finishes quickly then this is what we just
# asked for, otherwise these belong to the last resolution.
- appResults = self._appResolver.getResults(0.02)
+ appResults = self._appResolver.getResults(0.2)
for line in unresolvedLines:
linePort = line.foreign.getPort()
1
0

r24489: {arm} Renaming client resources to circ. (arm/trunk/src/interface/connections)
by Damian Johnson 28 Mar '11
by Damian Johnson 28 Mar '11
28 Mar '11
Author: atagar
Date: 2011-03-28 16:08:42 +0000 (Mon, 28 Mar 2011)
New Revision: 24489
Added:
arm/trunk/src/interface/connections/circEntry.py
Removed:
arm/trunk/src/interface/connections/clientEntry.py
Modified:
arm/trunk/src/interface/connections/connPanel.py
Log:
Renaming client resources to circ.
Copied: arm/trunk/src/interface/connections/circEntry.py (from rev 24488, arm/trunk/src/interface/connections/clientEntry.py)
===================================================================
--- arm/trunk/src/interface/connections/circEntry.py (rev 0)
+++ arm/trunk/src/interface/connections/circEntry.py 2011-03-28 16:08:42 UTC (rev 24489)
@@ -0,0 +1,215 @@
+"""
+Connection panel entries for client circuits. This includes a header entry
+followed by an entry for each hop in the circuit. For instance:
+
+89.188.20.246:42667 --> 217.172.182.26 (de) General / Built 8.6m (CIRCUIT)
+| 85.8.28.4 (se) 98FBC3B2B93897A78CDD797EF549E6B62C9A8523 1 / Guard
+| 91.121.204.76 (fr) 546387D93F8D40CFF8842BB9D3A8EC477CEDA984 2 / Middle
++- 217.172.182.26 (de) 5CFA9EA136C0EA0AC096E5CEA7EB674F1207CF86 3 / Exit
+"""
+
+import curses
+
+from interface.connections import entries, connEntry
+from util import torTools, uiTools
+
+# cached fingerprint -> (IP Address, ORPort) results
+RELAY_INFO = {}
+
+def getRelayInfo(fingerprint):
+ """
+ Provides the (IP Address, ORPort) tuple for the given relay. If the lookup
+ fails then this returns ("192.168.0.1", "0").
+
+ Arguments:
+ fingerprint - relay to look up
+ """
+
+ if not fingerprint in RELAY_INFO:
+ conn = torTools.getConn()
+ failureResult = ("192.168.0.1", "0")
+
+ nsEntry = conn.getConsensusEntry(fingerprint)
+ if not nsEntry: return failureResult
+
+ nsLineComp = nsEntry.split("\n")[0].split(" ")
+ if len(nsLineComp) < 8: return failureResult
+
+ RELAY_INFO[fingerprint] = (nsLineComp[6], nsLineComp[7])
+
+ return RELAY_INFO[fingerprint]
+
+class CircEntry(connEntry.ConnectionEntry):
+ def __init__(self, circuitID, status, purpose, path):
+ connEntry.ConnectionEntry.__init__(self, "127.0.0.1", "0", "127.0.0.1", "0")
+
+ self.circuitID = circuitID
+ self.status = status
+
+ # drops to lowercase except the first letter
+ if len(purpose) >= 2:
+ purpose = purpose[0].upper() + purpose[1:].lower()
+
+ self.lines = [CircHeaderLine(self.circuitID, purpose)]
+
+ # Overwrites attributes of the initial line to make it more fitting as the
+ # header for our listing.
+
+ self.lines[0].baseType = connEntry.Category.CIRCUIT
+
+ self.update(status, path)
+
+ def update(self, status, path):
+ """
+ Our status and path can change over time if the circuit is still in the
+ process of being built. Updates these attributs of our relay.
+
+ Arguments:
+ status - new status of the circuit
+ path - list of fingerprints for the series of relays involved in the
+ circuit
+ """
+
+ self.status = status
+ self.lines = [self.lines[0]]
+
+ if status == "BUILT" and not self.lines[0].isBuilt:
+ exitIp, exitORPort = getRelayInfo(path[-1])
+ self.lines[0].setExit(exitIp, exitORPort, path[-1])
+
+ for i in range(len(path)):
+ relayFingerprint = path[i]
+ relayIp, relayOrPort = getRelayInfo(relayFingerprint)
+
+ if i == len(path) - 1:
+ if status == "BUILT": placementType = "Exit"
+ else: placementType = "Extending"
+ elif i == 0: placementType = "Guard"
+ else: placementType = "Middle"
+
+ placementLabel = "%i / %s" % (i + 1, placementType)
+
+ self.lines.append(CircLine(relayIp, relayOrPort, relayFingerprint, placementLabel))
+
+ self.lines[-1].isLast = True
+
+class CircHeaderLine(connEntry.ConnectionLine):
+ """
+ Initial line of a client entry. This has the same basic format as connection
+ lines except that its etc field has circuit attributes.
+ """
+
+ def __init__(self, circuitID, purpose):
+ connEntry.ConnectionLine.__init__(self, "127.0.0.1", "0", "0.0.0.0", "0", False, False)
+ self.circuitID = circuitID
+ self.purpose = purpose
+ self.isBuilt = False
+
+ def setExit(self, exitIpAddr, exitPort, exitFingerprint):
+ connEntry.ConnectionLine.__init__(self, "127.0.0.1", "0", exitIpAddr, exitPort, False, False)
+ self.isBuilt = True
+ self.foreign.fingerprintOverwrite = exitFingerprint
+
+ def getType(self):
+ return connEntry.Category.CIRCUIT
+
+ def getDestinationLabel(self, maxLength, includeLocale=False, includeHostname=False):
+ if not self.isBuilt: return "Building..."
+ return connEntry.ConnectionLine.getDestinationLabel(self, maxLength, includeLocale, includeHostname)
+
+ def getEtcContent(self, width, listingType):
+ """
+ Attempts to provide all circuit related stats. Anything that can't be
+ shown completely (not enough room) is dropped.
+ """
+
+ etcAttr = ["Purpose: %s" % self.purpose, "Circuit ID: %i" % self.circuitID]
+
+ for i in range(len(etcAttr), -1, -1):
+ etcLabel = ", ".join(etcAttr[:i])
+ if len(etcLabel) <= width: return etcLabel
+
+ return ""
+
+ def getDetails(self, width):
+ if not self.isBuilt:
+ detailFormat = curses.A_BOLD | uiTools.getColor(connEntry.CATEGORY_COLOR[self.getType()])
+ return [uiTools.DrawEntry("Building Circuit...", detailFormat)]
+ else: return connEntry.ConnectionLine.getDetails(self, width)
+
+class CircLine(connEntry.ConnectionLine):
+ """
+ An inidividual hop in a circuit. This overwrites the displayed listing, but
+ otherwise makes use of the ConnectionLine attributes (for the detail display,
+ caching, etc).
+ """
+
+ def __init__(self, fIpAddr, fPort, fFingerprint, placementLabel):
+ connEntry.ConnectionLine.__init__(self, "127.0.0.1", "0", fIpAddr, fPort)
+ self.foreign.fingerprintOverwrite = fFingerprint
+ self.placementLabel = placementLabel
+ self.includePort = False
+
+ # determines the sort of left hand bracketing we use
+ self.isLast = False
+
+ def getType(self):
+ return connEntry.Category.CIRCUIT
+
+ def getListingEntry(self, width, currentTime, listingType):
+ """
+ Provides the DrawEntry for this relay in the circuilt listing. Lines are
+ composed of the following components:
+ <bracket> <dst> <etc> <placement label>
+
+ The dst and etc entries largely match their ConnectionEntry counterparts.
+
+ Arguments:
+ width - maximum length of the line
+ currentTime - the current unix time (ignored)
+ listingType - primary attribute we're listing connections by
+ """
+
+ return entries.ConnectionPanelLine.getListingEntry(self, width, currentTime, listingType)
+
+ def _getListingEntry(self, width, currentTime, listingType):
+ lineFormat = uiTools.getColor(connEntry.CATEGORY_COLOR[self.getType()])
+
+ # The required widths are the sum of the following:
+ # bracketing (3 characters)
+ # placementLabel (14 characters)
+ # gap between etc and placement label (5 characters)
+
+ if self.isLast: bracket = (curses.ACS_LLCORNER, curses.ACS_HLINE, ord(' '))
+ else: bracket = (curses.ACS_VLINE, ord(' '), ord(' '))
+ baselineSpace = len(bracket) + 14 + 5
+
+ dst, etc = "", ""
+ if listingType == entries.ListingType.IP_ADDRESS:
+ # TODO: include hostname when that's available
+ # dst width is derived as:
+ # src (21) + dst (26) + divider (7) + right gap (2) - bracket (3) = 53 char
+ dst = "%-53s" % self.getDestinationLabel(53, includeLocale = True)
+ etc = self.getEtcContent(width - baselineSpace - len(dst), listingType)
+ elif listingType == entries.ListingType.HOSTNAME:
+ # min space for the hostname is 40 characters
+ etc = self.getEtcContent(width - baselineSpace - 40, listingType)
+ dstLayout = "%%-%is" % (width - baselineSpace - len(etc))
+ dst = dstLayout % self.foreign.getHostname(self.foreign.getIpAddr())
+ elif listingType == entries.ListingType.FINGERPRINT:
+ # dst width is derived as:
+ # src (9) + dst (40) + divider (7) + right gap (2) - bracket (3) = 55 char
+ dst = "%-55s" % self.foreign.getFingerprint()
+ etc = self.getEtcContent(width - baselineSpace - len(dst), listingType)
+ else:
+ # min space for the nickname is 50 characters
+ etc = self.getEtcContent(width - baselineSpace - 50, listingType)
+ dstLayout = "%%-%is" % (width - baselineSpace - len(etc))
+ dst = dstLayout % self.foreign.getNickname()
+
+ drawEntry = uiTools.DrawEntry("%-14s" % self.placementLabel, lineFormat)
+ drawEntry = uiTools.DrawEntry(" " * (width - baselineSpace - len(dst) - len(etc) + 5), lineFormat, drawEntry)
+ drawEntry = uiTools.DrawEntry(dst + etc, lineFormat, drawEntry)
+ drawEntry = uiTools.DrawEntry(bracket, curses.A_NORMAL, drawEntry, lockFormat = True)
+ return drawEntry
+
Deleted: arm/trunk/src/interface/connections/clientEntry.py
===================================================================
--- arm/trunk/src/interface/connections/clientEntry.py 2011-03-28 16:02:37 UTC (rev 24488)
+++ arm/trunk/src/interface/connections/clientEntry.py 2011-03-28 16:08:42 UTC (rev 24489)
@@ -1,215 +0,0 @@
-"""
-Connection panel entries for client circuits. This includes a header entry
-followed by an entry for each hop in the circuit. For instance:
-
-89.188.20.246:42667 --> 217.172.182.26 (de) General / Built 8.6m (CIRCUIT)
-| 85.8.28.4 (se) 98FBC3B2B93897A78CDD797EF549E6B62C9A8523 1 / Guard
-| 91.121.204.76 (fr) 546387D93F8D40CFF8842BB9D3A8EC477CEDA984 2 / Middle
-+- 217.172.182.26 (de) 5CFA9EA136C0EA0AC096E5CEA7EB674F1207CF86 3 / Exit
-"""
-
-import curses
-
-from interface.connections import entries, connEntry
-from util import torTools, uiTools
-
-# cached fingerprint -> (IP Address, ORPort) results
-RELAY_INFO = {}
-
-def getRelayInfo(fingerprint):
- """
- Provides the (IP Address, ORPort) tuple for the given relay. If the lookup
- fails then this returns ("192.168.0.1", "0").
-
- Arguments:
- fingerprint - relay to look up
- """
-
- if not fingerprint in RELAY_INFO:
- conn = torTools.getConn()
- failureResult = ("192.168.0.1", "0")
-
- nsEntry = conn.getConsensusEntry(fingerprint)
- if not nsEntry: return failureResult
-
- nsLineComp = nsEntry.split("\n")[0].split(" ")
- if len(nsLineComp) < 8: return failureResult
-
- RELAY_INFO[fingerprint] = (nsLineComp[6], nsLineComp[7])
-
- return RELAY_INFO[fingerprint]
-
-class ClientEntry(connEntry.ConnectionEntry):
- def __init__(self, circuitID, status, purpose, path):
- connEntry.ConnectionEntry.__init__(self, "127.0.0.1", "0", "127.0.0.1", "0")
-
- self.circuitID = circuitID
- self.status = status
-
- # drops to lowercase except the first letter
- if len(purpose) >= 2:
- purpose = purpose[0].upper() + purpose[1:].lower()
-
- self.lines = [ClientHeaderLine(self.circuitID, purpose)]
-
- # Overwrites attributes of the initial line to make it more fitting as the
- # header for our listing.
-
- self.lines[0].baseType = connEntry.Category.CIRCUIT
-
- self.update(status, path)
-
- def update(self, status, path):
- """
- Our status and path can change over time if the circuit is still in the
- process of being built. Updates these attributs of our relay.
-
- Arguments:
- status - new status of the circuit
- path - list of fingerprints for the series of relays involved in the
- circuit
- """
-
- self.status = status
- self.lines = [self.lines[0]]
-
- if status == "BUILT" and not self.lines[0].isBuilt:
- exitIp, exitORPort = getRelayInfo(path[-1])
- self.lines[0].setExit(exitIp, exitORPort, path[-1])
-
- for i in range(len(path)):
- relayFingerprint = path[i]
- relayIp, relayOrPort = getRelayInfo(relayFingerprint)
-
- if i == len(path) - 1:
- if status == "BUILT": placementType = "Exit"
- else: placementType = "Extending"
- elif i == 0: placementType = "Guard"
- else: placementType = "Middle"
-
- placementLabel = "%i / %s" % (i + 1, placementType)
-
- self.lines.append(ClientLine(relayIp, relayOrPort, relayFingerprint, placementLabel))
-
- self.lines[-1].isLast = True
-
-class ClientHeaderLine(connEntry.ConnectionLine):
- """
- Initial line of a client entry. This has the same basic format as connection
- lines except that its etc field has circuit attributes.
- """
-
- def __init__(self, circuitID, purpose):
- connEntry.ConnectionLine.__init__(self, "127.0.0.1", "0", "0.0.0.0", "0", False, False)
- self.circuitID = circuitID
- self.purpose = purpose
- self.isBuilt = False
-
- def setExit(self, exitIpAddr, exitPort, exitFingerprint):
- connEntry.ConnectionLine.__init__(self, "127.0.0.1", "0", exitIpAddr, exitPort, False, False)
- self.isBuilt = True
- self.foreign.fingerprintOverwrite = exitFingerprint
-
- def getType(self):
- return connEntry.Category.CIRCUIT
-
- def getDestinationLabel(self, maxLength, includeLocale=False, includeHostname=False):
- if not self.isBuilt: return "Building..."
- return connEntry.ConnectionLine.getDestinationLabel(self, maxLength, includeLocale, includeHostname)
-
- def getEtcContent(self, width, listingType):
- """
- Attempts to provide all circuit related stats. Anything that can't be
- shown completely (not enough room) is dropped.
- """
-
- etcAttr = ["Purpose: %s" % self.purpose, "Circuit ID: %i" % self.circuitID]
-
- for i in range(len(etcAttr), -1, -1):
- etcLabel = ", ".join(etcAttr[:i])
- if len(etcLabel) <= width: return etcLabel
-
- return ""
-
- def getDetails(self, width):
- if not self.isBuilt:
- detailFormat = curses.A_BOLD | uiTools.getColor(connEntry.CATEGORY_COLOR[self.getType()])
- return [uiTools.DrawEntry("Building Circuit...", detailFormat)]
- else: return connEntry.ConnectionLine.getDetails(self, width)
-
-class ClientLine(connEntry.ConnectionLine):
- """
- An inidividual hop in a circuit. This overwrites the displayed listing, but
- otherwise makes use of the ConnectionLine attributes (for the detail display,
- caching, etc).
- """
-
- def __init__(self, fIpAddr, fPort, fFingerprint, placementLabel):
- connEntry.ConnectionLine.__init__(self, "127.0.0.1", "0", fIpAddr, fPort)
- self.foreign.fingerprintOverwrite = fFingerprint
- self.placementLabel = placementLabel
- self.includePort = False
-
- # determines the sort of left hand bracketing we use
- self.isLast = False
-
- def getType(self):
- return connEntry.Category.CIRCUIT
-
- def getListingEntry(self, width, currentTime, listingType):
- """
- Provides the DrawEntry for this relay in the circuilt listing. Lines are
- composed of the following components:
- <bracket> <dst> <etc> <placement label>
-
- The dst and etc entries largely match their ConnectionEntry counterparts.
-
- Arguments:
- width - maximum length of the line
- currentTime - the current unix time (ignored)
- listingType - primary attribute we're listing connections by
- """
-
- return entries.ConnectionPanelLine.getListingEntry(self, width, currentTime, listingType)
-
- def _getListingEntry(self, width, currentTime, listingType):
- lineFormat = uiTools.getColor(connEntry.CATEGORY_COLOR[self.getType()])
-
- # The required widths are the sum of the following:
- # bracketing (3 characters)
- # placementLabel (14 characters)
- # gap between etc and placement label (5 characters)
-
- if self.isLast: bracket = (curses.ACS_LLCORNER, curses.ACS_HLINE, ord(' '))
- else: bracket = (curses.ACS_VLINE, ord(' '), ord(' '))
- baselineSpace = len(bracket) + 14 + 5
-
- dst, etc = "", ""
- if listingType == entries.ListingType.IP_ADDRESS:
- # TODO: include hostname when that's available
- # dst width is derived as:
- # src (21) + dst (26) + divider (7) + right gap (2) - bracket (3) = 53 char
- dst = "%-53s" % self.getDestinationLabel(53, includeLocale = True)
- etc = self.getEtcContent(width - baselineSpace - len(dst), listingType)
- elif listingType == entries.ListingType.HOSTNAME:
- # min space for the hostname is 40 characters
- etc = self.getEtcContent(width - baselineSpace - 40, listingType)
- dstLayout = "%%-%is" % (width - baselineSpace - len(etc))
- dst = dstLayout % self.foreign.getHostname(self.foreign.getIpAddr())
- elif listingType == entries.ListingType.FINGERPRINT:
- # dst width is derived as:
- # src (9) + dst (40) + divider (7) + right gap (2) - bracket (3) = 55 char
- dst = "%-55s" % self.foreign.getFingerprint()
- etc = self.getEtcContent(width - baselineSpace - len(dst), listingType)
- else:
- # min space for the nickname is 50 characters
- etc = self.getEtcContent(width - baselineSpace - 50, listingType)
- dstLayout = "%%-%is" % (width - baselineSpace - len(etc))
- dst = dstLayout % self.foreign.getNickname()
-
- drawEntry = uiTools.DrawEntry("%-14s" % self.placementLabel, lineFormat)
- drawEntry = uiTools.DrawEntry(" " * (width - baselineSpace - len(dst) - len(etc) + 5), lineFormat, drawEntry)
- drawEntry = uiTools.DrawEntry(dst + etc, lineFormat, drawEntry)
- drawEntry = uiTools.DrawEntry(bracket, curses.A_NORMAL, drawEntry, lockFormat = True)
- return drawEntry
-
Modified: arm/trunk/src/interface/connections/connPanel.py
===================================================================
--- arm/trunk/src/interface/connections/connPanel.py 2011-03-28 16:02:37 UTC (rev 24488)
+++ arm/trunk/src/interface/connections/connPanel.py 2011-03-28 16:08:42 UTC (rev 24489)
@@ -6,7 +6,7 @@
import curses
import threading
-from interface.connections import entries, connEntry, clientEntry
+from interface.connections import entries, connEntry, circEntry
from util import connections, enum, panel, torTools, uiTools
DEFAULT_CONFIG = {"features.connection.listingType": 0,
@@ -256,11 +256,11 @@
# Populates newEntries with any of our old entries that still exist.
# This is both for performance and to keep from resetting the uptime
- # attributes. Note that ClientEntries are a ConnectionEntry subclass so
+ # attributes. Note that CircEntries are a ConnectionEntry subclass so
# we need to check for them first.
for oldEntry in self._entries:
- if isinstance(oldEntry, clientEntry.ClientEntry):
+ if isinstance(oldEntry, circEntry.CircEntry):
newEntry = newCircuits.get(oldEntry.circuitID)
if newEntry:
@@ -287,7 +287,7 @@
for circuitID in newCircuits:
status, purpose, path = newCircuits[circuitID]
- newEntries.append(clientEntry.ClientEntry(circuitID, status, purpose, path))
+ newEntries.append(circEntry.CircEntry(circuitID, status, purpose, path))
# Counts the relays in each of the categories. This also flushes the
# type cache for all of the connections (in case its changed since last
@@ -298,7 +298,7 @@
for entry in newEntries:
if isinstance(entry, connEntry.ConnectionEntry):
typeCounts[entry.getLines()[0].getType()] += 1
- elif isinstance(entry, clientEntry.ClientEntry):
+ elif isinstance(entry, circEntry.CircEntry):
typeCounts[connEntry.Category.CIRCUIT] += 1
# makes labels for all the categories with connections (ie,
1
0

r24488: {arm} Relabeling connections (... again). PROGRAM -> SOCKS and CLI (arm/trunk/src/interface/connections)
by Damian Johnson 28 Mar '11
by Damian Johnson 28 Mar '11
28 Mar '11
Author: atagar
Date: 2011-03-28 16:02:37 +0000 (Mon, 28 Mar 2011)
New Revision: 24488
Modified:
arm/trunk/src/interface/connections/clientEntry.py
arm/trunk/src/interface/connections/connEntry.py
arm/trunk/src/interface/connections/connPanel.py
Log:
Relabeling connections (... again). PROGRAM -> SOCKS and CLIENT -> CIRCUIT.
Modified: arm/trunk/src/interface/connections/clientEntry.py
===================================================================
--- arm/trunk/src/interface/connections/clientEntry.py 2011-03-28 15:51:56 UTC (rev 24487)
+++ arm/trunk/src/interface/connections/clientEntry.py 2011-03-28 16:02:37 UTC (rev 24488)
@@ -2,7 +2,7 @@
Connection panel entries for client circuits. This includes a header entry
followed by an entry for each hop in the circuit. For instance:
-89.188.20.246:42667 --> 217.172.182.26 (de) General / Built 8.6m (CLIENT)
+89.188.20.246:42667 --> 217.172.182.26 (de) General / Built 8.6m (CIRCUIT)
| 85.8.28.4 (se) 98FBC3B2B93897A78CDD797EF549E6B62C9A8523 1 / Guard
| 91.121.204.76 (fr) 546387D93F8D40CFF8842BB9D3A8EC477CEDA984 2 / Middle
+- 217.172.182.26 (de) 5CFA9EA136C0EA0AC096E5CEA7EB674F1207CF86 3 / Exit
@@ -55,7 +55,7 @@
# Overwrites attributes of the initial line to make it more fitting as the
# header for our listing.
- self.lines[0].baseType = connEntry.Category.CLIENT
+ self.lines[0].baseType = connEntry.Category.CIRCUIT
self.update(status, path)
@@ -111,7 +111,7 @@
self.foreign.fingerprintOverwrite = exitFingerprint
def getType(self):
- return connEntry.Category.CLIENT
+ return connEntry.Category.CIRCUIT
def getDestinationLabel(self, maxLength, includeLocale=False, includeHostname=False):
if not self.isBuilt: return "Building..."
@@ -154,7 +154,7 @@
self.isLast = False
def getType(self):
- return connEntry.Category.CLIENT
+ return connEntry.Category.CIRCUIT
def getListingEntry(self, width, currentTime, listingType):
"""
Modified: arm/trunk/src/interface/connections/connEntry.py
===================================================================
--- arm/trunk/src/interface/connections/connEntry.py 2011-03-28 15:51:56 UTC (rev 24487)
+++ arm/trunk/src/interface/connections/connEntry.py 2011-03-28 16:02:37 UTC (rev 24488)
@@ -18,10 +18,10 @@
# Directory Fetching tor consensus information.
# Control Tor controller (arm, vidalia, etc).
-Category = enum.Enum("INBOUND", "OUTBOUND", "EXIT", "CLIENT", "DIRECTORY", "PROGRAM", "CONTROL")
+Category = enum.Enum("INBOUND", "OUTBOUND", "EXIT", "CIRCUIT", "DIRECTORY", "SOCKS", "CONTROL")
CATEGORY_COLOR = {Category.INBOUND: "green", Category.OUTBOUND: "blue",
- Category.EXIT: "red", Category.CLIENT: "cyan",
- Category.PROGRAM: "yellow", Category.DIRECTORY: "magenta",
+ Category.EXIT: "red", Category.CIRCUIT: "cyan",
+ Category.SOCKS: "yellow", Category.DIRECTORY: "magenta",
Category.CONTROL: "red"}
# static data for listing format
@@ -199,7 +199,7 @@
self._possibleClient = True
self._possibleDirectory = True
- # attributes for PROGRAM and CONTROL connections
+ # attributes for SOCKS and CONTROL connections
self.appName = None
self.appPid = None
self.isAppResolving = False
@@ -219,7 +219,7 @@
self.baseType = Category.INBOUND
self.local.isORPort = True
elif lPort == mySocksPort:
- self.baseType = Category.PROGRAM
+ self.baseType = Category.SOCKS
elif lPort == myCtlPort:
self.baseType = Category.CONTROL
else:
@@ -288,7 +288,7 @@
True if our display uses application information that hasn't yet been resolved.
"""
- return self.appName == None and self.getType() in (Category.PROGRAM, Category.CONTROL)
+ return self.appName == None and self.getType() in (Category.SOCKS, Category.CONTROL)
def _getListingEntry(self, width, currentTime, listingType):
entryType = self.getType()
@@ -367,7 +367,7 @@
if self.baseType == Category.OUTBOUND:
# Currently the only non-static categories are OUTBOUND vs...
# - EXIT since this depends on the current consensus
- # - CLIENT if this is likely to belong to our guard usage
+ # - CIRCUIT if this is likely to belong to our guard usage
# - DIRECTORY if this is a single-hop circuit (directory mirror?)
#
# The exitability, circuits, and fingerprints are all cached by the
@@ -396,7 +396,7 @@
for _, status, _, path in myCircuits:
if path[0] == destFingerprint and (status != "BUILT" or len(path) > 1):
- self.cachedType = Category.CLIENT # matched a probable guard connection
+ self.cachedType = Category.CIRCUIT # matched a probable guard connection
# if we fell through, we can eliminate ourselves as a guard in the future
if not self.cachedType:
@@ -428,7 +428,7 @@
"""
# for applications show the command/pid
- if self.getType() in (Category.PROGRAM, Category.CONTROL):
+ if self.getType() in (Category.SOCKS, Category.CONTROL):
displayLabel = ""
if self.appName:
@@ -538,7 +538,7 @@
# the source and destination addresses are both private, but that might
# not be perfectly reliable either.
- isExpansionType = not myType in (Category.PROGRAM, Category.CONTROL)
+ isExpansionType = not myType in (Category.SOCKS, Category.CONTROL)
if isExpansionType: srcAddress = myExternalIpAddr + localPort
else: srcAddress = self.local.getIpAddr() + localPort
@@ -613,7 +613,7 @@
# pads dst entry to its max space
dst = ("%%-%is" % (baseSpace - len(src))) % dst
- if myType in (Category.INBOUND, Category.PROGRAM, Category.CONTROL): src, dst = dst, src
+ if myType in (Category.INBOUND, Category.SOCKS, Category.CONTROL): src, dst = dst, src
padding = " " * (width - usedSpace + LABEL_MIN_PADDING)
return LABEL_FORMAT % (src, dst, etc, padding)
Modified: arm/trunk/src/interface/connections/connPanel.py
===================================================================
--- arm/trunk/src/interface/connections/connPanel.py 2011-03-28 15:51:56 UTC (rev 24487)
+++ arm/trunk/src/interface/connections/connPanel.py 2011-03-28 16:02:37 UTC (rev 24488)
@@ -63,14 +63,14 @@
# it changes.
self._lastResourceFetch = -1
- # resolver for the command/pid associated with PROGRAM and CONTROL connections
+ # resolver for the command/pid associated with SOCKS and CONTROL connections
self._appResolver = connections.AppResolver("arm")
# rate limits appResolver queries to once per update
self.appResolveSinceUpdate = False
self._update() # populates initial entries
- self._resolveApps(False) # resolves initial PROGRAM and CONTROL applications
+ self._resolveApps(False) # resolves initial SOCKS and CONTROL applications
# mark the initially exitsing connection uptimes as being estimates
for entry in self._entries:
@@ -202,7 +202,7 @@
for lineNum in range(scrollLoc, len(self._entryLines)):
entryLine = self._entryLines[lineNum]
- # if this is an unresolved PROGRAM or CONTROL entry then queue up
+ # if this is an unresolved SOCKS or CONTROL entry then queue up
# resolution for the applicaitions they belong to
if isinstance(entryLine, connEntry.ConnectionLine) and entryLine.isUnresolvedApp():
self._resolveApps()
@@ -282,7 +282,7 @@
# Adds any new connection and circuit entries.
for lIp, lPort, fIp, fPort in newConnections:
newConnEntry = connEntry.ConnectionEntry(lIp, lPort, fIp, fPort)
- if newConnEntry.getLines()[0].getType() != connEntry.Category.CLIENT:
+ if newConnEntry.getLines()[0].getType() != connEntry.Category.CIRCUIT:
newEntries.append(newConnEntry)
for circuitID in newCircuits:
@@ -299,7 +299,7 @@
if isinstance(entry, connEntry.ConnectionEntry):
typeCounts[entry.getLines()[0].getType()] += 1
elif isinstance(entry, clientEntry.ClientEntry):
- typeCounts[connEntry.Category.CLIENT] += 1
+ typeCounts[connEntry.Category.CIRCUIT] += 1
# makes labels for all the categories with connections (ie,
# "21 outbound", "1 control", etc)
@@ -324,7 +324,7 @@
def _resolveApps(self, flagQuery = True):
"""
- Triggers an asynchronous query for all unresolved PROGRAM and CONTROL
+ Triggers an asynchronous query for all unresolved SOCKS and CONTROL
entries.
Arguments:
@@ -334,7 +334,7 @@
if self.appResolveSinceUpdate: return
- # fetch the unresolved PROGRAM and CONTROL lines
+ # fetch the unresolved SOCKS and CONTROL lines
unresolvedLines = []
for line in self._entryLines:
1
0

r24487: {website} Ok, I lie. Nick's given tentative interest in mentoring the (website/trunk/getinvolved/en)
by Damian Johnson 28 Mar '11
by Damian Johnson 28 Mar '11
28 Mar '11
Author: atagar
Date: 2011-03-28 15:51:56 +0000 (Mon, 28 Mar 2011)
New Revision: 24487
Modified:
website/trunk/getinvolved/en/volunteer.wml
Log:
Ok, I lie. Nick's given tentative interest in mentoring the simulator project.
Modified: website/trunk/getinvolved/en/volunteer.wml
===================================================================
--- website/trunk/getinvolved/en/volunteer.wml 2011-03-28 15:10:11 UTC (rev 24486)
+++ website/trunk/getinvolved/en/volunteer.wml 2011-03-28 15:51:56 UTC (rev 24487)
@@ -266,8 +266,8 @@
<b>Project Ideas:</b><br />
<i><a href="#resistCensorship">Improving Tor's ability to resist
censorship</a></i><br />
- <i><a href="#unitTesting">Improve our unit testing process</a></i>
- <!--<i><a href="#simulateSlowConnections">Simulator for slow Internet connections</a></i>-->
+ <i><a href="#unitTesting">Improve our unit testing process</a></i><br />
+ <i><a href="#simulateSlowConnections">Simulator for slow Internet connections</a></i>
</p>
<a id="project-jtor"></a>
@@ -852,7 +852,6 @@
changes in performance on machines in different roles automatically.</p>
</li>
- <!--
<a id="simulateSlowConnections"></a>
<li>
<b>Simulator for slow Internet connections</b>
@@ -863,7 +862,7 @@
<br>
Skill Level: <i>Medium</i>
<br>
- Likely Mentors: <i>Steven</i>
+ Likely Mentors: <i>Nick</i>
<p>
Many users of Tor have poor-quality Internet connections, giving low
bandwidth, high latency, and high packet loss/re-ordering. User
@@ -888,7 +887,6 @@
scripting language.
</p>
</li>
- -->
<a id="torbuttonForThunderbird"></a>
<li>
1
0

r24486: {} do not include the manual pages for now (website/trunk/docs/pl)
by Runa Sandvik 28 Mar '11
by Runa Sandvik 28 Mar '11
28 Mar '11
Author: runa
Date: 2011-03-28 15:10:11 +0000 (Mon, 28 Mar 2011)
New Revision: 24486
Added:
website/trunk/docs/pl/tor-manual-dev.wml
Log:
do not include the manual pages for now
Added: website/trunk/docs/pl/tor-manual-dev.wml
===================================================================
--- website/trunk/docs/pl/tor-manual-dev.wml (rev 0)
+++ website/trunk/docs/pl/tor-manual-dev.wml 2011-03-28 15:10:11 UTC (rev 24486)
@@ -0,0 +1,30 @@
+## translation metadata
+# Revision: $Revision: 24336 $
+
+#include "head.wmi" TITLE="Tor Project: manual"
+
+# Translators shouldn't translate this file, unless they want
+# to translate the whole man page too.
+<div id="content" class="clearfix">
+ <div id="breadcrumbs">
+ <a href="<page index>">Home » </a>
+ <a href="<page docs/documentation>">Documentation » </a>
+ <a href="<page docs/tor-doc-osx>">Tor Dev Manual</a>
+ </div>
+ <div id="maincol">
+ <:
+ die "Missing git clone" unless -d "$(TORGIT)";
+# my $man = `cat ../manpages/pl/tor.1.txt | asciidoc -d manpage -s -o - -`;
+# die "No manpage because of asciidoc error or file not available from git" unless $man;
+ # print $man;
+ :>
+ </div>
+ <!-- END MAINCOL -->
+ <div id = "sidecol">
+#include "side.wmi"
+#include "info.wmi"
+ </div>
+ <!-- END SIDECOL -->
+</div>
+<!-- END CONTENT -->
+#include <foot.wmi>
1
0

r24485: {website} Dropping Steven as a potential mentor (hasn't given an indic (website/trunk/getinvolved/en)
by Damian Johnson 28 Mar '11
by Damian Johnson 28 Mar '11
28 Mar '11
Author: atagar
Date: 2011-03-28 15:07:48 +0000 (Mon, 28 Mar 2011)
New Revision: 24485
Modified:
website/trunk/getinvolved/en/volunteer.wml
Log:
Dropping Steven as a potential mentor (hasn't given an indication of wanting to take part this year) and hiding the "Simulator for slow Internet connections" idea
Modified: website/trunk/getinvolved/en/volunteer.wml
===================================================================
--- website/trunk/getinvolved/en/volunteer.wml 2011-03-28 14:56:20 UTC (rev 24484)
+++ website/trunk/getinvolved/en/volunteer.wml 2011-03-28 15:07:48 UTC (rev 24485)
@@ -266,8 +266,8 @@
<b>Project Ideas:</b><br />
<i><a href="#resistCensorship">Improving Tor's ability to resist
censorship</a></i><br />
- <i><a href="#unitTesting">Improve our unit testing process</a></i><br />
- <i><a href="#simulateSlowConnections">Simulator for slow Internet connections</a></i>
+ <i><a href="#unitTesting">Improve our unit testing process</a></i>
+ <!--<i><a href="#simulateSlowConnections">Simulator for slow Internet connections</a></i>-->
</p>
<a id="project-jtor"></a>
@@ -577,7 +577,7 @@
<br>
Skill Level: <i>Medium</i>
<br>
- Likely Mentors: <i>Steven, Erinn, Jacob, Andrew</i>
+ Likely Mentors: <i>Erinn, Jacob, Andrew</i>
<p>The Tor Browser Bundle incorporates Tor, Firefox, Polipo, and the Vidalia
user interface (and optionally the <a href="http://pidgin.im/">Pidgin</a>
Instant Messaging client). Components are pre-configured to operate in a
@@ -710,7 +710,7 @@
<br>
Skill Level: <i>High</i>
<br>
- Likely Mentors: <i>Roger, Nick, Steven, Jake</i>
+ Likely Mentors: <i>Roger, Nick, Jake</i>
<p>The Tor 0.2.1.x series makes <a
href="<svnprojects>design-paper/blocking.html">significant
improvements</a> in resisting national and organizational censorship.
@@ -852,6 +852,7 @@
changes in performance on machines in different roles automatically.</p>
</li>
+ <!--
<a id="simulateSlowConnections"></a>
<li>
<b>Simulator for slow Internet connections</b>
@@ -887,6 +888,7 @@
scripting language.
</p>
</li>
+ -->
<a id="torbuttonForThunderbird"></a>
<li>
1
0

28 Mar '11
Author: runa
Date: 2011-03-28 14:56:20 +0000 (Mon, 28 Mar 2011)
New Revision: 24484
Removed:
website/trunk/docs/pl_PL/
Log:
delete pl_PL/ as everything is in pl/
1
0
Author: runa
Date: 2011-03-28 14:48:03 +0000 (Mon, 28 Mar 2011)
New Revision: 24483
Modified:
translation/trunk/projects/manpages/po/af/torify.1.po
translation/trunk/projects/manpages/po/ak/torify.1.po
translation/trunk/projects/manpages/po/am/torify.1.po
translation/trunk/projects/manpages/po/arn/torify.1.po
translation/trunk/projects/manpages/po/ast/torify.1.po
translation/trunk/projects/manpages/po/az/torify.1.po
translation/trunk/projects/manpages/po/be/torify.1.po
translation/trunk/projects/manpages/po/bg/torify.1.po
translation/trunk/projects/manpages/po/bn/torify.1.po
translation/trunk/projects/manpages/po/bn_IN/torify.1.po
translation/trunk/projects/manpages/po/ca/torify.1.po
translation/trunk/projects/manpages/po/cs/torify.1.po
translation/trunk/projects/manpages/po/csb/torify.1.po
translation/trunk/projects/manpages/po/cy/torify.1.po
translation/trunk/projects/manpages/po/dz/torify.1.po
translation/trunk/projects/manpages/po/el/torify.1.po
translation/trunk/projects/manpages/po/eo/torify.1.po
translation/trunk/projects/manpages/po/eu/torify.1.po
translation/trunk/projects/manpages/po/fil/torify.1.po
translation/trunk/projects/manpages/po/fur/torify.1.po
translation/trunk/projects/manpages/po/ga/torify.1.po
translation/trunk/projects/manpages/po/gl/torify.1.po
translation/trunk/projects/manpages/po/gu/torify.1.po
translation/trunk/projects/manpages/po/gun/torify.1.po
translation/trunk/projects/manpages/po/ha/torify.1.po
translation/trunk/projects/manpages/po/he/torify.1.po
translation/trunk/projects/manpages/po/hi/torify.1.po
translation/trunk/projects/manpages/po/hr/torify.1.po
translation/trunk/projects/manpages/po/ht/torify.1.po
translation/trunk/projects/manpages/po/hu/torify.1.po
translation/trunk/projects/manpages/po/is/torify.1.po
translation/trunk/projects/manpages/po/kn/torify.1.po
translation/trunk/projects/manpages/po/kw/torify.1.po
translation/trunk/projects/manpages/po/lb/torify.1.po
translation/trunk/projects/manpages/po/ln/torify.1.po
translation/trunk/projects/manpages/po/lo/torify.1.po
translation/trunk/projects/manpages/po/lt/torify.1.po
translation/trunk/projects/manpages/po/lv/torify.1.po
translation/trunk/projects/manpages/po/mg/torify.1.po
translation/trunk/projects/manpages/po/mi/torify.1.po
translation/trunk/projects/manpages/po/mk/torify.1.po
translation/trunk/projects/manpages/po/ml/torify.1.po
translation/trunk/projects/manpages/po/mn/torify.1.po
translation/trunk/projects/manpages/po/mr/torify.1.po
translation/trunk/projects/manpages/po/ms/torify.1.po
translation/trunk/projects/manpages/po/mt/torify.1.po
translation/trunk/projects/manpages/po/nap/torify.1.po
translation/trunk/projects/manpages/po/nb/torify.1.po
translation/trunk/projects/manpages/po/ne/torify.1.po
translation/trunk/projects/manpages/po/nl/torify.1.po
translation/trunk/projects/manpages/po/nn/torify.1.po
translation/trunk/projects/manpages/po/nso/torify.1.po
translation/trunk/projects/manpages/po/oc/torify.1.po
translation/trunk/projects/manpages/po/pa/torify.1.po
translation/trunk/projects/manpages/po/pap/torify.1.po
translation/trunk/projects/manpages/po/pms/torify.1.po
translation/trunk/projects/manpages/po/ps/torify.1.po
translation/trunk/projects/manpages/po/pt/torify.1.po
translation/trunk/projects/manpages/po/pt_BR/torify.1.po
translation/trunk/projects/manpages/po/ro/torify.1.po
translation/trunk/projects/manpages/po/sco/torify.1.po
translation/trunk/projects/manpages/po/son/torify.1.po
translation/trunk/projects/manpages/po/su/torify.1.po
translation/trunk/projects/manpages/po/sw/torify.1.po
translation/trunk/projects/manpages/po/ta/torify.1.po
translation/trunk/projects/manpages/po/te/torify.1.po
translation/trunk/projects/manpages/po/tg/torify.1.po
translation/trunk/projects/manpages/po/th/torify.1.po
translation/trunk/projects/manpages/po/ti/torify.1.po
translation/trunk/projects/manpages/po/tk/torify.1.po
translation/trunk/projects/manpages/po/uk/torify.1.po
translation/trunk/projects/manpages/po/ur/torify.1.po
translation/trunk/projects/manpages/po/ve/torify.1.po
translation/trunk/projects/manpages/po/vi/torify.1.po
translation/trunk/projects/manpages/po/wa/torify.1.po
translation/trunk/projects/manpages/po/zh_CN/torify.1.po
translation/trunk/projects/manpages/po/zh_HK/torify.1.po
translation/trunk/projects/manpages/po/zh_TW/torify.1.po
translation/trunk/projects/manpages/po/zu/torify.1.po
Log:
pulled all translated manual pages from transifex
Modified: translation/trunk/projects/manpages/po/af/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/af/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/af/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ak/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ak/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ak/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/am/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/am/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/am/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/arn/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/arn/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/arn/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ast/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ast/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ast/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/az/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/az/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/az/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/be/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/be/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/be/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/bg/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/bg/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/bg/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/bn/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/bn/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/bn/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/bn_IN/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/bn_IN/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/bn_IN/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ca/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ca/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ca/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/cs/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/cs/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/cs/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/csb/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/csb/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/csb/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/cy/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/cy/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/cy/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/dz/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/dz/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/dz/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/el/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/el/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/el/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/eo/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/eo/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/eo/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/eu/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/eu/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/eu/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/fil/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/fil/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/fil/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/fur/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/fur/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/fur/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ga/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ga/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ga/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/gl/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/gl/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/gl/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/gu/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/gu/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/gu/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/gun/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/gun/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/gun/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ha/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ha/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ha/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/he/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/he/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/he/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/hi/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/hi/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/hi/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/hr/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/hr/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/hr/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ht/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ht/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ht/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/hu/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/hu/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/hu/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/is/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/is/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/is/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/kn/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/kn/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/kn/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/kw/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/kw/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/kw/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/lb/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/lb/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/lb/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ln/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ln/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ln/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/lo/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/lo/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/lo/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/lt/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/lt/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/lt/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/lv/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/lv/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/lv/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/mg/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/mg/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/mg/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/mi/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/mi/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/mi/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/mk/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/mk/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/mk/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ml/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ml/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ml/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/mn/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/mn/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/mn/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/mr/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/mr/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/mr/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ms/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ms/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ms/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/mt/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/mt/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/mt/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/nap/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/nap/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/nap/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/nb/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/nb/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/nb/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ne/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ne/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ne/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/nl/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/nl/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/nl/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/nn/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/nn/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/nn/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/nso/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/nso/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/nso/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/oc/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/oc/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/oc/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/pa/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/pa/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/pa/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/pap/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/pap/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/pap/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/pms/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/pms/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/pms/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ps/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ps/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ps/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/pt/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/pt/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/pt/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/pt_BR/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/pt_BR/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/pt_BR/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ro/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ro/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ro/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/sco/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/sco/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/sco/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:20+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/son/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/son/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/son/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/su/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/su/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/su/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/sw/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/sw/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/sw/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ta/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ta/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ta/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/te/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/te/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/te/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/tg/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/tg/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/tg/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/th/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/th/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/th/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ti/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ti/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ti/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/tk/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/tk/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/tk/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/uk/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/uk/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/uk/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ur/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ur/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ur/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/ve/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/ve/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/ve/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/vi/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/vi/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/vi/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/wa/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/wa/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/wa/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/zh_CN/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/zh_CN/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/zh_CN/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/zh_HK/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/zh_HK/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/zh_HK/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/zh_TW/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/zh_TW/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/zh_TW/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:21+0000\n"
+"PO-Revision-Date: 2011-03-28 14:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
Modified: translation/trunk/projects/manpages/po/zu/torify.1.po
===================================================================
--- translation/trunk/projects/manpages/po/zu/torify.1.po 2011-03-28 13:56:54 UTC (rev 24482)
+++ translation/trunk/projects/manpages/po/zu/torify.1.po 2011-03-28 14:48:03 UTC (rev 24483)
@@ -8,7 +8,7 @@
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
"POT-Creation-Date: 2010-05-27 19:08+0300\n"
-"PO-Revision-Date: 2011-03-18 10:22+0000\n"
+"PO-Revision-Date: 2011-03-28 14:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
1
0