tor-commits
Threads by month
- ----- 2025 -----
- June
- 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
May 2011
- 15 participants
- 1011 discussions
commit 9adaff9833062acc773ab446d6becd3dc08bf8e6
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Sat Apr 30 17:14:18 2011 -0300
Use minimum bandwidth
---
src/vidalia/network/RouterDescriptorView.cpp | 5 ++++-
src/vidalia/network/RouterListItem.cpp | 4 +++-
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/vidalia/network/RouterDescriptorView.cpp b/src/vidalia/network/RouterDescriptorView.cpp
index 63c3102..ab94889 100644
--- a/src/vidalia/network/RouterDescriptorView.cpp
+++ b/src/vidalia/network/RouterDescriptorView.cpp
@@ -110,8 +110,11 @@ RouterDescriptorView::display(QList<RouterDescriptor> rdlist)
/* If the router is online, then show the uptime and bandwidth stats. */
if (!rd.offline()) {
+ qint64 minBandwidth = (qint64)qMin(rd.observedBandwidth(),
+ qMin(rd.averageBandwidth(),
+ rd.burstBandwidth()));
html.append(trow(tcol(b(tr("Bandwidth:"))) +
- tcol(string_format_bandwidth(rd.observedBandwidth()))));
+ tcol(string_format_bandwidth(minBandwidth))));
html.append(trow(tcol(b(tr("Uptime:"))) +
tcol(string_format_uptime(
adjustUptime(rd.uptime(), rd.published())))));
diff --git a/src/vidalia/network/RouterListItem.cpp b/src/vidalia/network/RouterListItem.cpp
index 904a3f7..f0bdcad 100644
--- a/src/vidalia/network/RouterListItem.cpp
+++ b/src/vidalia/network/RouterListItem.cpp
@@ -69,7 +69,9 @@ RouterListItem::update(const RouterDescriptor &rd)
statusIcon = QIcon(IMG_NODE_SLEEPING);
setToolTip(STATUS_COLUMN, tr("Hibernating"));
} else {
- _statusValue = (qint64)_rd->observedBandwidth();
+ _statusValue = (qint64)qMin(_rd->observedBandwidth(),
+ qMin(_rd->averageBandwidth(),
+ _rd->burstBandwidth()));
if (_statusValue >= 400*1024) {
statusIcon = QIcon(IMG_NODE_HIGH_BW);
} else if (_statusValue >= 60*1024) {
1
0
commit 9adaff9833062acc773ab446d6becd3dc08bf8e6
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Sat Apr 30 17:14:18 2011 -0300
Use minimum bandwidth
---
src/vidalia/network/RouterDescriptorView.cpp | 5 ++++-
src/vidalia/network/RouterListItem.cpp | 4 +++-
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/vidalia/network/RouterDescriptorView.cpp b/src/vidalia/network/RouterDescriptorView.cpp
index 63c3102..ab94889 100644
--- a/src/vidalia/network/RouterDescriptorView.cpp
+++ b/src/vidalia/network/RouterDescriptorView.cpp
@@ -110,8 +110,11 @@ RouterDescriptorView::display(QList<RouterDescriptor> rdlist)
/* If the router is online, then show the uptime and bandwidth stats. */
if (!rd.offline()) {
+ qint64 minBandwidth = (qint64)qMin(rd.observedBandwidth(),
+ qMin(rd.averageBandwidth(),
+ rd.burstBandwidth()));
html.append(trow(tcol(b(tr("Bandwidth:"))) +
- tcol(string_format_bandwidth(rd.observedBandwidth()))));
+ tcol(string_format_bandwidth(minBandwidth))));
html.append(trow(tcol(b(tr("Uptime:"))) +
tcol(string_format_uptime(
adjustUptime(rd.uptime(), rd.published())))));
diff --git a/src/vidalia/network/RouterListItem.cpp b/src/vidalia/network/RouterListItem.cpp
index 904a3f7..f0bdcad 100644
--- a/src/vidalia/network/RouterListItem.cpp
+++ b/src/vidalia/network/RouterListItem.cpp
@@ -69,7 +69,9 @@ RouterListItem::update(const RouterDescriptor &rd)
statusIcon = QIcon(IMG_NODE_SLEEPING);
setToolTip(STATUS_COLUMN, tr("Hibernating"));
} else {
- _statusValue = (qint64)_rd->observedBandwidth();
+ _statusValue = (qint64)qMin(_rd->observedBandwidth(),
+ qMin(_rd->averageBandwidth(),
+ _rd->burstBandwidth()));
if (_statusValue >= 400*1024) {
statusIcon = QIcon(IMG_NODE_HIGH_BW);
} else if (_statusValue >= 60*1024) {
1
0
commit bc83c37be03ef47b61d178a3b91b75d5c281a2e7
Author: Runa A. Sandvik <runa.sandvik(a)gmail.com>
Date: Thu May 5 20:06:37 2011 +0100
Updated links.pot from links.html
---
src/vidalia/help/content/po/templates/links.pot | 108 ++++++++++-------------
1 files changed, 47 insertions(+), 61 deletions(-)
diff --git a/src/vidalia/help/content/po/templates/links.pot b/src/vidalia/help/content/po/templates/links.pot
index c9580ad..953242a 100644
--- a/src/vidalia/help/content/po/templates/links.pot
+++ b/src/vidalia/help/content/po/templates/links.pot
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+## No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
@@ -14,97 +14,83 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
+"POT-Creation-Date: 2011-05-05 20:03+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit"
+"Content-Transfer-Encoding: 8bit\n"
-#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#. type: h1
+#: FIXME:0
+#, no-wrap
msgid "Helpful Links"
msgstr ""
-#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#. type: h3
+#: FIXME:0
+#, no-wrap
msgid "Vidalia"
msgstr ""
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:22 en/links.html:30 en/links.html:38 en/links.html:50 en/links.html:57 en/links.html:65 en/links.html:73
+#. type: td
+#: FIXME:0 FIXME:0 FIXME:0 FIXME:0 FIXME:0
+#, no-wrap
msgid " "
msgstr ""
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#. type: td
+#: FIXME:0 FIXME:0
+#, no-wrap
msgid "Homepage"
msgstr ""
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
-msgid ""
-"<a href=\"https://www.torproject.org/vidalia/\"> "
-"https://www.torproject.org/vidalia/</a>"
-msgstr ""
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:31 en/links.html:66
-msgid "Wiki"
-msgstr ""
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:33
-msgid ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> "
-"http://trac.vidalia-project.net/wiki</a>"
+#. type: a
+#: FIXME:0
+#, no-wrap
+msgid "https://www.torproject.org/vidalia/"
msgstr ""
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "Bugtracker"
+#. type: td
+#: FIXME:0 FIXME:0
+#, no-wrap
+msgid "Wiki and Bugtracker"
msgstr ""
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:41
-msgid ""
-"<a href=\"http://trac.vidalia-project.net/report\"> "
-"http://trac.vidalia-project.net/report</a>"
+#. type: a
+#: FIXME:0
+#, no-wrap
+msgid "http://trac.torproject.org/"
msgstr ""
-#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#. type: h3
+#: FIXME:0
+#, no-wrap
msgid "Tor"
msgstr ""
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
-msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
+#. type: a
+#: FIXME:0
+#, no-wrap
+msgid "https://www.torproject.org/"
msgstr ""
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#. type: td
+#: FIXME:0
+#, no-wrap
msgid "FAQ"
msgstr ""
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
-msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
-msgstr ""
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:68
-msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
+#. type: a
+#: FIXME:0
+#, no-wrap
+msgid "https://www.torproject.org/docs/faq.html"
msgstr ""
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:76
-msgid ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
+#. type: a
+#: FIXME:0
+#, no-wrap
+msgid "https://trac.torproject.org/"
msgstr ""
1
0

05 May '11
commit 342d88c9c1c80949b1cd3fa77371f75b571e19d9
Merge: 1334480 4892730
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Thu May 5 16:24:49 2011 -0300
Merge remote-tracking branch 'runa/master'
src/vidalia/help/content/po/templates/links.pot | 66 ++++++++---------------
1 files changed, 22 insertions(+), 44 deletions(-)
1
0

[vidalia/master] tell po4a it is xhtml and not html to avoid weird FIXME comments
by chiiph@torproject.org 05 May '11
by chiiph@torproject.org 05 May '11
05 May '11
commit 489273067befeec911a2bb02f75d7141d9aa0d7c
Author: Runa A. Sandvik <runa.sandvik(a)gmail.com>
Date: Thu May 5 20:23:43 2011 +0100
tell po4a it is xhtml and not html to avoid weird FIXME comments
---
src/vidalia/help/content/po/templates/links.pot | 76 ++++++++++-------------
1 files changed, 34 insertions(+), 42 deletions(-)
diff --git a/src/vidalia/help/content/po/templates/links.pot b/src/vidalia/help/content/po/templates/links.pot
index 953242a..a1d0a8d 100644
--- a/src/vidalia/help/content/po/templates/links.pot
+++ b/src/vidalia/help/content/po/templates/links.pot
@@ -14,7 +14,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2011-05-05 20:03+0200\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -23,74 +23,66 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. type: h1
-#: FIXME:0
-#, no-wrap
+#. type: Content of: <html><body><h1>
+#: links.html:16
msgid "Helpful Links"
msgstr ""
-#. type: h3
-#: FIXME:0
-#, no-wrap
+#. type: Content of: <html><body><h3>
+#: links.html:19
msgid "Vidalia"
msgstr ""
-#. type: td
-#: FIXME:0 FIXME:0 FIXME:0 FIXME:0 FIXME:0
-#, no-wrap
+#. type: Content of: <html><body><table><tr><td>
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
-#. type: td
-#: FIXME:0 FIXME:0
-#, no-wrap
+#. type: Content of: <html><body><table><tr><td>
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
-#. type: a
-#: FIXME:0
-#, no-wrap
-msgid "https://www.torproject.org/vidalia/"
+#. type: Content of: <html><body><table><tr><td>
+#: links.html:25
+msgid ""
+"<a href=\"https://www.torproject.org/vidalia/\"> "
+"https://www.torproject.org/vidalia/</a>"
msgstr ""
-#. type: td
-#: FIXME:0 FIXME:0
-#, no-wrap
+#. type: Content of: <html><body><table><tr><td>
+#: links.html:31 links.html:58
msgid "Wiki and Bugtracker"
msgstr ""
-#. type: a
-#: FIXME:0
-#, no-wrap
-msgid "http://trac.torproject.org/"
+#. type: Content of: <html><body><table><tr><td>
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-#. type: h3
-#: FIXME:0
-#, no-wrap
+#. type: Content of: <html><body><h3>
+#: links.html:39
msgid "Tor"
msgstr ""
-#. type: a
-#: FIXME:0
-#, no-wrap
-msgid "https://www.torproject.org/"
+#. type: Content of: <html><body><table><tr><td>
+#: links.html:45
+msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
-#. type: td
-#: FIXME:0
-#, no-wrap
+#. type: Content of: <html><body><table><tr><td>
+#: links.html:50
msgid "FAQ"
msgstr ""
-#. type: a
-#: FIXME:0
-#, no-wrap
-msgid "https://www.torproject.org/docs/faq.html"
+#. type: Content of: <html><body><table><tr><td>
+#: links.html:52
+msgid ""
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-#. type: a
-#: FIXME:0
-#, no-wrap
-msgid "https://trac.torproject.org/"
+#. type: Content of: <html><body><table><tr><td>
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
1
0
commit 1334480dc306064ecc7bf9adadec0afeac36b2cf
Merge: 7b01d6c 9adaff9
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Thu May 5 15:55:52 2011 -0300
Merge branch 'bug2744_bandwidth'
src/vidalia/network/RouterDescriptorView.cpp | 5 ++++-
src/vidalia/network/RouterListItem.cpp | 4 +++-
2 files changed, 7 insertions(+), 2 deletions(-)
1
0
commit be7e8f5bb90acbf6717b9a14d21fdf4733c5d9e5
Author: Andrew Lewman <andrew(a)torproject.org>
Date: Thu May 5 15:18:14 2011 -0400
fix the website directions.
---
doc/HACKING | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/doc/HACKING b/doc/HACKING
index e00aeb1..feafb55 100644
--- a/doc/HACKING
+++ b/doc/HACKING
@@ -475,12 +475,10 @@ and push the git tag.
(That's either "git tag -u <keyid> tor-0.2.x.y-status", then
"git push origin tag tor-0.2.x.y-status". To sign the
tarball, "gpg -ba <the_tarball>". Put the files in
- /src/www-master.torproject.org/htdocs/dist on vescum, then
- sudo -u mirroradm -H /home/mirroradm/bin/trigger-mirrors sudoed
- )
+ /srv/www-master.torproject.org/htdocs/dist/ on vescum.)
-8) Edit include/versions.wmi to note the new version. Rebuild and push
-the website.
+8) Edit include/versions.wmi to note the new version. From your website
+checkout, run ./publish to build and publish the website.
9) Email Erinn and weasel (cc'ing tor-assistants) that a new tarball
is up. This step should probably change to mailing more packagers.
1
0
commit 08e6bd0ed1d319eaf112c273c68f21d3351fcdcc
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Thu May 5 15:15:20 2011 -0400
Increment version to 0.2.3.1-alpha-dev
---
configure.in | 2 +-
contrib/tor-mingw.nsi.in | 2 +-
src/win32/orconfig.h | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.in b/configure.in
index 0918c95..58d32a1 100644
--- a/configure.in
+++ b/configure.in
@@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2008, The Tor Project, Inc.
dnl See LICENSE for licensing information
AC_INIT
-AM_INIT_AUTOMAKE(tor, 0.2.3.1-alpha)
+AM_INIT_AUTOMAKE(tor, 0.2.3.1-alpha-dev)
AM_CONFIG_HEADER(orconfig.h)
AC_CANONICAL_HOST
diff --git a/contrib/tor-mingw.nsi.in b/contrib/tor-mingw.nsi.in
index 82e9468..b559bdb 100644
--- a/contrib/tor-mingw.nsi.in
+++ b/contrib/tor-mingw.nsi.in
@@ -8,7 +8,7 @@
!include "LogicLib.nsh"
!include "FileFunc.nsh"
!insertmacro GetParameters
-!define VERSION "0.2.3.1-alpha"
+!define VERSION "0.2.3.1-alpha-dev"
!define INSTALLER "tor-${VERSION}-win32.exe"
!define WEBSITE "https://www.torproject.org/"
!define LICENSE "LICENSE"
diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h
index f4efc0c..5483b6d 100644
--- a/src/win32/orconfig.h
+++ b/src/win32/orconfig.h
@@ -233,4 +233,4 @@
#define USING_TWOS_COMPLEMENT
/* Version number of package */
-#define VERSION "0.2.3.1-alpha"
+#define VERSION "0.2.3.1-alpha-dev"
1
0

05 May '11
commit 5cabdc8f679c4124523a1cc02ac1e22ab86b8502
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Thu May 5 13:57:32 2011 -0400
more changelog tweaks, mostly from sebastian
---
ChangeLog | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 046ee63..28153f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,21 +3,21 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
Tor 0.2.3.1-alpha adds some new experimental features, including support
for an improved network IO backend, IOCP networking on Windows,
microdescriptor caching, "fast-start" support for streams, and automatic
- home router configuration. There are also numerous internal improvements
+ home router configuration. There are also numerous internal improvements
to try to make the code easier for developers to work with.
This is the first alpha release in a new series, so expect there to be
- bugs. Users who would rather test out a more stable branch should
+ bugs. Users who would rather test out a more stable branch should
stay with 0.2.2.x for now.
o Major features
- Tor can now optionally build with the "bufferevents" buffered IO
backend provided by Libevent 2. To use this feature, make sure you
have the latest possible version of Libevent, and pass the
- --enable-bufferevents flag to configure when building Tor from source.
- Using this feature will make our networking code more flexible, let us
- stack layers on each other, and let us use more efficient zero-copy
- transports where available.
+ --enable-bufferevents flag to configure when building Tor from
+ source. This feature will make our networking code more flexible,
+ let us stack layers on each other, and let us use more efficient
+ zero-copy transports where available.
- As an experimental feature, Tor can use IOCP for networking on Windows.
Once this code is tuned and optimized, it promises much better
performance than the select-based backend we've used in the past. To
@@ -33,16 +33,16 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
Previously, the client wasn't allowed to send data until the stream was
connected, which slowed down all connections. This change will enable
clients to perform a "fast-start" on streams and send data without
- having to wait for a confirmation that the stream has opened. (Patch
+ having to wait for a confirmation that the stream has opened. (Patch
from Ian Goldberg; implements the server side of Proposal 174.)
- - Tor now has initial support for automatic port mapping on on the many
+ - Tor now has initial support for automatic port mapping on the many
home routers that support NAT-PMP or UPnP. (Not yet supported on
Windows). To build the support code, you'll need to have libnatpnp
library and/or the libminiupnpc library, and you'll need to enable the
feature specifically by passing "--enable-upnp" and/or
"--enable-natpnp" to configure. To turn it on, use the new
PortForwarding option.
- - Caches now download, cache, and sever multiple "flavors" of the
+ - Caches now download, cache, and serve multiple "flavors" of the
consensus, including a flavor that describes microdescriptors.
- Caches now download, cache, and serve microdescriptors -- small
summaries of router descriptors that are authenticated by all of the
@@ -61,8 +61,8 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
There is now a new option, CountPrivateBandwidth, to disable this
behavior. Patch from Daniel Cagara.
- New --enable-static-tor configure option for building Tor as
- statically as possible. Idea, general hackery and thoughts from
- Alexei Czeskis, John Gilmore, Jacob Appelbaum. Implements ticket
+ statically as possible. Idea, general hackery and thoughts from
+ Alexei Czeskis, John Gilmore, Jacob Appelbaum. Implements ticket
2702.
- If you set the NumCPUs option to 0, Tor will now try to detect how
many CPUs you have. This is the new default behavior.
@@ -74,7 +74,7 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
enhancement 1883.
- Add a new 'Heartbeat' log message type to periodically log a message
describing Tor's status at level Notice. This feature is meant for
- operators who log at notice, adn want to make sure that their Tor
+ operators who log at notice, and want to make sure that their Tor
server is still working. Implementation by George Kadianakis.
o Minor bugfixes (on 0.2.2.25-alpha):
@@ -85,7 +85,7 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
Fix posted by "cypherpunks."
- The microdesc journal is supposed to get rebuilt only if it is
at least _half_ the length of the store, not _twice_ the length
- of the store. Bugfix on 0.2.2.6-alpha; fixes part of bug 2230.
+ of the store. Bugfix on 0.2.2.6-alpha; fixes part of bug 2230.
- If as an authority we fail to compute the identity digest of a v3
legacy keypair, warn, and don't use a buffer-full of junk instead.
Bugfix on 0.2.1.1-alpha; fixes bug 3106.
@@ -110,7 +110,7 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
people who build Tor from the source distribution without changing
the Makefile.am files should be fine.
- Our autogen.sh script uses autoreconf to launch autoconf, automake, and
- so on. This is more robust against some of the failure modes
+ so on. This is more robust against some of the failure modes
associated with running the autotools pieces on their own.
o Minor packaging issues:
@@ -139,7 +139,7 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
o Documentation fixes:
- Correct a broken faq link in the INSTALL file. Fixes bug 2307.
- Add missing documentation for the authority-related torrc options
- RephistTrackTime, BridgePassword, and V3AuthUseLegacyKey. Resolves
+ RephistTrackTime, BridgePassword, and V3AuthUseLegacyKey. Resolves
issue 2379.
@@ -6267,7 +6267,7 @@ Changes in version 0.2.0.1-alpha - 2007-06-01
o Minor bugfixes (logging):
- When we hit an EOF on a log (probably because we're shutting down),
don't try to remove the log from the list: just mark it as
- unusable. (Bulletproofs against bug 222.)
+ unusable. (Bulletproofs against bug 222.)
o Minor bugfixes (other):
- In the exitlist script, only consider the most recently published
@@ -6277,7 +6277,7 @@ Changes in version 0.2.0.1-alpha - 2007-06-01
connections to that address. (Resolves bug 405.)
- Stop allowing hibernating servers to be "stable" or "fast".
- On Windows, we were preventing other processes from reading
- cached-routers while Tor was running. (Reported by janbar)
+ cached-routers while Tor was running. (Reported by janbar)
- Make the NodeFamilies config option work. (Reported by
lodger -- it has never actually worked, even though we added it
in Oct 2004.)
1
0
commit 0b988ea1724e1bad42e69511f6b2c94f72261263
Merge: c9048ab c0da3c8
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Thu May 5 15:15:44 2011 -0300
Merge branch 'master' into alpha
Conflicts:
src/vidalia/VClickLabel.cpp
src/vidalia/VClickLabel.h
CMakeLists.txt | 6 ++--
cmake/FindBreakpad.cmake | 6 ++--
cmake/FindGeoIP.cmake | 6 ++--
cmake/FindMarble.cmake | 6 ++--
cmake/FindOpenSSL.cmake | 6 ++--
cmake/FindWiX.cmake | 6 ++--
cmake/VidaliaMacros.cmake | 6 ++--
config.h.in | 6 ++--
contrib/geoip.py | 6 ++--
doc/CMakeLists.txt | 6 ++--
doc/vidalia.1.in | 2 +-
pkg/CMakeLists.txt | 6 ++--
pkg/build-geoip-cache.sh | 6 ++--
pkg/osx/CMakeLists.txt | 6 ++--
pkg/osx/InstallTorbutton.scpt.in | 6 ++--
pkg/package.sh | 6 ++--
pkg/rpm/CMakeLists.txt | 6 ++--
pkg/win32/CMakeLists.txt | 6 ++--
pkg/win32/bridge-bundle.nsi.in | 6 ++--
pkg/win32/vidalia-bundle.nsi.in | 6 ++--
src/CMakeLists.txt | 6 ++--
src/common/CMakeLists.txt | 6 ++--
src/common/Log.cpp | 6 ++--
src/common/Log.h | 6 ++--
src/common/TorSocket.cpp | 6 ++--
src/common/TorSocket.h | 6 ++--
src/common/ZlibByteArray.cpp | 6 ++--
src/common/ZlibByteArray.h | 6 ++--
src/common/crypto.cpp | 6 ++--
src/common/crypto.h | 6 ++--
src/common/file.cpp | 6 ++--
src/common/file.h | 6 ++--
src/common/html.cpp | 6 ++--
src/common/html.h | 6 ++--
src/common/net.cpp | 6 ++--
src/common/net.h | 6 ++--
src/common/procutil.cpp | 6 ++--
src/common/procutil.h | 6 ++--
src/common/stringutil.cpp | 6 ++--
src/common/stringutil.h | 6 ++--
src/common/win32.cpp | 6 ++--
src/common/win32.h | 6 ++--
src/crashreporter/CMakeLists.txt | 6 ++--
src/crashreporter/CrashReportDialog.cpp | 6 ++--
src/crashreporter/CrashReportDialog.h | 6 ++--
src/crashreporter/CrashReportUploader.cpp | 6 ++--
src/crashreporter/CrashReportUploader.h | 6 ++--
src/crashreporter/UploadProgressDialog.cpp | 6 ++--
src/crashreporter/UploadProgressDialog.h | 6 ++--
src/crashreporter/main.cpp | 6 ++--
src/crashreporter/res/CrashReporter.rc.in | 6 ++--
src/miniupnpc/CMakeLists.txt | 6 ++--
src/tools/CMakeLists.txt | 6 ++--
src/tools/nostdset/nostdset.sh | 6 ++--
src/tools/nsh2po/CMakeLists.txt | 6 ++--
src/tools/nsh2po/nsh2po.cpp | 6 ++--
src/tools/nsh2po/nsh2po_config.h.in | 6 ++--
src/tools/po2nsh/CMakeLists.txt | 6 ++--
src/tools/po2nsh/po2nsh.cpp | 6 ++--
src/tools/po2ts/CMakeLists.txt | 6 ++--
src/tools/po2ts/po2ts.cpp | 6 ++--
src/tools/po2wxl/CMakeLists.txt | 6 ++--
src/tools/po2wxl/po2wxl.cpp | 6 ++--
src/tools/ts2po/CMakeLists.txt | 6 ++--
src/tools/ts2po/ts2po.cpp | 6 ++--
src/tools/ts2po/ts2po_config.h.in | 6 ++--
src/torcontrol/AddressMap.cpp | 6 ++--
src/torcontrol/AddressMap.h | 6 ++--
src/torcontrol/BootstrapStatus.cpp | 6 ++--
src/torcontrol/BootstrapStatus.h | 6 ++--
src/torcontrol/CMakeLists.txt | 6 ++--
src/torcontrol/Circuit.cpp | 6 ++--
src/torcontrol/Circuit.h | 6 ++--
src/torcontrol/ControlCommand.cpp | 6 ++--
src/torcontrol/ControlCommand.h | 6 ++--
src/torcontrol/ControlConnection.cpp | 6 ++--
src/torcontrol/ControlConnection.h | 6 ++--
src/torcontrol/ControlMethod.cpp | 6 ++--
src/torcontrol/ControlMethod.h | 6 ++--
src/torcontrol/ControlReply.cpp | 6 ++--
src/torcontrol/ControlReply.h | 6 ++--
src/torcontrol/ControlSocket.cpp | 6 ++--
src/torcontrol/ControlSocket.h | 6 ++--
src/torcontrol/LogEvent.cpp | 6 ++--
src/torcontrol/LogEvent.h | 6 ++--
src/torcontrol/ProtocolInfo.cpp | 6 ++--
src/torcontrol/ProtocolInfo.h | 6 ++--
src/torcontrol/ReplyLine.cpp | 6 ++--
src/torcontrol/ReplyLine.h | 6 ++--
src/torcontrol/RouterDescriptor.cpp | 6 ++--
src/torcontrol/RouterDescriptor.h | 6 ++--
src/torcontrol/RouterStatus.cpp | 6 ++--
src/torcontrol/RouterStatus.h | 6 ++--
src/torcontrol/SendCommandEvent.cpp | 6 ++--
src/torcontrol/SendCommandEvent.h | 6 ++--
src/torcontrol/Stream.cpp | 6 ++--
src/torcontrol/Stream.h | 6 ++--
src/torcontrol/TorControl.cpp | 6 ++--
src/torcontrol/TorControl.h | 6 ++--
src/torcontrol/TorEvents.cpp | 6 ++--
src/torcontrol/TorEvents.h | 6 ++--
src/torcontrol/TorProcess.cpp | 6 ++--
src/torcontrol/TorProcess.h | 6 ++--
src/torcontrol/TorService.cpp | 6 ++--
src/torcontrol/TorService.h | 6 ++--
src/torcontrol/TorSignal.cpp | 6 ++--
src/torcontrol/TorSignal.h | 6 ++--
src/torcontrol/tcglobal.cpp | 6 ++--
src/torcontrol/tcglobal.h | 6 ++--
src/vidalia/CMakeLists.txt | 6 ++--
src/vidalia/ControlPasswordInputDialog.cpp | 6 ++--
src/vidalia/ControlPasswordInputDialog.h | 6 ++--
src/vidalia/CrashReporter.cpp | 6 ++--
src/vidalia/CrashReporter.h | 6 ++--
src/vidalia/HelperProcess.cpp | 6 ++--
src/vidalia/HelperProcess.h | 6 ++--
src/vidalia/LanguageSupport.cpp | 6 ++--
src/vidalia/LanguageSupport.h | 6 ++--
src/vidalia/MainWindow.cpp | 6 ++--
src/vidalia/MainWindow.h | 6 ++--
src/vidalia/PackageInfo.cpp | 6 ++--
src/vidalia/PackageInfo.h | 6 ++--
src/vidalia/UpdateProcess.cpp | 6 ++--
src/vidalia/UpdateProcess.h | 6 ++--
src/vidalia/UpdateProgressDialog.cpp | 6 ++--
src/vidalia/UpdateProgressDialog.h | 6 ++--
src/vidalia/UpdatesAvailableDialog.cpp | 6 ++--
src/vidalia/UpdatesAvailableDialog.h | 6 ++--
src/vidalia/VMessageBox.cpp | 6 ++--
src/vidalia/VMessageBox.h | 6 ++--
src/vidalia/Vidalia.cpp | 6 ++--
src/vidalia/Vidalia.h | 6 ++--
src/vidalia/VidaliaWindow.cpp | 6 ++--
src/vidalia/VidaliaWindow.h | 6 ++--
src/vidalia/about/AboutDialog.cpp | 6 ++--
src/vidalia/about/AboutDialog.h | 6 ++--
src/vidalia/about/LicenseDialog.cpp | 6 ++--
src/vidalia/about/LicenseDialog.h | 6 ++--
src/vidalia/bwgraph/BandwidthGraph.cpp | 6 ++--
src/vidalia/bwgraph/BandwidthGraph.h | 6 ++--
src/vidalia/bwgraph/GraphFrame.cpp | 6 ++--
src/vidalia/bwgraph/GraphFrame.h | 6 ++--
src/vidalia/config/AbstractTorSettings.cpp | 6 ++--
src/vidalia/config/AbstractTorSettings.h | 6 ++--
src/vidalia/config/AdvancedPage.cpp | 6 ++--
src/vidalia/config/AdvancedPage.h | 6 ++--
src/vidalia/config/AppearancePage.cpp | 6 ++--
src/vidalia/config/AppearancePage.h | 6 ++--
src/vidalia/config/BridgeDownloader.cpp | 6 ++--
src/vidalia/config/BridgeDownloader.h | 6 ++--
.../config/BridgeDownloaderProgressDialog.cpp | 6 ++--
.../config/BridgeDownloaderProgressDialog.h | 6 ++--
src/vidalia/config/BridgeUsageDialog.cpp | 6 ++--
src/vidalia/config/BridgeUsageDialog.h | 6 ++--
src/vidalia/config/ConfigDialog.cpp | 6 ++--
src/vidalia/config/ConfigDialog.h | 6 ++--
src/vidalia/config/ConfigPage.h | 6 ++--
src/vidalia/config/ConfigPageStack.cpp | 6 ++--
src/vidalia/config/ConfigPageStack.h | 6 ++--
src/vidalia/config/DomainValidator.cpp | 6 ++--
src/vidalia/config/DomainValidator.h | 6 ++--
src/vidalia/config/ExitPolicy.cpp | 6 ++--
src/vidalia/config/ExitPolicy.h | 6 ++--
src/vidalia/config/GeneralPage.cpp | 6 ++--
src/vidalia/config/GeneralPage.h | 6 ++--
src/vidalia/config/IpValidator.cpp | 6 ++--
src/vidalia/config/IpValidator.h | 6 ++--
src/vidalia/config/Local8BitStringValidator.cpp | 6 ++--
src/vidalia/config/Local8BitStringValidator.h | 6 ++--
src/vidalia/config/NetworkPage.cpp | 6 ++--
src/vidalia/config/NetworkPage.h | 6 ++--
src/vidalia/config/NetworkSettings.cpp | 6 ++--
src/vidalia/config/NetworkSettings.h | 6 ++--
src/vidalia/config/NicknameValidator.cpp | 6 ++--
src/vidalia/config/NicknameValidator.h | 6 ++--
src/vidalia/config/Policy.cpp | 6 ++--
src/vidalia/config/Policy.h | 6 ++--
src/vidalia/config/PortValidator.cpp | 6 ++--
src/vidalia/config/PortValidator.h | 6 ++--
src/vidalia/config/ServerPage.cpp | 6 ++--
src/vidalia/config/ServerPage.h | 6 ++--
src/vidalia/config/ServerSettings.cpp | 6 ++--
src/vidalia/config/ServerSettings.h | 6 ++--
src/vidalia/config/Service.cpp | 6 ++--
src/vidalia/config/Service.h | 6 ++--
src/vidalia/config/ServiceList.cpp | 6 ++--
src/vidalia/config/ServiceList.h | 6 ++--
src/vidalia/config/ServicePage.cpp | 6 ++--
src/vidalia/config/ServicePage.h | 6 ++--
src/vidalia/config/ServiceSettings.cpp | 6 ++--
src/vidalia/config/ServiceSettings.h | 6 ++--
src/vidalia/config/TorSettings.cpp | 6 ++--
src/vidalia/config/TorSettings.h | 6 ++--
src/vidalia/config/TorrcDialog.cpp | 6 ++--
src/vidalia/config/TorrcDialog.h | 6 ++--
src/vidalia/config/UPNPControl.cpp | 6 ++--
src/vidalia/config/UPNPControl.h | 6 ++--
src/vidalia/config/UPNPControlThread.cpp | 6 ++--
src/vidalia/config/UPNPControlThread.h | 6 ++--
src/vidalia/config/UPNPTestDialog.cpp | 6 ++--
src/vidalia/config/UPNPTestDialog.h | 6 ++--
src/vidalia/config/VSettings.cpp | 6 ++--
src/vidalia/config/VSettings.h | 6 ++--
src/vidalia/config/VidaliaSettings.cpp | 6 ++--
src/vidalia/config/VidaliaSettings.h | 6 ++--
src/vidalia/help/browser/HelpBrowser.cpp | 6 ++--
src/vidalia/help/browser/HelpBrowser.h | 6 ++--
src/vidalia/help/browser/HelpTextBrowser.cpp | 6 ++--
src/vidalia/help/browser/HelpTextBrowser.h | 6 ++--
src/vidalia/help/content/ar/bridges.html | 6 ++--
src/vidalia/help/content/ar/config.html | 6 ++--
src/vidalia/help/content/ar/index.html | 6 ++--
src/vidalia/help/content/ar/links.html | 6 ++--
src/vidalia/help/content/ar/log.html | 6 ++--
src/vidalia/help/content/ar/netview.html | 6 ++--
src/vidalia/help/content/ar/running.html | 6 ++--
src/vidalia/help/content/ar/server.html | 6 ++--
src/vidalia/help/content/ar/services.html | 6 ++--
src/vidalia/help/content/ar/troubleshooting.html | 6 ++--
src/vidalia/help/content/bms/bridges.html | 6 ++--
src/vidalia/help/content/bms/config.html | 6 ++--
src/vidalia/help/content/bms/index.html | 6 ++--
src/vidalia/help/content/bms/links.html | 6 ++--
src/vidalia/help/content/bms/log.html | 6 ++--
src/vidalia/help/content/bms/netview.html | 6 ++--
src/vidalia/help/content/bms/running.html | 6 ++--
src/vidalia/help/content/bms/server.html | 6 ++--
src/vidalia/help/content/bms/services.html | 6 ++--
src/vidalia/help/content/bms/troubleshooting.html | 6 ++--
src/vidalia/help/content/de/config.html | 6 ++--
src/vidalia/help/content/de/index.html | 6 ++--
src/vidalia/help/content/de/links.html | 6 ++--
src/vidalia/help/content/de/log.html | 6 ++--
src/vidalia/help/content/de/netview.html | 6 ++--
src/vidalia/help/content/de/running.html | 6 ++--
src/vidalia/help/content/de/server.html | 6 ++--
src/vidalia/help/content/de/troubleshooting.html | 6 ++--
src/vidalia/help/content/en/bridges.html | 6 ++--
src/vidalia/help/content/en/config.html | 6 ++--
src/vidalia/help/content/en/contents.xml | 6 ++--
src/vidalia/help/content/en/index.html | 6 ++--
src/vidalia/help/content/en/links.html | 38 ++++++--------------
src/vidalia/help/content/en/log.html | 6 ++--
src/vidalia/help/content/en/netview.html | 6 ++--
src/vidalia/help/content/en/running.html | 6 ++--
src/vidalia/help/content/en/server.html | 6 ++--
src/vidalia/help/content/en/services.html | 6 ++--
src/vidalia/help/content/en/troubleshooting.html | 6 ++--
src/vidalia/help/content/es/bridges.html | 6 ++--
src/vidalia/help/content/fa/bridges.html | 6 ++--
src/vidalia/help/content/fa/config.html | 6 ++--
src/vidalia/help/content/fa/index.html | 6 ++--
src/vidalia/help/content/fa/links.html | 6 ++--
src/vidalia/help/content/fa/log.html | 6 ++--
src/vidalia/help/content/fa/netview.html | 6 ++--
src/vidalia/help/content/fa/running.html | 6 ++--
src/vidalia/help/content/fa/server.html | 6 ++--
src/vidalia/help/content/fa/services.html | 6 ++--
src/vidalia/help/content/fa/troubleshooting.html | 6 ++--
src/vidalia/help/content/fi/bridges.html | 6 ++--
src/vidalia/help/content/fi/config.html | 6 ++--
src/vidalia/help/content/fi/index.html | 6 ++--
src/vidalia/help/content/fi/links.html | 6 ++--
src/vidalia/help/content/fi/log.html | 6 ++--
src/vidalia/help/content/fi/netview.html | 6 ++--
src/vidalia/help/content/fi/running.html | 6 ++--
src/vidalia/help/content/fi/server.html | 6 ++--
src/vidalia/help/content/fi/troubleshooting.html | 6 ++--
src/vidalia/help/content/fr/bridges.html | 6 ++--
src/vidalia/help/content/fr/config.html | 6 ++--
src/vidalia/help/content/fr/index.html | 6 ++--
src/vidalia/help/content/fr/links.html | 6 ++--
src/vidalia/help/content/fr/log.html | 6 ++--
src/vidalia/help/content/fr/netview.html | 6 ++--
src/vidalia/help/content/fr/running.html | 6 ++--
src/vidalia/help/content/fr/server.html | 6 ++--
src/vidalia/help/content/fr/services.html | 6 ++--
src/vidalia/help/content/fr/troubleshooting.html | 6 ++--
src/vidalia/help/content/it/links.html | 6 ++--
src/vidalia/help/content/my/bridges.html | 6 ++--
src/vidalia/help/content/my/config.html | 6 ++--
src/vidalia/help/content/my/index.html | 6 ++--
src/vidalia/help/content/my/links.html | 6 ++--
src/vidalia/help/content/my/log.html | 6 ++--
src/vidalia/help/content/my/netview.html | 6 ++--
src/vidalia/help/content/my/running.html | 6 ++--
src/vidalia/help/content/my/server.html | 6 ++--
src/vidalia/help/content/my/services.html | 6 ++--
src/vidalia/help/content/my/troubleshooting.html | 6 ++--
src/vidalia/help/content/nl/index.html | 6 ++--
src/vidalia/help/content/nl/links.html | 6 ++--
src/vidalia/help/content/nl/running.html | 6 ++--
src/vidalia/help/content/pl/bridges.html | 6 ++--
src/vidalia/help/content/pl/index.html | 6 ++--
src/vidalia/help/content/pl/links.html | 6 ++--
src/vidalia/help/content/po/af/config.po | 4 +-
src/vidalia/help/content/po/af/index.po | 4 +-
src/vidalia/help/content/po/af/links.po | 4 +-
src/vidalia/help/content/po/af/log.po | 4 +-
src/vidalia/help/content/po/af/running.po | 4 +-
src/vidalia/help/content/po/af/server.po | 4 +-
src/vidalia/help/content/po/af/services.po | 4 +-
src/vidalia/help/content/po/af/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ak/config.po | 4 +-
src/vidalia/help/content/po/ak/index.po | 4 +-
src/vidalia/help/content/po/ak/links.po | 4 +-
src/vidalia/help/content/po/ak/log.po | 4 +-
src/vidalia/help/content/po/ak/running.po | 4 +-
src/vidalia/help/content/po/ak/server.po | 4 +-
src/vidalia/help/content/po/ak/services.po | 4 +-
src/vidalia/help/content/po/ak/troubleshooting.po | 4 +-
src/vidalia/help/content/po/am/config.po | 4 +-
src/vidalia/help/content/po/am/index.po | 4 +-
src/vidalia/help/content/po/am/links.po | 4 +-
src/vidalia/help/content/po/am/log.po | 4 +-
src/vidalia/help/content/po/am/running.po | 4 +-
src/vidalia/help/content/po/am/server.po | 4 +-
src/vidalia/help/content/po/am/services.po | 4 +-
src/vidalia/help/content/po/am/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ar/index.po | 4 +-
src/vidalia/help/content/po/ar/links.po | 4 +-
src/vidalia/help/content/po/ar/log.po | 4 +-
src/vidalia/help/content/po/ar/netview.po | 4 +-
src/vidalia/help/content/po/ar/running.po | 4 +-
src/vidalia/help/content/po/ar/server.po | 4 +-
src/vidalia/help/content/po/ar/services.po | 4 +-
src/vidalia/help/content/po/ar/troubleshooting.po | 4 +-
src/vidalia/help/content/po/arn/config.po | 4 +-
src/vidalia/help/content/po/arn/index.po | 4 +-
src/vidalia/help/content/po/arn/links.po | 4 +-
src/vidalia/help/content/po/arn/log.po | 4 +-
src/vidalia/help/content/po/arn/running.po | 4 +-
src/vidalia/help/content/po/arn/server.po | 4 +-
src/vidalia/help/content/po/arn/services.po | 4 +-
src/vidalia/help/content/po/arn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ast/config.po | 4 +-
src/vidalia/help/content/po/ast/index.po | 4 +-
src/vidalia/help/content/po/ast/links.po | 4 +-
src/vidalia/help/content/po/ast/log.po | 4 +-
src/vidalia/help/content/po/ast/running.po | 4 +-
src/vidalia/help/content/po/ast/server.po | 4 +-
src/vidalia/help/content/po/ast/services.po | 4 +-
src/vidalia/help/content/po/ast/troubleshooting.po | 4 +-
src/vidalia/help/content/po/az/config.po | 4 +-
src/vidalia/help/content/po/az/index.po | 4 +-
src/vidalia/help/content/po/az/links.po | 4 +-
src/vidalia/help/content/po/az/log.po | 4 +-
src/vidalia/help/content/po/az/running.po | 4 +-
src/vidalia/help/content/po/az/server.po | 4 +-
src/vidalia/help/content/po/az/services.po | 4 +-
src/vidalia/help/content/po/az/troubleshooting.po | 4 +-
src/vidalia/help/content/po/be/config.po | 4 +-
src/vidalia/help/content/po/be/index.po | 4 +-
src/vidalia/help/content/po/be/links.po | 4 +-
src/vidalia/help/content/po/be/log.po | 4 +-
src/vidalia/help/content/po/be/running.po | 4 +-
src/vidalia/help/content/po/be/server.po | 4 +-
src/vidalia/help/content/po/be/services.po | 4 +-
src/vidalia/help/content/po/be/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bg/config.po | 4 +-
src/vidalia/help/content/po/bg/index.po | 4 +-
src/vidalia/help/content/po/bg/links.po | 4 +-
src/vidalia/help/content/po/bg/log.po | 4 +-
src/vidalia/help/content/po/bg/running.po | 4 +-
src/vidalia/help/content/po/bg/server.po | 4 +-
src/vidalia/help/content/po/bg/services.po | 4 +-
src/vidalia/help/content/po/bg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bn/config.po | 4 +-
src/vidalia/help/content/po/bn/index.po | 4 +-
src/vidalia/help/content/po/bn/links.po | 4 +-
src/vidalia/help/content/po/bn/log.po | 4 +-
src/vidalia/help/content/po/bn/running.po | 4 +-
src/vidalia/help/content/po/bn/server.po | 4 +-
src/vidalia/help/content/po/bn/services.po | 4 +-
src/vidalia/help/content/po/bn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bn_IN/config.po | 4 +-
src/vidalia/help/content/po/bn_IN/index.po | 4 +-
src/vidalia/help/content/po/bn_IN/links.po | 4 +-
src/vidalia/help/content/po/bn_IN/log.po | 4 +-
src/vidalia/help/content/po/bn_IN/running.po | 4 +-
src/vidalia/help/content/po/bn_IN/server.po | 4 +-
src/vidalia/help/content/po/bn_IN/services.po | 4 +-
.../help/content/po/bn_IN/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bo/bridges.po | 4 +-
src/vidalia/help/content/po/bo/config.po | 4 +-
src/vidalia/help/content/po/bo/index.po | 4 +-
src/vidalia/help/content/po/bo/links.po | 4 +-
src/vidalia/help/content/po/bo/log.po | 4 +-
src/vidalia/help/content/po/bo/netview.po | 4 +-
src/vidalia/help/content/po/bo/running.po | 4 +-
src/vidalia/help/content/po/bo/server.po | 4 +-
src/vidalia/help/content/po/bo/services.po | 4 +-
src/vidalia/help/content/po/bo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/br/bridges.po | 4 +-
src/vidalia/help/content/po/br/config.po | 4 +-
src/vidalia/help/content/po/br/index.po | 4 +-
src/vidalia/help/content/po/br/links.po | 4 +-
src/vidalia/help/content/po/br/log.po | 4 +-
src/vidalia/help/content/po/br/netview.po | 4 +-
src/vidalia/help/content/po/br/running.po | 4 +-
src/vidalia/help/content/po/br/server.po | 4 +-
src/vidalia/help/content/po/br/services.po | 4 +-
src/vidalia/help/content/po/br/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bs/bridges.po | 4 +-
src/vidalia/help/content/po/bs/config.po | 4 +-
src/vidalia/help/content/po/bs/index.po | 4 +-
src/vidalia/help/content/po/bs/links.po | 4 +-
src/vidalia/help/content/po/bs/log.po | 4 +-
src/vidalia/help/content/po/bs/netview.po | 4 +-
src/vidalia/help/content/po/bs/running.po | 4 +-
src/vidalia/help/content/po/bs/server.po | 4 +-
src/vidalia/help/content/po/bs/services.po | 4 +-
src/vidalia/help/content/po/bs/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ca/config.po | 4 +-
src/vidalia/help/content/po/ca/index.po | 4 +-
src/vidalia/help/content/po/ca/links.po | 4 +-
src/vidalia/help/content/po/ca/log.po | 4 +-
src/vidalia/help/content/po/ca/running.po | 4 +-
src/vidalia/help/content/po/ca/server.po | 4 +-
src/vidalia/help/content/po/ca/services.po | 4 +-
src/vidalia/help/content/po/ca/troubleshooting.po | 4 +-
src/vidalia/help/content/po/cs/config.po | 4 +-
src/vidalia/help/content/po/cs/index.po | 4 +-
src/vidalia/help/content/po/cs/links.po | 4 +-
src/vidalia/help/content/po/cs/log.po | 4 +-
src/vidalia/help/content/po/cs/running.po | 4 +-
src/vidalia/help/content/po/cs/server.po | 4 +-
src/vidalia/help/content/po/cs/services.po | 4 +-
src/vidalia/help/content/po/cs/troubleshooting.po | 4 +-
src/vidalia/help/content/po/csb/config.po | 4 +-
src/vidalia/help/content/po/csb/index.po | 4 +-
src/vidalia/help/content/po/csb/links.po | 4 +-
src/vidalia/help/content/po/csb/log.po | 4 +-
src/vidalia/help/content/po/csb/running.po | 4 +-
src/vidalia/help/content/po/csb/server.po | 4 +-
src/vidalia/help/content/po/csb/services.po | 4 +-
src/vidalia/help/content/po/csb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/cy/config.po | 4 +-
src/vidalia/help/content/po/cy/index.po | 4 +-
src/vidalia/help/content/po/cy/links.po | 4 +-
src/vidalia/help/content/po/cy/log.po | 4 +-
src/vidalia/help/content/po/cy/running.po | 4 +-
src/vidalia/help/content/po/cy/server.po | 4 +-
src/vidalia/help/content/po/cy/services.po | 4 +-
src/vidalia/help/content/po/cy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/da/bridges.po | 4 +-
src/vidalia/help/content/po/da/index.po | 4 +-
src/vidalia/help/content/po/da/links.po | 4 +-
src/vidalia/help/content/po/da/log.po | 4 +-
src/vidalia/help/content/po/da/netview.po | 4 +-
src/vidalia/help/content/po/da/running.po | 4 +-
src/vidalia/help/content/po/da/server.po | 4 +-
src/vidalia/help/content/po/da/services.po | 4 +-
src/vidalia/help/content/po/da/troubleshooting.po | 4 +-
src/vidalia/help/content/po/de/bridges.po | 4 +-
src/vidalia/help/content/po/de/config.po | 4 +-
src/vidalia/help/content/po/de/index.po | 4 +-
src/vidalia/help/content/po/de/links.po | 4 +-
src/vidalia/help/content/po/de/log.po | 4 +-
src/vidalia/help/content/po/de/netview.po | 4 +-
src/vidalia/help/content/po/de/running.po | 4 +-
src/vidalia/help/content/po/de/server.po | 4 +-
src/vidalia/help/content/po/de/services.po | 4 +-
src/vidalia/help/content/po/de/troubleshooting.po | 4 +-
src/vidalia/help/content/po/dz/config.po | 4 +-
src/vidalia/help/content/po/dz/index.po | 4 +-
src/vidalia/help/content/po/dz/links.po | 4 +-
src/vidalia/help/content/po/dz/log.po | 4 +-
src/vidalia/help/content/po/dz/running.po | 4 +-
src/vidalia/help/content/po/dz/server.po | 4 +-
src/vidalia/help/content/po/dz/services.po | 4 +-
src/vidalia/help/content/po/dz/troubleshooting.po | 4 +-
src/vidalia/help/content/po/el/config.po | 4 +-
src/vidalia/help/content/po/el/index.po | 4 +-
src/vidalia/help/content/po/el/links.po | 4 +-
src/vidalia/help/content/po/el/log.po | 4 +-
src/vidalia/help/content/po/el/running.po | 4 +-
src/vidalia/help/content/po/el/server.po | 4 +-
src/vidalia/help/content/po/el/services.po | 4 +-
src/vidalia/help/content/po/el/troubleshooting.po | 4 +-
src/vidalia/help/content/po/en/bridges.po | 4 +-
src/vidalia/help/content/po/en/config.po | 4 +-
src/vidalia/help/content/po/en/index.po | 4 +-
src/vidalia/help/content/po/en/links.po | 4 +-
src/vidalia/help/content/po/en/log.po | 4 +-
src/vidalia/help/content/po/en/netview.po | 4 +-
src/vidalia/help/content/po/en/running.po | 4 +-
src/vidalia/help/content/po/en/server.po | 4 +-
src/vidalia/help/content/po/en/services.po | 4 +-
src/vidalia/help/content/po/en/troubleshooting.po | 4 +-
src/vidalia/help/content/po/eo/config.po | 4 +-
src/vidalia/help/content/po/eo/index.po | 4 +-
src/vidalia/help/content/po/eo/links.po | 4 +-
src/vidalia/help/content/po/eo/log.po | 4 +-
src/vidalia/help/content/po/eo/running.po | 4 +-
src/vidalia/help/content/po/eo/server.po | 4 +-
src/vidalia/help/content/po/eo/services.po | 4 +-
src/vidalia/help/content/po/eo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/es/config.po | 4 +-
src/vidalia/help/content/po/es/index.po | 4 +-
src/vidalia/help/content/po/es/links.po | 4 +-
src/vidalia/help/content/po/es/log.po | 4 +-
src/vidalia/help/content/po/es/netview.po | 4 +-
src/vidalia/help/content/po/es/running.po | 4 +-
src/vidalia/help/content/po/es/server.po | 4 +-
src/vidalia/help/content/po/es/services.po | 4 +-
src/vidalia/help/content/po/es/troubleshooting.po | 4 +-
src/vidalia/help/content/po/et/config.po | 4 +-
src/vidalia/help/content/po/et/index.po | 4 +-
src/vidalia/help/content/po/et/links.po | 4 +-
src/vidalia/help/content/po/et/log.po | 4 +-
src/vidalia/help/content/po/et/running.po | 4 +-
src/vidalia/help/content/po/et/server.po | 4 +-
src/vidalia/help/content/po/et/services.po | 4 +-
src/vidalia/help/content/po/et/troubleshooting.po | 4 +-
src/vidalia/help/content/po/eu/config.po | 4 +-
src/vidalia/help/content/po/eu/index.po | 4 +-
src/vidalia/help/content/po/eu/links.po | 4 +-
src/vidalia/help/content/po/eu/log.po | 4 +-
src/vidalia/help/content/po/eu/running.po | 4 +-
src/vidalia/help/content/po/eu/server.po | 4 +-
src/vidalia/help/content/po/eu/services.po | 4 +-
src/vidalia/help/content/po/eu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fa/bridges.po | 4 +-
src/vidalia/help/content/po/fa/config.po | 4 +-
src/vidalia/help/content/po/fa/index.po | 4 +-
src/vidalia/help/content/po/fa/links.po | 4 +-
src/vidalia/help/content/po/fa/log.po | 4 +-
src/vidalia/help/content/po/fa/netview.po | 4 +-
src/vidalia/help/content/po/fa/running.po | 4 +-
src/vidalia/help/content/po/fa/server.po | 4 +-
src/vidalia/help/content/po/fa/services.po | 4 +-
src/vidalia/help/content/po/fa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fi/bridges.po | 4 +-
src/vidalia/help/content/po/fi/config.po | 4 +-
src/vidalia/help/content/po/fi/index.po | 4 +-
src/vidalia/help/content/po/fi/links.po | 4 +-
src/vidalia/help/content/po/fi/log.po | 4 +-
src/vidalia/help/content/po/fi/netview.po | 4 +-
src/vidalia/help/content/po/fi/running.po | 4 +-
src/vidalia/help/content/po/fi/server.po | 4 +-
src/vidalia/help/content/po/fi/services.po | 4 +-
src/vidalia/help/content/po/fi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fil/config.po | 4 +-
src/vidalia/help/content/po/fil/index.po | 4 +-
src/vidalia/help/content/po/fil/links.po | 4 +-
src/vidalia/help/content/po/fil/log.po | 4 +-
src/vidalia/help/content/po/fil/running.po | 4 +-
src/vidalia/help/content/po/fil/server.po | 4 +-
src/vidalia/help/content/po/fil/services.po | 4 +-
src/vidalia/help/content/po/fil/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fo/bridges.po | 4 +-
src/vidalia/help/content/po/fo/config.po | 4 +-
src/vidalia/help/content/po/fo/index.po | 4 +-
src/vidalia/help/content/po/fo/links.po | 4 +-
src/vidalia/help/content/po/fo/log.po | 4 +-
src/vidalia/help/content/po/fo/netview.po | 4 +-
src/vidalia/help/content/po/fo/running.po | 4 +-
src/vidalia/help/content/po/fo/server.po | 4 +-
src/vidalia/help/content/po/fo/services.po | 4 +-
src/vidalia/help/content/po/fo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fr/config.po | 4 +-
src/vidalia/help/content/po/fr/index.po | 4 +-
src/vidalia/help/content/po/fr/links.po | 4 +-
src/vidalia/help/content/po/fr/log.po | 4 +-
src/vidalia/help/content/po/fr/netview.po | 4 +-
src/vidalia/help/content/po/fr/running.po | 4 +-
src/vidalia/help/content/po/fr/server.po | 4 +-
src/vidalia/help/content/po/fr/services.po | 4 +-
src/vidalia/help/content/po/fr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fur/config.po | 4 +-
src/vidalia/help/content/po/fur/index.po | 4 +-
src/vidalia/help/content/po/fur/links.po | 4 +-
src/vidalia/help/content/po/fur/log.po | 4 +-
src/vidalia/help/content/po/fur/running.po | 4 +-
src/vidalia/help/content/po/fur/server.po | 4 +-
src/vidalia/help/content/po/fur/services.po | 4 +-
src/vidalia/help/content/po/fur/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fy/bridges.po | 4 +-
src/vidalia/help/content/po/fy/config.po | 4 +-
src/vidalia/help/content/po/fy/index.po | 4 +-
src/vidalia/help/content/po/fy/links.po | 4 +-
src/vidalia/help/content/po/fy/log.po | 4 +-
src/vidalia/help/content/po/fy/netview.po | 4 +-
src/vidalia/help/content/po/fy/running.po | 4 +-
src/vidalia/help/content/po/fy/server.po | 4 +-
src/vidalia/help/content/po/fy/services.po | 4 +-
src/vidalia/help/content/po/fy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ga/config.po | 4 +-
src/vidalia/help/content/po/ga/index.po | 4 +-
src/vidalia/help/content/po/ga/links.po | 4 +-
src/vidalia/help/content/po/ga/log.po | 4 +-
src/vidalia/help/content/po/ga/running.po | 4 +-
src/vidalia/help/content/po/ga/server.po | 4 +-
src/vidalia/help/content/po/ga/services.po | 4 +-
src/vidalia/help/content/po/ga/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gl/config.po | 4 +-
src/vidalia/help/content/po/gl/index.po | 4 +-
src/vidalia/help/content/po/gl/links.po | 4 +-
src/vidalia/help/content/po/gl/log.po | 4 +-
src/vidalia/help/content/po/gl/running.po | 4 +-
src/vidalia/help/content/po/gl/server.po | 4 +-
src/vidalia/help/content/po/gl/services.po | 4 +-
src/vidalia/help/content/po/gl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gu/config.po | 4 +-
src/vidalia/help/content/po/gu/index.po | 4 +-
src/vidalia/help/content/po/gu/links.po | 4 +-
src/vidalia/help/content/po/gu/log.po | 4 +-
src/vidalia/help/content/po/gu/running.po | 4 +-
src/vidalia/help/content/po/gu/server.po | 4 +-
src/vidalia/help/content/po/gu/services.po | 4 +-
src/vidalia/help/content/po/gu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gun/config.po | 4 +-
src/vidalia/help/content/po/gun/index.po | 4 +-
src/vidalia/help/content/po/gun/links.po | 4 +-
src/vidalia/help/content/po/gun/log.po | 4 +-
src/vidalia/help/content/po/gun/running.po | 4 +-
src/vidalia/help/content/po/gun/server.po | 4 +-
src/vidalia/help/content/po/gun/services.po | 4 +-
src/vidalia/help/content/po/gun/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ha/config.po | 4 +-
src/vidalia/help/content/po/ha/index.po | 4 +-
src/vidalia/help/content/po/ha/links.po | 4 +-
src/vidalia/help/content/po/ha/log.po | 4 +-
src/vidalia/help/content/po/ha/running.po | 4 +-
src/vidalia/help/content/po/ha/server.po | 4 +-
src/vidalia/help/content/po/ha/services.po | 4 +-
src/vidalia/help/content/po/ha/troubleshooting.po | 4 +-
src/vidalia/help/content/po/he/config.po | 4 +-
src/vidalia/help/content/po/he/index.po | 4 +-
src/vidalia/help/content/po/he/links.po | 4 +-
src/vidalia/help/content/po/he/log.po | 4 +-
src/vidalia/help/content/po/he/running.po | 4 +-
src/vidalia/help/content/po/he/server.po | 4 +-
src/vidalia/help/content/po/he/services.po | 4 +-
src/vidalia/help/content/po/he/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hi/config.po | 4 +-
src/vidalia/help/content/po/hi/index.po | 4 +-
src/vidalia/help/content/po/hi/links.po | 4 +-
src/vidalia/help/content/po/hi/log.po | 4 +-
src/vidalia/help/content/po/hi/running.po | 4 +-
src/vidalia/help/content/po/hi/server.po | 4 +-
src/vidalia/help/content/po/hi/services.po | 4 +-
src/vidalia/help/content/po/hi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hr/config.po | 4 +-
src/vidalia/help/content/po/hr/index.po | 4 +-
src/vidalia/help/content/po/hr/links.po | 4 +-
src/vidalia/help/content/po/hr/log.po | 4 +-
src/vidalia/help/content/po/hr/running.po | 4 +-
src/vidalia/help/content/po/hr/server.po | 4 +-
src/vidalia/help/content/po/hr/services.po | 4 +-
src/vidalia/help/content/po/hr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ht/config.po | 4 +-
src/vidalia/help/content/po/ht/index.po | 4 +-
src/vidalia/help/content/po/ht/links.po | 4 +-
src/vidalia/help/content/po/ht/log.po | 4 +-
src/vidalia/help/content/po/ht/running.po | 4 +-
src/vidalia/help/content/po/ht/server.po | 4 +-
src/vidalia/help/content/po/ht/services.po | 4 +-
src/vidalia/help/content/po/ht/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hu/config.po | 4 +-
src/vidalia/help/content/po/hu/index.po | 4 +-
src/vidalia/help/content/po/hu/links.po | 4 +-
src/vidalia/help/content/po/hu/log.po | 4 +-
src/vidalia/help/content/po/hu/running.po | 4 +-
src/vidalia/help/content/po/hu/server.po | 4 +-
src/vidalia/help/content/po/hu/services.po | 4 +-
src/vidalia/help/content/po/hu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hy/bridges.po | 4 +-
src/vidalia/help/content/po/hy/config.po | 4 +-
src/vidalia/help/content/po/hy/index.po | 4 +-
src/vidalia/help/content/po/hy/links.po | 4 +-
src/vidalia/help/content/po/hy/log.po | 4 +-
src/vidalia/help/content/po/hy/netview.po | 4 +-
src/vidalia/help/content/po/hy/running.po | 4 +-
src/vidalia/help/content/po/hy/server.po | 4 +-
src/vidalia/help/content/po/hy/services.po | 4 +-
src/vidalia/help/content/po/hy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/id/config.po | 4 +-
src/vidalia/help/content/po/id/index.po | 4 +-
src/vidalia/help/content/po/id/links.po | 4 +-
src/vidalia/help/content/po/id/log.po | 4 +-
src/vidalia/help/content/po/id/running.po | 4 +-
src/vidalia/help/content/po/id/server.po | 4 +-
src/vidalia/help/content/po/id/services.po | 4 +-
src/vidalia/help/content/po/id/troubleshooting.po | 4 +-
src/vidalia/help/content/po/is/config.po | 4 +-
src/vidalia/help/content/po/is/index.po | 4 +-
src/vidalia/help/content/po/is/links.po | 4 +-
src/vidalia/help/content/po/is/log.po | 4 +-
src/vidalia/help/content/po/is/running.po | 4 +-
src/vidalia/help/content/po/is/server.po | 4 +-
src/vidalia/help/content/po/is/services.po | 4 +-
src/vidalia/help/content/po/is/troubleshooting.po | 4 +-
src/vidalia/help/content/po/it/config.po | 4 +-
src/vidalia/help/content/po/it/index.po | 4 +-
src/vidalia/help/content/po/it/links.po | 4 +-
src/vidalia/help/content/po/it/log.po | 4 +-
src/vidalia/help/content/po/it/netview.po | 4 +-
src/vidalia/help/content/po/it/running.po | 4 +-
src/vidalia/help/content/po/it/server.po | 4 +-
src/vidalia/help/content/po/it/services.po | 4 +-
src/vidalia/help/content/po/it/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ja/bridges.po | 4 +-
src/vidalia/help/content/po/ja/config.po | 4 +-
src/vidalia/help/content/po/ja/index.po | 4 +-
src/vidalia/help/content/po/ja/links.po | 4 +-
src/vidalia/help/content/po/ja/log.po | 4 +-
src/vidalia/help/content/po/ja/netview.po | 4 +-
src/vidalia/help/content/po/ja/running.po | 4 +-
src/vidalia/help/content/po/ja/server.po | 4 +-
src/vidalia/help/content/po/ja/services.po | 4 +-
src/vidalia/help/content/po/ja/troubleshooting.po | 4 +-
src/vidalia/help/content/po/jv/bridges.po | 4 +-
src/vidalia/help/content/po/jv/config.po | 4 +-
src/vidalia/help/content/po/jv/index.po | 4 +-
src/vidalia/help/content/po/jv/links.po | 4 +-
src/vidalia/help/content/po/jv/log.po | 4 +-
src/vidalia/help/content/po/jv/netview.po | 4 +-
src/vidalia/help/content/po/jv/running.po | 4 +-
src/vidalia/help/content/po/jv/server.po | 4 +-
src/vidalia/help/content/po/jv/services.po | 4 +-
src/vidalia/help/content/po/jv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ka/bridges.po | 4 +-
src/vidalia/help/content/po/ka/config.po | 4 +-
src/vidalia/help/content/po/ka/index.po | 4 +-
src/vidalia/help/content/po/ka/links.po | 4 +-
src/vidalia/help/content/po/ka/log.po | 4 +-
src/vidalia/help/content/po/ka/netview.po | 4 +-
src/vidalia/help/content/po/ka/running.po | 4 +-
src/vidalia/help/content/po/ka/server.po | 4 +-
src/vidalia/help/content/po/ka/services.po | 4 +-
src/vidalia/help/content/po/ka/troubleshooting.po | 4 +-
src/vidalia/help/content/po/km/bridges.po | 4 +-
src/vidalia/help/content/po/km/config.po | 4 +-
src/vidalia/help/content/po/km/index.po | 4 +-
src/vidalia/help/content/po/km/links.po | 4 +-
src/vidalia/help/content/po/km/log.po | 4 +-
src/vidalia/help/content/po/km/netview.po | 4 +-
src/vidalia/help/content/po/km/running.po | 4 +-
src/vidalia/help/content/po/km/server.po | 4 +-
src/vidalia/help/content/po/km/services.po | 4 +-
src/vidalia/help/content/po/km/troubleshooting.po | 4 +-
src/vidalia/help/content/po/kn/config.po | 4 +-
src/vidalia/help/content/po/kn/index.po | 4 +-
src/vidalia/help/content/po/kn/links.po | 4 +-
src/vidalia/help/content/po/kn/log.po | 4 +-
src/vidalia/help/content/po/kn/running.po | 4 +-
src/vidalia/help/content/po/kn/server.po | 4 +-
src/vidalia/help/content/po/kn/services.po | 4 +-
src/vidalia/help/content/po/kn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ko/bridges.po | 4 +-
src/vidalia/help/content/po/ko/config.po | 4 +-
src/vidalia/help/content/po/ko/index.po | 4 +-
src/vidalia/help/content/po/ko/links.po | 4 +-
src/vidalia/help/content/po/ko/log.po | 4 +-
src/vidalia/help/content/po/ko/netview.po | 4 +-
src/vidalia/help/content/po/ko/running.po | 4 +-
src/vidalia/help/content/po/ko/server.po | 4 +-
src/vidalia/help/content/po/ko/services.po | 4 +-
src/vidalia/help/content/po/ko/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ku/bridges.po | 4 +-
src/vidalia/help/content/po/ku/config.po | 4 +-
src/vidalia/help/content/po/ku/index.po | 4 +-
src/vidalia/help/content/po/ku/links.po | 4 +-
src/vidalia/help/content/po/ku/log.po | 4 +-
src/vidalia/help/content/po/ku/netview.po | 4 +-
src/vidalia/help/content/po/ku/running.po | 4 +-
src/vidalia/help/content/po/ku/server.po | 4 +-
src/vidalia/help/content/po/ku/services.po | 4 +-
src/vidalia/help/content/po/ku/troubleshooting.po | 4 +-
src/vidalia/help/content/po/kw/config.po | 4 +-
src/vidalia/help/content/po/kw/index.po | 4 +-
src/vidalia/help/content/po/kw/links.po | 4 +-
src/vidalia/help/content/po/kw/log.po | 4 +-
src/vidalia/help/content/po/kw/running.po | 4 +-
src/vidalia/help/content/po/kw/server.po | 4 +-
src/vidalia/help/content/po/kw/services.po | 4 +-
src/vidalia/help/content/po/kw/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ky/bridges.po | 4 +-
src/vidalia/help/content/po/ky/config.po | 4 +-
src/vidalia/help/content/po/ky/index.po | 4 +-
src/vidalia/help/content/po/ky/links.po | 4 +-
src/vidalia/help/content/po/ky/log.po | 4 +-
src/vidalia/help/content/po/ky/netview.po | 4 +-
src/vidalia/help/content/po/ky/running.po | 4 +-
src/vidalia/help/content/po/ky/server.po | 4 +-
src/vidalia/help/content/po/ky/services.po | 4 +-
src/vidalia/help/content/po/ky/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lb/config.po | 4 +-
src/vidalia/help/content/po/lb/index.po | 4 +-
src/vidalia/help/content/po/lb/links.po | 4 +-
src/vidalia/help/content/po/lb/log.po | 4 +-
src/vidalia/help/content/po/lb/running.po | 4 +-
src/vidalia/help/content/po/lb/server.po | 4 +-
src/vidalia/help/content/po/lb/services.po | 4 +-
src/vidalia/help/content/po/lb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lg/bridges.po | 4 +-
src/vidalia/help/content/po/lg/config.po | 4 +-
src/vidalia/help/content/po/lg/index.po | 4 +-
src/vidalia/help/content/po/lg/links.po | 4 +-
src/vidalia/help/content/po/lg/log.po | 4 +-
src/vidalia/help/content/po/lg/netview.po | 4 +-
src/vidalia/help/content/po/lg/running.po | 4 +-
src/vidalia/help/content/po/lg/server.po | 4 +-
src/vidalia/help/content/po/lg/services.po | 4 +-
src/vidalia/help/content/po/lg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ln/config.po | 4 +-
src/vidalia/help/content/po/ln/index.po | 4 +-
src/vidalia/help/content/po/ln/links.po | 4 +-
src/vidalia/help/content/po/ln/log.po | 4 +-
src/vidalia/help/content/po/ln/running.po | 4 +-
src/vidalia/help/content/po/ln/server.po | 4 +-
src/vidalia/help/content/po/ln/services.po | 4 +-
src/vidalia/help/content/po/ln/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lo/config.po | 4 +-
src/vidalia/help/content/po/lo/index.po | 4 +-
src/vidalia/help/content/po/lo/links.po | 4 +-
src/vidalia/help/content/po/lo/log.po | 4 +-
src/vidalia/help/content/po/lo/running.po | 4 +-
src/vidalia/help/content/po/lo/server.po | 4 +-
src/vidalia/help/content/po/lo/services.po | 4 +-
src/vidalia/help/content/po/lo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lt/config.po | 4 +-
src/vidalia/help/content/po/lt/index.po | 4 +-
src/vidalia/help/content/po/lt/links.po | 4 +-
src/vidalia/help/content/po/lt/log.po | 4 +-
src/vidalia/help/content/po/lt/running.po | 4 +-
src/vidalia/help/content/po/lt/server.po | 4 +-
src/vidalia/help/content/po/lt/services.po | 4 +-
src/vidalia/help/content/po/lt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lv/config.po | 4 +-
src/vidalia/help/content/po/lv/index.po | 4 +-
src/vidalia/help/content/po/lv/links.po | 4 +-
src/vidalia/help/content/po/lv/log.po | 4 +-
src/vidalia/help/content/po/lv/running.po | 4 +-
src/vidalia/help/content/po/lv/server.po | 4 +-
src/vidalia/help/content/po/lv/services.po | 4 +-
src/vidalia/help/content/po/lv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mg/config.po | 4 +-
src/vidalia/help/content/po/mg/index.po | 4 +-
src/vidalia/help/content/po/mg/links.po | 4 +-
src/vidalia/help/content/po/mg/log.po | 4 +-
src/vidalia/help/content/po/mg/running.po | 4 +-
src/vidalia/help/content/po/mg/server.po | 4 +-
src/vidalia/help/content/po/mg/services.po | 4 +-
src/vidalia/help/content/po/mg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mi/config.po | 4 +-
src/vidalia/help/content/po/mi/index.po | 4 +-
src/vidalia/help/content/po/mi/links.po | 4 +-
src/vidalia/help/content/po/mi/log.po | 4 +-
src/vidalia/help/content/po/mi/running.po | 4 +-
src/vidalia/help/content/po/mi/server.po | 4 +-
src/vidalia/help/content/po/mi/services.po | 4 +-
src/vidalia/help/content/po/mi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mk/config.po | 4 +-
src/vidalia/help/content/po/mk/index.po | 4 +-
src/vidalia/help/content/po/mk/links.po | 4 +-
src/vidalia/help/content/po/mk/log.po | 4 +-
src/vidalia/help/content/po/mk/running.po | 4 +-
src/vidalia/help/content/po/mk/server.po | 4 +-
src/vidalia/help/content/po/mk/services.po | 4 +-
src/vidalia/help/content/po/mk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ml/config.po | 4 +-
src/vidalia/help/content/po/ml/index.po | 4 +-
src/vidalia/help/content/po/ml/links.po | 4 +-
src/vidalia/help/content/po/ml/log.po | 4 +-
src/vidalia/help/content/po/ml/running.po | 4 +-
src/vidalia/help/content/po/ml/server.po | 4 +-
src/vidalia/help/content/po/ml/services.po | 4 +-
src/vidalia/help/content/po/ml/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mn/config.po | 4 +-
src/vidalia/help/content/po/mn/index.po | 4 +-
src/vidalia/help/content/po/mn/links.po | 4 +-
src/vidalia/help/content/po/mn/log.po | 4 +-
src/vidalia/help/content/po/mn/running.po | 4 +-
src/vidalia/help/content/po/mn/server.po | 4 +-
src/vidalia/help/content/po/mn/services.po | 4 +-
src/vidalia/help/content/po/mn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mr/config.po | 4 +-
src/vidalia/help/content/po/mr/index.po | 4 +-
src/vidalia/help/content/po/mr/links.po | 4 +-
src/vidalia/help/content/po/mr/log.po | 4 +-
src/vidalia/help/content/po/mr/running.po | 4 +-
src/vidalia/help/content/po/mr/server.po | 4 +-
src/vidalia/help/content/po/mr/services.po | 4 +-
src/vidalia/help/content/po/mr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ms/config.po | 4 +-
src/vidalia/help/content/po/ms/index.po | 4 +-
src/vidalia/help/content/po/ms/links.po | 4 +-
src/vidalia/help/content/po/ms/log.po | 4 +-
src/vidalia/help/content/po/ms/running.po | 4 +-
src/vidalia/help/content/po/ms/server.po | 4 +-
src/vidalia/help/content/po/ms/services.po | 4 +-
src/vidalia/help/content/po/ms/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mt/config.po | 4 +-
src/vidalia/help/content/po/mt/index.po | 4 +-
src/vidalia/help/content/po/mt/links.po | 4 +-
src/vidalia/help/content/po/mt/log.po | 4 +-
src/vidalia/help/content/po/mt/running.po | 4 +-
src/vidalia/help/content/po/mt/server.po | 4 +-
src/vidalia/help/content/po/mt/services.po | 4 +-
src/vidalia/help/content/po/mt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/my/config.po | 4 +-
src/vidalia/help/content/po/my/index.po | 4 +-
src/vidalia/help/content/po/my/links.po | 4 +-
src/vidalia/help/content/po/my/log.po | 4 +-
src/vidalia/help/content/po/my/netview.po | 4 +-
src/vidalia/help/content/po/my/running.po | 4 +-
src/vidalia/help/content/po/my/server.po | 4 +-
src/vidalia/help/content/po/my/services.po | 4 +-
src/vidalia/help/content/po/my/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nah/bridges.po | 4 +-
src/vidalia/help/content/po/nah/config.po | 4 +-
src/vidalia/help/content/po/nah/index.po | 4 +-
src/vidalia/help/content/po/nah/links.po | 4 +-
src/vidalia/help/content/po/nah/log.po | 4 +-
src/vidalia/help/content/po/nah/netview.po | 4 +-
src/vidalia/help/content/po/nah/running.po | 4 +-
src/vidalia/help/content/po/nah/server.po | 4 +-
src/vidalia/help/content/po/nah/services.po | 4 +-
src/vidalia/help/content/po/nah/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nap/config.po | 4 +-
src/vidalia/help/content/po/nap/index.po | 4 +-
src/vidalia/help/content/po/nap/links.po | 4 +-
src/vidalia/help/content/po/nap/log.po | 4 +-
src/vidalia/help/content/po/nap/running.po | 4 +-
src/vidalia/help/content/po/nap/server.po | 4 +-
src/vidalia/help/content/po/nap/services.po | 4 +-
src/vidalia/help/content/po/nap/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nb/config.po | 4 +-
src/vidalia/help/content/po/nb/index.po | 4 +-
src/vidalia/help/content/po/nb/links.po | 4 +-
src/vidalia/help/content/po/nb/log.po | 4 +-
src/vidalia/help/content/po/nb/running.po | 4 +-
src/vidalia/help/content/po/nb/server.po | 4 +-
src/vidalia/help/content/po/nb/services.po | 4 +-
src/vidalia/help/content/po/nb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ne/config.po | 4 +-
src/vidalia/help/content/po/ne/index.po | 4 +-
src/vidalia/help/content/po/ne/links.po | 4 +-
src/vidalia/help/content/po/ne/log.po | 4 +-
src/vidalia/help/content/po/ne/running.po | 4 +-
src/vidalia/help/content/po/ne/server.po | 4 +-
src/vidalia/help/content/po/ne/services.po | 4 +-
src/vidalia/help/content/po/ne/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nl/config.po | 4 +-
src/vidalia/help/content/po/nl/index.po | 4 +-
src/vidalia/help/content/po/nl/links.po | 4 +-
src/vidalia/help/content/po/nl/log.po | 4 +-
src/vidalia/help/content/po/nl/running.po | 4 +-
src/vidalia/help/content/po/nl/server.po | 4 +-
src/vidalia/help/content/po/nl/services.po | 4 +-
src/vidalia/help/content/po/nl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nn/config.po | 4 +-
src/vidalia/help/content/po/nn/index.po | 4 +-
src/vidalia/help/content/po/nn/links.po | 4 +-
src/vidalia/help/content/po/nn/log.po | 4 +-
src/vidalia/help/content/po/nn/running.po | 4 +-
src/vidalia/help/content/po/nn/server.po | 4 +-
src/vidalia/help/content/po/nn/services.po | 4 +-
src/vidalia/help/content/po/nn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nso/config.po | 4 +-
src/vidalia/help/content/po/nso/index.po | 4 +-
src/vidalia/help/content/po/nso/links.po | 4 +-
src/vidalia/help/content/po/nso/log.po | 4 +-
src/vidalia/help/content/po/nso/running.po | 4 +-
src/vidalia/help/content/po/nso/server.po | 4 +-
src/vidalia/help/content/po/nso/services.po | 4 +-
src/vidalia/help/content/po/nso/troubleshooting.po | 4 +-
src/vidalia/help/content/po/oc/config.po | 4 +-
src/vidalia/help/content/po/oc/index.po | 4 +-
src/vidalia/help/content/po/oc/links.po | 4 +-
src/vidalia/help/content/po/oc/log.po | 4 +-
src/vidalia/help/content/po/oc/running.po | 4 +-
src/vidalia/help/content/po/oc/server.po | 4 +-
src/vidalia/help/content/po/oc/services.po | 4 +-
src/vidalia/help/content/po/oc/troubleshooting.po | 4 +-
src/vidalia/help/content/po/or/bridges.po | 4 +-
src/vidalia/help/content/po/or/config.po | 4 +-
src/vidalia/help/content/po/or/index.po | 4 +-
src/vidalia/help/content/po/or/links.po | 4 +-
src/vidalia/help/content/po/or/log.po | 4 +-
src/vidalia/help/content/po/or/netview.po | 4 +-
src/vidalia/help/content/po/or/running.po | 4 +-
src/vidalia/help/content/po/or/server.po | 4 +-
src/vidalia/help/content/po/or/services.po | 4 +-
src/vidalia/help/content/po/or/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pa/config.po | 4 +-
src/vidalia/help/content/po/pa/index.po | 4 +-
src/vidalia/help/content/po/pa/links.po | 4 +-
src/vidalia/help/content/po/pa/log.po | 4 +-
src/vidalia/help/content/po/pa/running.po | 4 +-
src/vidalia/help/content/po/pa/server.po | 4 +-
src/vidalia/help/content/po/pa/services.po | 4 +-
src/vidalia/help/content/po/pa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pap/config.po | 4 +-
src/vidalia/help/content/po/pap/index.po | 4 +-
src/vidalia/help/content/po/pap/links.po | 4 +-
src/vidalia/help/content/po/pap/log.po | 4 +-
src/vidalia/help/content/po/pap/running.po | 4 +-
src/vidalia/help/content/po/pap/server.po | 4 +-
src/vidalia/help/content/po/pap/services.po | 4 +-
src/vidalia/help/content/po/pap/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pl/config.po | 4 +-
src/vidalia/help/content/po/pl/index.po | 4 +-
src/vidalia/help/content/po/pl/links.po | 4 +-
src/vidalia/help/content/po/pl/log.po | 4 +-
src/vidalia/help/content/po/pl/running.po | 4 +-
src/vidalia/help/content/po/pl/server.po | 4 +-
src/vidalia/help/content/po/pl/services.po | 4 +-
src/vidalia/help/content/po/pl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pms/config.po | 4 +-
src/vidalia/help/content/po/pms/index.po | 4 +-
src/vidalia/help/content/po/pms/links.po | 4 +-
src/vidalia/help/content/po/pms/log.po | 4 +-
src/vidalia/help/content/po/pms/running.po | 4 +-
src/vidalia/help/content/po/pms/server.po | 4 +-
src/vidalia/help/content/po/pms/services.po | 4 +-
src/vidalia/help/content/po/pms/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ps/config.po | 4 +-
src/vidalia/help/content/po/ps/index.po | 4 +-
src/vidalia/help/content/po/ps/links.po | 4 +-
src/vidalia/help/content/po/ps/log.po | 4 +-
src/vidalia/help/content/po/ps/running.po | 4 +-
src/vidalia/help/content/po/ps/server.po | 4 +-
src/vidalia/help/content/po/ps/services.po | 4 +-
src/vidalia/help/content/po/ps/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pt/config.po | 4 +-
src/vidalia/help/content/po/pt/index.po | 4 +-
src/vidalia/help/content/po/pt/links.po | 4 +-
src/vidalia/help/content/po/pt/log.po | 4 +-
src/vidalia/help/content/po/pt/running.po | 4 +-
src/vidalia/help/content/po/pt/server.po | 4 +-
src/vidalia/help/content/po/pt/services.po | 4 +-
src/vidalia/help/content/po/pt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pt_BR/config.po | 4 +-
src/vidalia/help/content/po/pt_BR/index.po | 4 +-
src/vidalia/help/content/po/pt_BR/links.po | 4 +-
src/vidalia/help/content/po/pt_BR/log.po | 4 +-
src/vidalia/help/content/po/pt_BR/running.po | 4 +-
src/vidalia/help/content/po/pt_BR/server.po | 4 +-
src/vidalia/help/content/po/pt_BR/services.po | 4 +-
.../help/content/po/pt_BR/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ro/config.po | 4 +-
src/vidalia/help/content/po/ro/index.po | 4 +-
src/vidalia/help/content/po/ro/links.po | 4 +-
src/vidalia/help/content/po/ro/log.po | 4 +-
src/vidalia/help/content/po/ro/running.po | 4 +-
src/vidalia/help/content/po/ro/server.po | 4 +-
src/vidalia/help/content/po/ro/services.po | 4 +-
src/vidalia/help/content/po/ro/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ru/config.po | 4 +-
src/vidalia/help/content/po/ru/index.po | 4 +-
src/vidalia/help/content/po/ru/links.po | 4 +-
src/vidalia/help/content/po/ru/log.po | 4 +-
src/vidalia/help/content/po/ru/netview.po | 4 +-
src/vidalia/help/content/po/ru/running.po | 4 +-
src/vidalia/help/content/po/ru/server.po | 4 +-
src/vidalia/help/content/po/ru/services.po | 4 +-
src/vidalia/help/content/po/ru/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sco/config.po | 4 +-
src/vidalia/help/content/po/sco/index.po | 4 +-
src/vidalia/help/content/po/sco/links.po | 4 +-
src/vidalia/help/content/po/sco/log.po | 4 +-
src/vidalia/help/content/po/sco/running.po | 4 +-
src/vidalia/help/content/po/sco/server.po | 4 +-
src/vidalia/help/content/po/sco/services.po | 4 +-
src/vidalia/help/content/po/sco/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sk/bridges.po | 4 +-
src/vidalia/help/content/po/sk/config.po | 4 +-
src/vidalia/help/content/po/sk/index.po | 4 +-
src/vidalia/help/content/po/sk/links.po | 4 +-
src/vidalia/help/content/po/sk/log.po | 4 +-
src/vidalia/help/content/po/sk/netview.po | 4 +-
src/vidalia/help/content/po/sk/running.po | 4 +-
src/vidalia/help/content/po/sk/server.po | 4 +-
src/vidalia/help/content/po/sk/services.po | 4 +-
src/vidalia/help/content/po/sk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sl/bridges.po | 4 +-
src/vidalia/help/content/po/sl/config.po | 4 +-
src/vidalia/help/content/po/sl/index.po | 4 +-
src/vidalia/help/content/po/sl/links.po | 4 +-
src/vidalia/help/content/po/sl/log.po | 4 +-
src/vidalia/help/content/po/sl/netview.po | 4 +-
src/vidalia/help/content/po/sl/running.po | 4 +-
src/vidalia/help/content/po/sl/server.po | 4 +-
src/vidalia/help/content/po/sl/services.po | 4 +-
src/vidalia/help/content/po/sl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/so/bridges.po | 4 +-
src/vidalia/help/content/po/so/config.po | 4 +-
src/vidalia/help/content/po/so/index.po | 4 +-
src/vidalia/help/content/po/so/links.po | 4 +-
src/vidalia/help/content/po/so/log.po | 4 +-
src/vidalia/help/content/po/so/netview.po | 4 +-
src/vidalia/help/content/po/so/running.po | 4 +-
src/vidalia/help/content/po/so/server.po | 4 +-
src/vidalia/help/content/po/so/services.po | 4 +-
src/vidalia/help/content/po/so/troubleshooting.po | 4 +-
src/vidalia/help/content/po/son/config.po | 4 +-
src/vidalia/help/content/po/son/index.po | 4 +-
src/vidalia/help/content/po/son/links.po | 4 +-
src/vidalia/help/content/po/son/log.po | 4 +-
src/vidalia/help/content/po/son/running.po | 4 +-
src/vidalia/help/content/po/son/server.po | 4 +-
src/vidalia/help/content/po/son/services.po | 4 +-
src/vidalia/help/content/po/son/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sq/bridges.po | 4 +-
src/vidalia/help/content/po/sq/config.po | 4 +-
src/vidalia/help/content/po/sq/index.po | 4 +-
src/vidalia/help/content/po/sq/links.po | 4 +-
src/vidalia/help/content/po/sq/log.po | 4 +-
src/vidalia/help/content/po/sq/netview.po | 4 +-
src/vidalia/help/content/po/sq/running.po | 4 +-
src/vidalia/help/content/po/sq/server.po | 4 +-
src/vidalia/help/content/po/sq/services.po | 4 +-
src/vidalia/help/content/po/sq/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sr/bridges.po | 4 +-
src/vidalia/help/content/po/sr/config.po | 4 +-
src/vidalia/help/content/po/sr/index.po | 4 +-
src/vidalia/help/content/po/sr/links.po | 4 +-
src/vidalia/help/content/po/sr/log.po | 4 +-
src/vidalia/help/content/po/sr/netview.po | 4 +-
src/vidalia/help/content/po/sr/running.po | 4 +-
src/vidalia/help/content/po/sr/server.po | 4 +-
src/vidalia/help/content/po/sr/services.po | 4 +-
src/vidalia/help/content/po/sr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/st/bridges.po | 4 +-
src/vidalia/help/content/po/st/config.po | 4 +-
src/vidalia/help/content/po/st/index.po | 4 +-
src/vidalia/help/content/po/st/links.po | 4 +-
src/vidalia/help/content/po/st/log.po | 4 +-
src/vidalia/help/content/po/st/netview.po | 4 +-
src/vidalia/help/content/po/st/running.po | 4 +-
src/vidalia/help/content/po/st/server.po | 4 +-
src/vidalia/help/content/po/st/services.po | 4 +-
src/vidalia/help/content/po/st/troubleshooting.po | 4 +-
src/vidalia/help/content/po/su/config.po | 4 +-
src/vidalia/help/content/po/su/index.po | 4 +-
src/vidalia/help/content/po/su/links.po | 4 +-
src/vidalia/help/content/po/su/log.po | 4 +-
src/vidalia/help/content/po/su/running.po | 4 +-
src/vidalia/help/content/po/su/server.po | 4 +-
src/vidalia/help/content/po/su/services.po | 4 +-
src/vidalia/help/content/po/su/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sv/bridges.po | 4 +-
src/vidalia/help/content/po/sv/config.po | 4 +-
src/vidalia/help/content/po/sv/index.po | 4 +-
src/vidalia/help/content/po/sv/links.po | 4 +-
src/vidalia/help/content/po/sv/log.po | 4 +-
src/vidalia/help/content/po/sv/netview.po | 4 +-
src/vidalia/help/content/po/sv/running.po | 4 +-
src/vidalia/help/content/po/sv/server.po | 4 +-
src/vidalia/help/content/po/sv/services.po | 4 +-
src/vidalia/help/content/po/sv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sw/config.po | 4 +-
src/vidalia/help/content/po/sw/index.po | 4 +-
src/vidalia/help/content/po/sw/links.po | 4 +-
src/vidalia/help/content/po/sw/log.po | 4 +-
src/vidalia/help/content/po/sw/running.po | 4 +-
src/vidalia/help/content/po/sw/server.po | 4 +-
src/vidalia/help/content/po/sw/services.po | 4 +-
src/vidalia/help/content/po/sw/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ta/config.po | 4 +-
src/vidalia/help/content/po/ta/index.po | 4 +-
src/vidalia/help/content/po/ta/links.po | 4 +-
src/vidalia/help/content/po/ta/log.po | 4 +-
src/vidalia/help/content/po/ta/running.po | 4 +-
src/vidalia/help/content/po/ta/server.po | 4 +-
src/vidalia/help/content/po/ta/services.po | 4 +-
src/vidalia/help/content/po/ta/troubleshooting.po | 4 +-
src/vidalia/help/content/po/te/config.po | 4 +-
src/vidalia/help/content/po/te/index.po | 4 +-
src/vidalia/help/content/po/te/links.po | 4 +-
src/vidalia/help/content/po/te/log.po | 4 +-
src/vidalia/help/content/po/te/running.po | 4 +-
src/vidalia/help/content/po/te/server.po | 4 +-
src/vidalia/help/content/po/te/services.po | 4 +-
src/vidalia/help/content/po/te/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tg/config.po | 4 +-
src/vidalia/help/content/po/tg/index.po | 4 +-
src/vidalia/help/content/po/tg/links.po | 4 +-
src/vidalia/help/content/po/tg/log.po | 4 +-
src/vidalia/help/content/po/tg/running.po | 4 +-
src/vidalia/help/content/po/tg/server.po | 4 +-
src/vidalia/help/content/po/tg/services.po | 4 +-
src/vidalia/help/content/po/tg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/th/config.po | 4 +-
src/vidalia/help/content/po/th/index.po | 4 +-
src/vidalia/help/content/po/th/links.po | 4 +-
src/vidalia/help/content/po/th/log.po | 4 +-
src/vidalia/help/content/po/th/running.po | 4 +-
src/vidalia/help/content/po/th/server.po | 4 +-
src/vidalia/help/content/po/th/services.po | 4 +-
src/vidalia/help/content/po/th/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ti/config.po | 4 +-
src/vidalia/help/content/po/ti/index.po | 4 +-
src/vidalia/help/content/po/ti/links.po | 4 +-
src/vidalia/help/content/po/ti/log.po | 4 +-
src/vidalia/help/content/po/ti/running.po | 4 +-
src/vidalia/help/content/po/ti/server.po | 4 +-
src/vidalia/help/content/po/ti/services.po | 4 +-
src/vidalia/help/content/po/ti/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tk/config.po | 4 +-
src/vidalia/help/content/po/tk/index.po | 4 +-
src/vidalia/help/content/po/tk/links.po | 4 +-
src/vidalia/help/content/po/tk/log.po | 4 +-
src/vidalia/help/content/po/tk/running.po | 4 +-
src/vidalia/help/content/po/tk/server.po | 4 +-
src/vidalia/help/content/po/tk/services.po | 4 +-
src/vidalia/help/content/po/tk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tr/index.po | 4 +-
src/vidalia/help/content/po/tr/links.po | 4 +-
src/vidalia/help/content/po/tr/log.po | 4 +-
src/vidalia/help/content/po/tr/running.po | 4 +-
src/vidalia/help/content/po/tr/server.po | 4 +-
src/vidalia/help/content/po/tr/services.po | 4 +-
src/vidalia/help/content/po/tr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/uk/config.po | 4 +-
src/vidalia/help/content/po/uk/index.po | 4 +-
src/vidalia/help/content/po/uk/links.po | 4 +-
src/vidalia/help/content/po/uk/log.po | 4 +-
src/vidalia/help/content/po/uk/running.po | 4 +-
src/vidalia/help/content/po/uk/server.po | 4 +-
src/vidalia/help/content/po/uk/services.po | 4 +-
src/vidalia/help/content/po/uk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ur/config.po | 4 +-
src/vidalia/help/content/po/ur/index.po | 4 +-
src/vidalia/help/content/po/ur/links.po | 4 +-
src/vidalia/help/content/po/ur/log.po | 4 +-
src/vidalia/help/content/po/ur/running.po | 4 +-
src/vidalia/help/content/po/ur/server.po | 4 +-
src/vidalia/help/content/po/ur/services.po | 4 +-
src/vidalia/help/content/po/ur/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ve/config.po | 4 +-
src/vidalia/help/content/po/ve/index.po | 4 +-
src/vidalia/help/content/po/ve/links.po | 4 +-
src/vidalia/help/content/po/ve/log.po | 4 +-
src/vidalia/help/content/po/ve/running.po | 4 +-
src/vidalia/help/content/po/ve/server.po | 4 +-
src/vidalia/help/content/po/ve/services.po | 4 +-
src/vidalia/help/content/po/ve/troubleshooting.po | 4 +-
src/vidalia/help/content/po/vi/config.po | 4 +-
src/vidalia/help/content/po/vi/index.po | 4 +-
src/vidalia/help/content/po/vi/links.po | 4 +-
src/vidalia/help/content/po/vi/log.po | 4 +-
src/vidalia/help/content/po/vi/running.po | 4 +-
src/vidalia/help/content/po/vi/server.po | 4 +-
src/vidalia/help/content/po/vi/services.po | 4 +-
src/vidalia/help/content/po/vi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/wa/config.po | 4 +-
src/vidalia/help/content/po/wa/index.po | 4 +-
src/vidalia/help/content/po/wa/links.po | 4 +-
src/vidalia/help/content/po/wa/log.po | 4 +-
src/vidalia/help/content/po/wa/running.po | 4 +-
src/vidalia/help/content/po/wa/server.po | 4 +-
src/vidalia/help/content/po/wa/services.po | 4 +-
src/vidalia/help/content/po/wa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/wo/bridges.po | 4 +-
src/vidalia/help/content/po/wo/config.po | 4 +-
src/vidalia/help/content/po/wo/index.po | 4 +-
src/vidalia/help/content/po/wo/links.po | 4 +-
src/vidalia/help/content/po/wo/log.po | 4 +-
src/vidalia/help/content/po/wo/netview.po | 4 +-
src/vidalia/help/content/po/wo/running.po | 4 +-
src/vidalia/help/content/po/wo/server.po | 4 +-
src/vidalia/help/content/po/wo/services.po | 4 +-
src/vidalia/help/content/po/wo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_CN/config.po | 4 +-
src/vidalia/help/content/po/zh_CN/index.po | 4 +-
src/vidalia/help/content/po/zh_CN/links.po | 4 +-
src/vidalia/help/content/po/zh_CN/log.po | 4 +-
src/vidalia/help/content/po/zh_CN/running.po | 4 +-
src/vidalia/help/content/po/zh_CN/server.po | 4 +-
src/vidalia/help/content/po/zh_CN/services.po | 4 +-
.../help/content/po/zh_CN/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_HK/config.po | 4 +-
src/vidalia/help/content/po/zh_HK/index.po | 4 +-
src/vidalia/help/content/po/zh_HK/links.po | 4 +-
src/vidalia/help/content/po/zh_HK/log.po | 4 +-
src/vidalia/help/content/po/zh_HK/running.po | 4 +-
src/vidalia/help/content/po/zh_HK/server.po | 4 +-
src/vidalia/help/content/po/zh_HK/services.po | 4 +-
.../help/content/po/zh_HK/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_TW/config.po | 4 +-
src/vidalia/help/content/po/zh_TW/index.po | 4 +-
src/vidalia/help/content/po/zh_TW/links.po | 4 +-
src/vidalia/help/content/po/zh_TW/log.po | 4 +-
src/vidalia/help/content/po/zh_TW/running.po | 4 +-
src/vidalia/help/content/po/zh_TW/server.po | 4 +-
src/vidalia/help/content/po/zh_TW/services.po | 4 +-
.../help/content/po/zh_TW/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zu/config.po | 4 +-
src/vidalia/help/content/po/zu/index.po | 4 +-
src/vidalia/help/content/po/zu/links.po | 4 +-
src/vidalia/help/content/po/zu/log.po | 4 +-
src/vidalia/help/content/po/zu/running.po | 4 +-
src/vidalia/help/content/po/zu/server.po | 4 +-
src/vidalia/help/content/po/zu/services.po | 4 +-
src/vidalia/help/content/po/zu/troubleshooting.po | 4 +-
src/vidalia/help/content/pt_BR/bridges.html | 6 ++--
src/vidalia/help/content/ru/bridges.html | 6 ++--
src/vidalia/help/content/ru/config.html | 6 ++--
src/vidalia/help/content/ru/index.html | 6 ++--
src/vidalia/help/content/ru/links.html | 6 ++--
src/vidalia/help/content/ru/log.html | 6 ++--
src/vidalia/help/content/ru/netview.html | 6 ++--
src/vidalia/help/content/ru/running.html | 6 ++--
src/vidalia/help/content/ru/server.html | 6 ++--
src/vidalia/help/content/ru/services.html | 6 ++--
src/vidalia/help/content/ru/troubleshooting.html | 6 ++--
src/vidalia/help/content/sv/bridges.html | 6 ++--
src/vidalia/help/content/sv/config.html | 6 ++--
src/vidalia/help/content/sv/index.html | 6 ++--
src/vidalia/help/content/sv/links.html | 6 ++--
src/vidalia/help/content/sv/log.html | 6 ++--
src/vidalia/help/content/sv/netview.html | 6 ++--
src/vidalia/help/content/sv/running.html | 6 ++--
src/vidalia/help/content/sv/server.html | 6 ++--
src/vidalia/help/content/sv/services.html | 6 ++--
src/vidalia/help/content/sv/troubleshooting.html | 6 ++--
src/vidalia/help/content/tr/links.html | 6 ++--
src/vidalia/help/content/zh_CN/bridges.html | 6 ++--
src/vidalia/help/content/zh_CN/config.html | 6 ++--
src/vidalia/help/content/zh_CN/index.html | 6 ++--
src/vidalia/help/content/zh_CN/links.html | 6 ++--
src/vidalia/help/content/zh_CN/log.html | 6 ++--
src/vidalia/help/content/zh_CN/netview.html | 6 ++--
src/vidalia/help/content/zh_CN/running.html | 6 ++--
src/vidalia/help/content/zh_CN/server.html | 6 ++--
.../help/content/zh_CN/troubleshooting.html | 6 ++--
src/vidalia/i18n/CMakeLists.txt | 6 ++--
src/vidalia/log/LogFile.cpp | 6 ++--
src/vidalia/log/LogFile.h | 6 ++--
src/vidalia/log/LogHeaderView.cpp | 6 ++--
src/vidalia/log/LogHeaderView.h | 6 ++--
src/vidalia/log/LogMessageColumnDelegate.cpp | 6 ++--
src/vidalia/log/LogMessageColumnDelegate.h | 6 ++--
src/vidalia/log/LogTreeItem.cpp | 6 ++--
src/vidalia/log/LogTreeItem.h | 6 ++--
src/vidalia/log/LogTreeWidget.cpp | 6 ++--
src/vidalia/log/LogTreeWidget.h | 6 ++--
src/vidalia/log/MessageLog.cpp | 6 ++--
src/vidalia/log/MessageLog.h | 6 ++--
src/vidalia/log/StatusEventItem.cpp | 6 ++--
src/vidalia/log/StatusEventItem.h | 6 ++--
src/vidalia/log/StatusEventItemDelegate.cpp | 6 ++--
src/vidalia/log/StatusEventItemDelegate.h | 6 ++--
src/vidalia/log/StatusEventWidget.cpp | 6 ++--
src/vidalia/log/StatusEventWidget.h | 6 ++--
src/vidalia/main.cpp | 6 ++--
src/vidalia/network/CircuitItem.cpp | 6 ++--
src/vidalia/network/CircuitItem.h | 6 ++--
src/vidalia/network/CircuitListWidget.cpp | 6 ++--
src/vidalia/network/CircuitListWidget.h | 6 ++--
src/vidalia/network/CountryInfo.cpp | 6 ++--
src/vidalia/network/CountryInfo.h | 6 ++--
src/vidalia/network/GeoIpDatabase.cpp | 6 ++--
src/vidalia/network/GeoIpDatabase.h | 6 ++--
src/vidalia/network/GeoIpRecord.cpp | 6 ++--
src/vidalia/network/GeoIpRecord.h | 6 ++--
src/vidalia/network/GeoIpResolver.cpp | 6 ++--
src/vidalia/network/GeoIpResolver.h | 6 ++--
src/vidalia/network/NetViewer.cpp | 6 ++--
src/vidalia/network/NetViewer.h | 6 ++--
src/vidalia/network/RouterDescriptorView.cpp | 6 ++--
src/vidalia/network/RouterDescriptorView.h | 6 ++--
src/vidalia/network/RouterInfoDialog.cpp | 6 ++--
src/vidalia/network/RouterInfoDialog.h | 6 ++--
src/vidalia/network/RouterListItem.cpp | 6 ++--
src/vidalia/network/RouterListItem.h | 6 ++--
src/vidalia/network/RouterListWidget.cpp | 6 ++--
src/vidalia/network/RouterListWidget.h | 6 ++--
src/vidalia/network/StreamItem.cpp | 6 ++--
src/vidalia/network/StreamItem.h | 6 ++--
src/vidalia/network/TorMapImageView.cpp | 6 ++--
src/vidalia/network/TorMapImageView.h | 6 ++--
src/vidalia/network/TorMapWidget.cpp | 6 ++--
src/vidalia/network/TorMapWidget.h | 6 ++--
src/vidalia/network/TorMapWidgetInputHandler.cpp | 6 ++--
src/vidalia/network/TorMapWidgetInputHandler.h | 6 ++--
src/vidalia/network/TorMapWidgetPopupMenu.cpp | 6 ++--
src/vidalia/network/TorMapWidgetPopupMenu.h | 6 ++--
src/vidalia/network/ZImageView.cpp | 6 ++--
src/vidalia/network/ZImageView.h | 6 ++--
src/vidalia/res/vidalia_win.rc.in | 6 ++--
1386 files changed, 3159 insertions(+), 3175 deletions(-)
1
0