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
December 2011
- 17 participants
- 533 discussions
commit 8ab2ccda561fb86946d417f70ee7a26559f8c495
Author: Tomás Touceda <chiiph(a)torproject.org>
Date: Wed Sep 7 13:39:40 2011 -0300
Adds a changes file
---
changes/bug3898 | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/changes/bug3898 b/changes/bug3898
new file mode 100644
index 0000000..adf8d64
--- /dev/null
+++ b/changes/bug3898
@@ -0,0 +1,3 @@
+ o Try Cookie authentication if available in tor based on
+ ProtocolInfo. If that fails, fall back to HashedPassword if
+ supported. Fixes bug 3898.
\ No newline at end of file
1
0

[vidalia/alpha] Change QTime for QDateTime in StatusEventWidget/Item
by chiiph@torproject.org 24 Dec '11
by chiiph@torproject.org 24 Dec '11
24 Dec '11
commit ea3635162311ebbc7846ef991ecdc005a71a46ed
Author: Tomás Touceda <chiiph(a)torproject.org>
Date: Wed Sep 7 12:21:41 2011 -0300
Change QTime for QDateTime in StatusEventWidget/Item
---
src/vidalia/log/StatusEventItem.cpp | 12 ++++++------
src/vidalia/log/StatusEventItem.h | 6 +++---
src/vidalia/log/StatusEventWidget.cpp | 4 ++--
3 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/vidalia/log/StatusEventItem.cpp b/src/vidalia/log/StatusEventItem.cpp
index ef62360..a0ec2b2 100644
--- a/src/vidalia/log/StatusEventItem.cpp
+++ b/src/vidalia/log/StatusEventItem.cpp
@@ -15,7 +15,7 @@
#include "StatusEventItem.h"
-#include <QTime>
+#include <QDateTime>
#include <QPixmap>
#include <QString>
@@ -25,15 +25,15 @@ StatusEventItem::StatusEventItem(QTreeWidget *parent)
}
void
-StatusEventItem::setTimestamp(const QTime ×tamp)
+StatusEventItem::setTimestamp(const QDateTime ×tamp)
{
setData(0, TimestampRole, timestamp);
}
-QTime
+QDateTime
StatusEventItem::timestamp() const
{
- return data(0, TimestampRole).toTime();
+ return data(0, TimestampRole).toDateTime();
}
void
@@ -101,8 +101,8 @@ StatusEventItem::toString() const
bool
StatusEventItem::operator<(const QTreeWidgetItem &other) const
{
- QTime a = data(0, TimestampRole).toTime();
- QTime b = other.data(0, TimestampRole).toTime();
+ QDateTime a = data(0, TimestampRole).toDateTime();
+ QDateTime b = other.data(0, TimestampRole).toDateTime();
return (a < b);
}
diff --git a/src/vidalia/log/StatusEventItem.h b/src/vidalia/log/StatusEventItem.h
index 8e599a2..8aeb1cd 100644
--- a/src/vidalia/log/StatusEventItem.h
+++ b/src/vidalia/log/StatusEventItem.h
@@ -18,7 +18,7 @@
#include <QTreeWidgetItem>
-class QTime;
+class QDateTime;
class QPixmap;
class QString;
@@ -44,12 +44,12 @@ public:
/** Sets the <b>timestamp</b> at which this status event occurred.
* \sa timestamp()
*/
- void setTimestamp(const QTime ×tamp);
+ void setTimestamp(const QDateTime ×tamp);
/** Returns the timestamp at which this status event occurred.
* \sa setTimestamp()
*/
- QTime timestamp() const;
+ QDateTime timestamp() const;
/** Sets the icon to be drawn along with this status event to <b>pixmap</b>.
* \sa icon()
diff --git a/src/vidalia/log/StatusEventWidget.cpp b/src/vidalia/log/StatusEventWidget.cpp
index 4bd11d0..c496aa1 100644
--- a/src/vidalia/log/StatusEventWidget.cpp
+++ b/src/vidalia/log/StatusEventWidget.cpp
@@ -186,7 +186,7 @@ StatusEventWidget::find(const QString &text, bool highlight)
continue;
if (item->title().contains(text, Qt::CaseInsensitive)
- || item->description().contains(text, Qt::CaseInsensitive)) {
+ || item->description().contains(text, Qt::CaseInsensitive)) {
items.append(item);
if (highlight)
item->setSelected(true);
@@ -217,7 +217,7 @@ StatusEventWidget::addNotification(const QPixmap &icon,
// Create the new notification item
StatusEventItem *item = new StatusEventItem(this);
- item->setTimestamp(QTime::currentTime());
+ item->setTimestamp(QDateTime::currentDateTime());
item->setIcon(icon);
item->setTitle(title);
item->setDescription(description);
1
0
commit c121db9eda38509303626d17f7ce1091852b86af
Author: Tomás Touceda <chiiph(a)torproject.org>
Date: Wed Sep 7 13:42:36 2011 -0300
Adds a changes file
---
changes/bug3759 | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/changes/bug3759 b/changes/bug3759
new file mode 100644
index 0000000..b7dc074
--- /dev/null
+++ b/changes/bug3759
@@ -0,0 +1,3 @@
+ o Change the parameter for ordering the entries in the Basic Log
+ list from currentTime to currentDateTime to avoid missplacing
+ entries from different days.
\ No newline at end of file
1
0

24 Dec '11
commit 266852795f404c18e011a42fac4bc7ab5f02b46a
Author: Tomás Touceda <chiiph(a)torproject.org>
Date: Wed Sep 7 13:53:53 2011 -0300
Add a changes file for the bug3077 merge
---
changes/bug3077 | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/changes/bug3077 b/changes/bug3077
new file mode 100644
index 0000000..ab7f84e
--- /dev/null
+++ b/changes/bug3077
@@ -0,0 +1,12 @@
+ o Add a way to use the autoconfiguration for ControlPort and SocksPort.
+ Tor can now autoconfigure Control and Socks Ports when the default ones
+ are in use. This makes it easier to run several different instances of
+ TBB at the same time. Resolves bug 3077.
+ o Make the AutoPort setting default to false, so that it doesn't
+ break backwards compatibility for people that aren't using Vidalia
+ inside Tor Browser Bundle.
+ o Check tor version and that settings are sanitized before trying to
+ use the port autoconfiguration feature.
+ o Provide the necessary fields (Control password, ControlPort) to let
+ TorButton NEWNYM. Vidalia provides these in env vars when it launches
+ the Firefox instance. Resolves bug 2659.
\ No newline at end of file
1
0
commit f59e079fcecf58fa1e9e763006e33dc6515ac6d0
Author: Runa A. Sandvik <runa.sandvik(a)gmail.com>
Date: Fri May 6 20:16:07 2011 +0100
Finally managed to update */links.po
---
src/vidalia/help/content/po/af/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ak/links.po | 80 +++++++----------------
src/vidalia/help/content/po/am/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ar/links.po | 94 +++++++--------------------
src/vidalia/help/content/po/arn/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ast/links.po | 80 +++++++----------------
src/vidalia/help/content/po/az/links.po | 80 +++++++----------------
src/vidalia/help/content/po/be/links.po | 80 +++++++----------------
src/vidalia/help/content/po/bg/links.po | 80 +++++++----------------
src/vidalia/help/content/po/bn/links.po | 80 +++++++----------------
src/vidalia/help/content/po/bn_IN/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ca/links.po | 98 +++++++++------------------
src/vidalia/help/content/po/cs/links.po | 80 +++++++----------------
src/vidalia/help/content/po/csb/links.po | 80 +++++++----------------
src/vidalia/help/content/po/cy/links.po | 80 +++++++----------------
src/vidalia/help/content/po/dz/links.po | 80 +++++++----------------
src/vidalia/help/content/po/el/links.po | 80 +++++++----------------
src/vidalia/help/content/po/eo/links.po | 80 +++++++----------------
src/vidalia/help/content/po/es/links.po | 82 +++++++----------------
src/vidalia/help/content/po/et/links.po | 80 +++++++----------------
src/vidalia/help/content/po/eu/links.po | 80 +++++++----------------
src/vidalia/help/content/po/fil/links.po | 80 +++++++----------------
src/vidalia/help/content/po/fr/links.po | 91 +++++++-------------------
src/vidalia/help/content/po/fur/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ga/links.po | 80 +++++++----------------
src/vidalia/help/content/po/gl/links.po | 80 +++++++----------------
src/vidalia/help/content/po/gu/links.po | 80 +++++++----------------
src/vidalia/help/content/po/gun/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ha/links.po | 80 +++++++----------------
src/vidalia/help/content/po/he/links.po | 80 +++++++----------------
src/vidalia/help/content/po/hi/links.po | 80 +++++++----------------
src/vidalia/help/content/po/hr/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ht/links.po | 80 +++++++----------------
src/vidalia/help/content/po/hu/links.po | 80 +++++++----------------
src/vidalia/help/content/po/id/links.po | 80 +++++++----------------
src/vidalia/help/content/po/is/links.po | 80 +++++++----------------
src/vidalia/help/content/po/it/links.po | 92 +++++++-------------------
src/vidalia/help/content/po/kn/links.po | 80 +++++++----------------
src/vidalia/help/content/po/kw/links.po | 80 +++++++----------------
src/vidalia/help/content/po/lb/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ln/links.po | 80 +++++++----------------
src/vidalia/help/content/po/lo/links.po | 80 +++++++----------------
src/vidalia/help/content/po/lt/links.po | 80 +++++++----------------
src/vidalia/help/content/po/lv/links.po | 80 +++++++----------------
src/vidalia/help/content/po/mg/links.po | 80 +++++++----------------
src/vidalia/help/content/po/mi/links.po | 80 +++++++----------------
src/vidalia/help/content/po/mk/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ml/links.po | 80 +++++++----------------
src/vidalia/help/content/po/mn/links.po | 80 +++++++----------------
src/vidalia/help/content/po/mr/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ms/links.po | 80 +++++++----------------
src/vidalia/help/content/po/mt/links.po | 80 +++++++----------------
src/vidalia/help/content/po/my/links.po | 90 +++++++-------------------
src/vidalia/help/content/po/nap/links.po | 80 +++++++----------------
src/vidalia/help/content/po/nb/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ne/links.po | 80 +++++++----------------
src/vidalia/help/content/po/nl/links.po | 93 +++++++-------------------
src/vidalia/help/content/po/nn/links.po | 80 +++++++----------------
src/vidalia/help/content/po/nso/links.po | 80 +++++++----------------
src/vidalia/help/content/po/oc/links.po | 80 +++++++----------------
src/vidalia/help/content/po/pa/links.po | 80 +++++++----------------
src/vidalia/help/content/po/pap/links.po | 80 +++++++----------------
src/vidalia/help/content/po/pl/links.po | 94 +++++++--------------------
src/vidalia/help/content/po/pms/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ps/links.po | 80 +++++++----------------
src/vidalia/help/content/po/pt/links.po | 80 +++++++----------------
src/vidalia/help/content/po/pt_BR/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ro/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ru/links.po | 96 +++++++--------------------
src/vidalia/help/content/po/sco/links.po | 80 +++++++----------------
src/vidalia/help/content/po/son/links.po | 80 +++++++----------------
src/vidalia/help/content/po/su/links.po | 80 +++++++----------------
src/vidalia/help/content/po/sw/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ta/links.po | 80 +++++++----------------
src/vidalia/help/content/po/te/links.po | 80 +++++++----------------
src/vidalia/help/content/po/tg/links.po | 80 +++++++----------------
src/vidalia/help/content/po/th/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ti/links.po | 80 +++++++----------------
src/vidalia/help/content/po/tk/links.po | 80 +++++++----------------
src/vidalia/help/content/po/tr/links.po | 90 +++++++-------------------
src/vidalia/help/content/po/uk/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ur/links.po | 80 +++++++----------------
src/vidalia/help/content/po/ve/links.po | 80 +++++++----------------
src/vidalia/help/content/po/vi/links.po | 80 +++++++----------------
src/vidalia/help/content/po/wa/links.po | 80 +++++++----------------
src/vidalia/help/content/po/zh_CN/links.po | 93 +++++++-------------------
src/vidalia/help/content/po/zh_HK/links.po | 80 +++++++----------------
src/vidalia/help/content/po/zh_TW/links.po | 80 +++++++----------------
src/vidalia/help/content/po/zu/links.po | 80 +++++++----------------
89 files changed, 2066 insertions(+), 5187 deletions(-)
diff --git a/src/vidalia/help/content/po/af/links.po b/src/vidalia/help/content/po/af/links.po
index 979d89d..5f49d8b 100644
--- a/src/vidalia/help/content/po/af/links.po
+++ b/src/vidalia/help/content/po/af/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: af\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ak/links.po b/src/vidalia/help/content/po/ak/links.po
index 979d89d..ba585d2 100644
--- a/src/vidalia/help/content/po/ak/links.po
+++ b/src/vidalia/help/content/po/ak/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ak\n"
+"Plural-Forms: nplurals=2; plural=n > 1\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/am/links.po b/src/vidalia/help/content/po/am/links.po
index 979d89d..b9d92c0 100644
--- a/src/vidalia/help/content/po/am/links.po
+++ b/src/vidalia/help/content/po/am/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: am\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ar/links.po b/src/vidalia/help/content/po/ar/links.po
index 2e028ae..74d57e0 100644
--- a/src/vidalia/help/content/po/ar/links.po
+++ b/src/vidalia/help/content/po/ar/links.po
@@ -1,53 +1,40 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: 2010-08-22 06:30+0200\n"
-"Last-Translator: shadi <shadi(a)35point5.com>\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
-"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-"X-Generator: Pootle 2.0.5\n"
+"Language: ar\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr "روابط مفيدة"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr "وnbsp;وnbsp;وnbsp;"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr "الصفحة الرئيسية"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
@@ -56,71 +43,38 @@ msgstr ""
"https://www.torproject.org/vidalia/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:31 en/links.html:66
-msgid "Wiki"
-msgstr "ويكي (Wiki)"
-
-#. 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> http://trac.vidalia-"
-"project.net/wiki</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/report\"> http://trac.vidalia-"
-"project.net/report</a>"
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr "تور"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr "الأسئلة المتداولة (FAQ)"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
#. 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>"
-msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
-
-#. 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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
diff --git a/src/vidalia/help/content/po/arn/links.po b/src/vidalia/help/content/po/arn/links.po
index 979d89d..0c679c3 100644
--- a/src/vidalia/help/content/po/arn/links.po
+++ b/src/vidalia/help/content/po/arn/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: arn\n"
+"Plural-Forms: nplurals=2; plural=n > 1\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ast/links.po b/src/vidalia/help/content/po/ast/links.po
index 979d89d..4d223e9 100644
--- a/src/vidalia/help/content/po/ast/links.po
+++ b/src/vidalia/help/content/po/ast/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ast\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/az/links.po b/src/vidalia/help/content/po/az/links.po
index 979d89d..c06e26e 100644
--- a/src/vidalia/help/content/po/az/links.po
+++ b/src/vidalia/help/content/po/az/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: az\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/be/links.po b/src/vidalia/help/content/po/be/links.po
index 979d89d..8577241 100644
--- a/src/vidalia/help/content/po/be/links.po
+++ b/src/vidalia/help/content/po/be/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: be\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/bg/links.po b/src/vidalia/help/content/po/bg/links.po
index 979d89d..8d388b7 100644
--- a/src/vidalia/help/content/po/bg/links.po
+++ b/src/vidalia/help/content/po/bg/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: bg\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/bn/links.po b/src/vidalia/help/content/po/bn/links.po
index 979d89d..a47c354 100644
--- a/src/vidalia/help/content/po/bn/links.po
+++ b/src/vidalia/help/content/po/bn/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: bn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/bn_IN/links.po b/src/vidalia/help/content/po/bn_IN/links.po
index 979d89d..162f6aa 100644
--- a/src/vidalia/help/content/po/bn_IN/links.po
+++ b/src/vidalia/help/content/po/bn_IN/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: bn_IN\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ca/links.po b/src/vidalia/help/content/po/ca/links.po
index 979d89d..c9d047b 100644
--- a/src/vidalia/help/content/po/ca/links.po
+++ b/src/vidalia/help/content/po/ca/links.po
@@ -1,112 +1,80 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 03:39+0000\n"
+"Last-Translator: Il_Tifossi <lluita_i_no_dorm(a)hotmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ca\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
-msgstr ""
+msgstr "Enllaços útils"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
msgid "Vidalia"
-msgstr ""
+msgstr "Vidalia"
#. 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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
-msgstr ""
+msgstr " "
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
-msgstr ""
+msgstr "Pàgina d'inici"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
msgstr ""
+"<a href=\"https://www.torproject.org/vidalia/\"> "
+"https://www.torproject.org/vidalia/</a>"
#. 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>"
-msgstr ""
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "Bugtracker"
+#: links.html:31 links.html:58
+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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
-msgstr ""
+msgstr "Tor"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
-msgstr ""
+msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
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 ""
+msgstr "Preguntes més freqüents"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:68
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/cs/links.po b/src/vidalia/help/content/po/cs/links.po
index 979d89d..6f5191d 100644
--- a/src/vidalia/help/content/po/cs/links.po
+++ b/src/vidalia/help/content/po/cs/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: cs\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/csb/links.po b/src/vidalia/help/content/po/csb/links.po
index 979d89d..0649133 100644
--- a/src/vidalia/help/content/po/csb/links.po
+++ b/src/vidalia/help/content/po/csb/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: csb\n"
+"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/cy/links.po b/src/vidalia/help/content/po/cy/links.po
index 979d89d..9ffa6a7 100644
--- a/src/vidalia/help/content/po/cy/links.po
+++ b/src/vidalia/help/content/po/cy/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: cy\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/dz/links.po b/src/vidalia/help/content/po/dz/links.po
index 979d89d..b925b40 100644
--- a/src/vidalia/help/content/po/dz/links.po
+++ b/src/vidalia/help/content/po/dz/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: dz\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/el/links.po b/src/vidalia/help/content/po/el/links.po
index 979d89d..1930b1d 100644
--- a/src/vidalia/help/content/po/el/links.po
+++ b/src/vidalia/help/content/po/el/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: el\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/eo/links.po b/src/vidalia/help/content/po/eo/links.po
index 979d89d..0398bed 100644
--- a/src/vidalia/help/content/po/eo/links.po
+++ b/src/vidalia/help/content/po/eo/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: eo\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/es/links.po b/src/vidalia/help/content/po/es/links.po
index 979d89d..52774cb 100644
--- a/src/vidalia/help/content/po/es/links.po
+++ b/src/vidalia/help/content/po/es/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/torproject/team/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: es\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/et/links.po b/src/vidalia/help/content/po/et/links.po
index 979d89d..4681b25 100644
--- a/src/vidalia/help/content/po/et/links.po
+++ b/src/vidalia/help/content/po/et/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: et\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/eu/links.po b/src/vidalia/help/content/po/eu/links.po
index 979d89d..dfc8155 100644
--- a/src/vidalia/help/content/po/eu/links.po
+++ b/src/vidalia/help/content/po/eu/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: eu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/fil/links.po b/src/vidalia/help/content/po/fil/links.po
index 979d89d..644f0f6 100644
--- a/src/vidalia/help/content/po/fil/links.po
+++ b/src/vidalia/help/content/po/fil/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: fil\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/fr/links.po b/src/vidalia/help/content/po/fr/links.po
index cc67679..788c8c4 100644
--- a/src/vidalia/help/content/po/fr/links.po
+++ b/src/vidalia/help/content/po/fr/links.po
@@ -1,50 +1,40 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: 2010-06-26 15:49-0600\n"
-"Last-Translator: Runa Sandvik <runa.sandvik(a)gmail.com>\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 1.1.0\n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr "Liens utiles"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
msgid "Vidalia"
msgstr "Vidalia"
#. 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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr " "
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr "Page d'accueil"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
@@ -53,71 +43,38 @@ msgstr ""
"https://www.torproject.org/vidalia/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:31 en/links.html:66
-msgid "Wiki"
-msgstr "Wiki"
-
-#. 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> http://trac.vidalia-"
-"project.net/wiki</a>"
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "Bugtracker"
-msgstr "Rapport de Bogues"
#. 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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/report\"> http://trac.vidalia-"
-"project.net/report</a>"
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr "Tor"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr "FAQ"
#. 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 ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:68
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
#. 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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
diff --git a/src/vidalia/help/content/po/fur/links.po b/src/vidalia/help/content/po/fur/links.po
index 979d89d..9d61c1a 100644
--- a/src/vidalia/help/content/po/fur/links.po
+++ b/src/vidalia/help/content/po/fur/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: fur\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ga/links.po b/src/vidalia/help/content/po/ga/links.po
index 979d89d..631297f 100644
--- a/src/vidalia/help/content/po/ga/links.po
+++ b/src/vidalia/help/content/po/ga/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ga\n"
+"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/gl/links.po b/src/vidalia/help/content/po/gl/links.po
index 979d89d..27d48e1 100644
--- a/src/vidalia/help/content/po/gl/links.po
+++ b/src/vidalia/help/content/po/gl/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: gl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/gu/links.po b/src/vidalia/help/content/po/gu/links.po
index 979d89d..41f4e7f 100644
--- a/src/vidalia/help/content/po/gu/links.po
+++ b/src/vidalia/help/content/po/gu/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: gu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/gun/links.po b/src/vidalia/help/content/po/gun/links.po
index 979d89d..138150d 100644
--- a/src/vidalia/help/content/po/gun/links.po
+++ b/src/vidalia/help/content/po/gun/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: gun\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ha/links.po b/src/vidalia/help/content/po/ha/links.po
index 979d89d..20ab0ae 100644
--- a/src/vidalia/help/content/po/ha/links.po
+++ b/src/vidalia/help/content/po/ha/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ha\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/he/links.po b/src/vidalia/help/content/po/he/links.po
index 979d89d..cb7ed2a 100644
--- a/src/vidalia/help/content/po/he/links.po
+++ b/src/vidalia/help/content/po/he/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: he\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/hi/links.po b/src/vidalia/help/content/po/hi/links.po
index 979d89d..94db9a9 100644
--- a/src/vidalia/help/content/po/hi/links.po
+++ b/src/vidalia/help/content/po/hi/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/hr/links.po b/src/vidalia/help/content/po/hr/links.po
index 979d89d..fd8b0ad 100644
--- a/src/vidalia/help/content/po/hr/links.po
+++ b/src/vidalia/help/content/po/hr/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: hr\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ht/links.po b/src/vidalia/help/content/po/ht/links.po
index 979d89d..b378912 100644
--- a/src/vidalia/help/content/po/ht/links.po
+++ b/src/vidalia/help/content/po/ht/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ht\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/hu/links.po b/src/vidalia/help/content/po/hu/links.po
index 979d89d..006a530 100644
--- a/src/vidalia/help/content/po/hu/links.po
+++ b/src/vidalia/help/content/po/hu/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/id/links.po b/src/vidalia/help/content/po/id/links.po
index 979d89d..4f9f9db 100644
--- a/src/vidalia/help/content/po/id/links.po
+++ b/src/vidalia/help/content/po/id/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/is/links.po b/src/vidalia/help/content/po/is/links.po
index 979d89d..ad58084 100644
--- a/src/vidalia/help/content/po/is/links.po
+++ b/src/vidalia/help/content/po/is/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: is\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/it/links.po b/src/vidalia/help/content/po/it/links.po
index cfb2572..3f70289 100644
--- a/src/vidalia/help/content/po/it/links.po
+++ b/src/vidalia/help/content/po/it/links.po
@@ -1,51 +1,40 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"Language-Team: Italian (http://www.transifex.net/projects/p/torproject/team/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr "Link utili"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
msgid "Vidalia"
msgstr "Vidalia"
#. 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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr " "
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr "Homepage"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
@@ -54,71 +43,38 @@ msgstr ""
"https://www.torproject.org/vidalia/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:31 en/links.html:66
-msgid "Wiki"
-msgstr "Wiki"
-
-#. 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> http://trac.vidalia-"
-"project.net/wiki</a>"
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "Bugtracker"
-msgstr "Bugtracker"
#. 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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/report\"> http://trac.vidalia-"
-"project.net/report</a>"
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr "Tor"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr "FAQ"
#. 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 ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:68
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
#. 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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
diff --git a/src/vidalia/help/content/po/kn/links.po b/src/vidalia/help/content/po/kn/links.po
index 979d89d..1753f49 100644
--- a/src/vidalia/help/content/po/kn/links.po
+++ b/src/vidalia/help/content/po/kn/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: kn\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/kw/links.po b/src/vidalia/help/content/po/kw/links.po
index 979d89d..be99e48 100644
--- a/src/vidalia/help/content/po/kw/links.po
+++ b/src/vidalia/help/content/po/kw/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: kw\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : 3\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/lb/links.po b/src/vidalia/help/content/po/lb/links.po
index 979d89d..588f340 100644
--- a/src/vidalia/help/content/po/lb/links.po
+++ b/src/vidalia/help/content/po/lb/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: lb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ln/links.po b/src/vidalia/help/content/po/ln/links.po
index 979d89d..efac0f5 100644
--- a/src/vidalia/help/content/po/ln/links.po
+++ b/src/vidalia/help/content/po/ln/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ln\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/lo/links.po b/src/vidalia/help/content/po/lo/links.po
index 979d89d..7ff5390 100644
--- a/src/vidalia/help/content/po/lo/links.po
+++ b/src/vidalia/help/content/po/lo/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: lo\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/lt/links.po b/src/vidalia/help/content/po/lt/links.po
index 979d89d..f01ee79 100644
--- a/src/vidalia/help/content/po/lt/links.po
+++ b/src/vidalia/help/content/po/lt/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: lt\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/lv/links.po b/src/vidalia/help/content/po/lv/links.po
index 979d89d..1edaced 100644
--- a/src/vidalia/help/content/po/lv/links.po
+++ b/src/vidalia/help/content/po/lv/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: lv\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/mg/links.po b/src/vidalia/help/content/po/mg/links.po
index 979d89d..bb86bb1 100644
--- a/src/vidalia/help/content/po/mg/links.po
+++ b/src/vidalia/help/content/po/mg/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: mg\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/mi/links.po b/src/vidalia/help/content/po/mi/links.po
index 979d89d..23ae435 100644
--- a/src/vidalia/help/content/po/mi/links.po
+++ b/src/vidalia/help/content/po/mi/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: mi\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/mk/links.po b/src/vidalia/help/content/po/mk/links.po
index 979d89d..18f63a5 100644
--- a/src/vidalia/help/content/po/mk/links.po
+++ b/src/vidalia/help/content/po/mk/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: mk\n"
+"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ml/links.po b/src/vidalia/help/content/po/ml/links.po
index 979d89d..ae69182 100644
--- a/src/vidalia/help/content/po/ml/links.po
+++ b/src/vidalia/help/content/po/ml/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ml\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/mn/links.po b/src/vidalia/help/content/po/mn/links.po
index 979d89d..bb5fbd7 100644
--- a/src/vidalia/help/content/po/mn/links.po
+++ b/src/vidalia/help/content/po/mn/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: mn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/mr/links.po b/src/vidalia/help/content/po/mr/links.po
index 979d89d..839c61c 100644
--- a/src/vidalia/help/content/po/mr/links.po
+++ b/src/vidalia/help/content/po/mr/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: mr\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ms/links.po b/src/vidalia/help/content/po/ms/links.po
index 979d89d..ce3eb06 100644
--- a/src/vidalia/help/content/po/ms/links.po
+++ b/src/vidalia/help/content/po/ms/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ms\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/mt/links.po b/src/vidalia/help/content/po/mt/links.po
index 979d89d..9c23000 100644
--- a/src/vidalia/help/content/po/mt/links.po
+++ b/src/vidalia/help/content/po/mt/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: mt\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/my/links.po b/src/vidalia/help/content/po/my/links.po
index 98444fe..0158a30 100644
--- a/src/vidalia/help/content/po/my/links.po
+++ b/src/vidalia/help/content/po/my/links.po
@@ -1,51 +1,40 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: my\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr "အသံုးဝင္ေသာ Links မ်ား"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
msgid "Vidalia"
msgstr "Vidalia"
#. 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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr " "
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr "မူလစာမ်က္ႏွာ"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
@@ -54,71 +43,38 @@ msgstr ""
"https://www.torproject.org/vidalia/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:31 en/links.html:66
-msgid "Wiki"
-msgstr "Wiki"
-
-#. 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> http://trac.vidalia-"
-"project.net/wiki</a>"
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "Bugtracker"
-msgstr "Bugtracker"
#. 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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/report\"> http://trac.vidalia-"
-"project.net/report</a>"
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr "Tor"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
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 ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:68
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
#. 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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
diff --git a/src/vidalia/help/content/po/nap/links.po b/src/vidalia/help/content/po/nap/links.po
index 979d89d..60ee878 100644
--- a/src/vidalia/help/content/po/nap/links.po
+++ b/src/vidalia/help/content/po/nap/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: nap\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/nb/links.po b/src/vidalia/help/content/po/nb/links.po
index d2efb53..1a66e48 100644
--- a/src/vidalia/help/content/po/nb/links.po
+++ b/src/vidalia/help/content/po/nb/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
+"Language: nb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ne/links.po b/src/vidalia/help/content/po/ne/links.po
index 979d89d..56f031e 100644
--- a/src/vidalia/help/content/po/ne/links.po
+++ b/src/vidalia/help/content/po/ne/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ne\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/nl/links.po b/src/vidalia/help/content/po/nl/links.po
index f14611b..337b57b 100644
--- a/src/vidalia/help/content/po/nl/links.po
+++ b/src/vidalia/help/content/po/nl/links.po
@@ -1,52 +1,40 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: 2010-08-29 23:21+0200\n"
-"Last-Translator: Roconda <tim.slot(a)gmail.com>\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.5\n"
+"Language: nl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr "Leerzame Links"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
msgid "Vidalia"
msgstr "Vidalia"
#. 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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr " "
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr "Beginpagina"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
@@ -55,71 +43,38 @@ msgstr ""
"https://www.torproject.org/vidalia/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:31 en/links.html:66
-msgid "Wiki"
-msgstr "Wiki"
-
-#. 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> http://trac.vidalia-"
-"project.net/wiki</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "Bugtracker"
-msgstr "Bugtracker"
-
-#. 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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/report\"> http://trac.vidalia-"
-"project.net/report</a>"
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr "Tor"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr "Veel gestelde vragen"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
#. 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>"
-msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
-
-#. 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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
diff --git a/src/vidalia/help/content/po/nn/links.po b/src/vidalia/help/content/po/nn/links.po
index 979d89d..96f9eea 100644
--- a/src/vidalia/help/content/po/nn/links.po
+++ b/src/vidalia/help/content/po/nn/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: nn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/nso/links.po b/src/vidalia/help/content/po/nso/links.po
index 979d89d..14e406e 100644
--- a/src/vidalia/help/content/po/nso/links.po
+++ b/src/vidalia/help/content/po/nso/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: nso\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/oc/links.po b/src/vidalia/help/content/po/oc/links.po
index 979d89d..3b71c5e 100644
--- a/src/vidalia/help/content/po/oc/links.po
+++ b/src/vidalia/help/content/po/oc/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: oc\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/pa/links.po b/src/vidalia/help/content/po/pa/links.po
index 979d89d..9b0a1e4 100644
--- a/src/vidalia/help/content/po/pa/links.po
+++ b/src/vidalia/help/content/po/pa/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: pa\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/pap/links.po b/src/vidalia/help/content/po/pap/links.po
index 979d89d..ee83271 100644
--- a/src/vidalia/help/content/po/pap/links.po
+++ b/src/vidalia/help/content/po/pap/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: pap\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/pl/links.po b/src/vidalia/help/content/po/pl/links.po
index 055b6e9..049bf3a 100644
--- a/src/vidalia/help/content/po/pl/links.po
+++ b/src/vidalia/help/content/po/pl/links.po
@@ -1,53 +1,40 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: 2010-08-25 22:09+0200\n"
-"Last-Translator: Balrogos <hardstell(a)gmail.com>\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.0.5\n"
+"Language: pl\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr "Pomocne Linki"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
msgid "Vidalia"
msgstr "Vidalia"
#. 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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr " "
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr "Strona Główna"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
@@ -56,71 +43,38 @@ msgstr ""
"https://www.torproject.org/vidalia/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:31 en/links.html:66
-msgid "Wiki"
-msgstr "Wiki"
-
-#. 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> http://trac.vidalia-"
-"project.net/wiki</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "Bugtracker"
-msgstr "Bugtracker"
-
-#. 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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/report\"> http://trac.vidalia-"
-"project.net/report</a>"
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr "Tor"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr "FAQ"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
#. 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>"
-msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
-
-#. 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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
diff --git a/src/vidalia/help/content/po/pms/links.po b/src/vidalia/help/content/po/pms/links.po
index 979d89d..3216ff0 100644
--- a/src/vidalia/help/content/po/pms/links.po
+++ b/src/vidalia/help/content/po/pms/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: pms\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ps/links.po b/src/vidalia/help/content/po/ps/links.po
index 979d89d..e4512d9 100644
--- a/src/vidalia/help/content/po/ps/links.po
+++ b/src/vidalia/help/content/po/ps/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ps\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/pt/links.po b/src/vidalia/help/content/po/pt/links.po
index 979d89d..54c8dd1 100644
--- a/src/vidalia/help/content/po/pt/links.po
+++ b/src/vidalia/help/content/po/pt/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: pt\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/pt_BR/links.po b/src/vidalia/help/content/po/pt_BR/links.po
index 979d89d..c9ccede 100644
--- a/src/vidalia/help/content/po/pt_BR/links.po
+++ b/src/vidalia/help/content/po/pt_BR/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ro/links.po b/src/vidalia/help/content/po/ro/links.po
index 979d89d..f75d7ab 100644
--- a/src/vidalia/help/content/po/ro/links.po
+++ b/src/vidalia/help/content/po/ro/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ru/links.po b/src/vidalia/help/content/po/ru/links.po
index dee8684..f9db63f 100644
--- a/src/vidalia/help/content/po/ru/links.po
+++ b/src/vidalia/help/content/po/ru/links.po
@@ -1,53 +1,40 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: 2010-08-02 21:55+0200\n"
-"Last-Translator: achu <alex(a)chumakov.ru>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: ru\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Russian (http://www.transifex.net/projects/p/torproject/team/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.0.5\n"
+"Language: ru\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr "Полезные ссылки"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
msgid "Vidalia"
msgstr "Vidalia"
#. 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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr " "
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr "Домашняя страница"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
@@ -56,71 +43,38 @@ msgstr ""
"https://www.torproject.org/vidalia/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:31 en/links.html:66
-msgid "Wiki"
-msgstr "Wiki"
-
-#. 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> http://trac.vidalia-"
-"project.net/wiki</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/report\"> http://trac.vidalia-"
-"project.net/report</a>"
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr "Tor"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr "FAQ"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
#. 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>"
-msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
-
-#. 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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
diff --git a/src/vidalia/help/content/po/sco/links.po b/src/vidalia/help/content/po/sco/links.po
index 979d89d..ea796c4 100644
--- a/src/vidalia/help/content/po/sco/links.po
+++ b/src/vidalia/help/content/po/sco/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: sco\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/son/links.po b/src/vidalia/help/content/po/son/links.po
index 979d89d..1427b4f 100644
--- a/src/vidalia/help/content/po/son/links.po
+++ b/src/vidalia/help/content/po/son/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: son\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/su/links.po b/src/vidalia/help/content/po/su/links.po
index 979d89d..db118d2 100644
--- a/src/vidalia/help/content/po/su/links.po
+++ b/src/vidalia/help/content/po/su/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: su\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/sw/links.po b/src/vidalia/help/content/po/sw/links.po
index 979d89d..5c23a24 100644
--- a/src/vidalia/help/content/po/sw/links.po
+++ b/src/vidalia/help/content/po/sw/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: sw\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ta/links.po b/src/vidalia/help/content/po/ta/links.po
index 979d89d..2621f70 100644
--- a/src/vidalia/help/content/po/ta/links.po
+++ b/src/vidalia/help/content/po/ta/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ta\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/te/links.po b/src/vidalia/help/content/po/te/links.po
index 979d89d..c246d24 100644
--- a/src/vidalia/help/content/po/te/links.po
+++ b/src/vidalia/help/content/po/te/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: te\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/tg/links.po b/src/vidalia/help/content/po/tg/links.po
index 979d89d..b74052e 100644
--- a/src/vidalia/help/content/po/tg/links.po
+++ b/src/vidalia/help/content/po/tg/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: tg\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/th/links.po b/src/vidalia/help/content/po/th/links.po
index 979d89d..dd761af 100644
--- a/src/vidalia/help/content/po/th/links.po
+++ b/src/vidalia/help/content/po/th/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: th\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ti/links.po b/src/vidalia/help/content/po/ti/links.po
index 979d89d..ce522c9 100644
--- a/src/vidalia/help/content/po/ti/links.po
+++ b/src/vidalia/help/content/po/ti/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ti\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/tk/links.po b/src/vidalia/help/content/po/tk/links.po
index 979d89d..9edce2b 100644
--- a/src/vidalia/help/content/po/tk/links.po
+++ b/src/vidalia/help/content/po/tk/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: tk\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/tr/links.po b/src/vidalia/help/content/po/tr/links.po
index dd69189..6c1a5ef 100644
--- a/src/vidalia/help/content/po/tr/links.po
+++ b/src/vidalia/help/content/po/tr/links.po
@@ -1,51 +1,40 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: tr\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr "Yararlı Bağlantılar"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
msgid "Vidalia"
msgstr "Vidalia"
#. 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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr " "
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr "Ev sayfası"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
@@ -54,71 +43,38 @@ msgstr ""
"https://www.torproject.org/vidalia/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:31 en/links.html:66
-msgid "Wiki"
-msgstr "Wiki"
-
-#. 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> http://trac.vidalia-"
-"project.net/wiki</a>"
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "Bugtracker"
-msgstr "Hata Takip Sistemi"
#. 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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/report\"> http://trac.vidalia-"
-"project.net/report</a>"
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr "Tor"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr "S.S.S."
#. 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 ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
-
-#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:68
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
#. 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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
diff --git a/src/vidalia/help/content/po/uk/links.po b/src/vidalia/help/content/po/uk/links.po
index 979d89d..ec4555e 100644
--- a/src/vidalia/help/content/po/uk/links.po
+++ b/src/vidalia/help/content/po/uk/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: uk\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ur/links.po b/src/vidalia/help/content/po/ur/links.po
index 979d89d..d44a783 100644
--- a/src/vidalia/help/content/po/ur/links.po
+++ b/src/vidalia/help/content/po/ur/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ur\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/ve/links.po b/src/vidalia/help/content/po/ve/links.po
index 979d89d..478ec09 100644
--- a/src/vidalia/help/content/po/ve/links.po
+++ b/src/vidalia/help/content/po/ve/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: ve\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/vi/links.po b/src/vidalia/help/content/po/vi/links.po
index 979d89d..0815ee7 100644
--- a/src/vidalia/help/content/po/vi/links.po
+++ b/src/vidalia/help/content/po/vi/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: vi\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/wa/links.po b/src/vidalia/help/content/po/wa/links.po
index 979d89d..2b0c41b 100644
--- a/src/vidalia/help/content/po/wa/links.po
+++ b/src/vidalia/help/content/po/wa/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: wa\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/zh_CN/links.po b/src/vidalia/help/content/po/zh_CN/links.po
index 38d4a2f..9bfd6c9 100644
--- a/src/vidalia/help/content/po/zh_CN/links.po
+++ b/src/vidalia/help/content/po/zh_CN/links.po
@@ -1,52 +1,40 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: 2010-10-05 05:00+0200\n"
-"Last-Translator: qysnn <qysnn1(a)gmail.com>\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.5\n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr "帮助链接"
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
msgid "Vidalia"
msgstr "Vidalia"
#. 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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr " "
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr "主页"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: links.html:25
msgid ""
"<a href=\"https://www.torproject.org/vidalia/\"> "
"https://www.torproject.org/vidalia/</a>"
@@ -55,71 +43,38 @@ msgstr ""
"https://www.torproject.org/vidalia/</a>"
#. 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/wiki\"> http://trac.vidalia-"
-"project.net/wiki</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "Bugtracker"
-msgstr "Bug追踪系统"
-
-#. 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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"http://trac.vidalia-project.net/report\"> http://trac.vidalia-"
-"project.net/report</a>"
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr "Tor"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr "常见问题"
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</a>"
msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
#. 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>"
-msgstr ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter</a>"
-
-#. 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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
-"<a href=\"https://bugs.torproject.org/flyspray/\"> "
-"https://bugs.torproject.org/flyspray</a>"
diff --git a/src/vidalia/help/content/po/zh_HK/links.po b/src/vidalia/help/content/po/zh_HK/links.po
index 979d89d..cc606ac 100644
--- a/src/vidalia/help/content/po/zh_HK/links.po
+++ b/src/vidalia/help/content/po/zh_HK/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: zh_HK\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/zh_TW/links.po b/src/vidalia/help/content/po/zh_TW/links.po
index 979d89d..9ac6f24 100644
--- a/src/vidalia/help/content/po/zh_TW/links.po
+++ b/src/vidalia/help/content/po/zh_TW/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: zh_TW\n"
+"Plural-Forms: nplurals=1; plural=0\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
diff --git a/src/vidalia/help/content/po/zu/links.po b/src/vidalia/help/content/po/zu/links.po
index 979d89d..eff4270 100644
--- a/src/vidalia/help/content/po/zu/links.po
+++ b/src/vidalia/help/content/po/zu/links.po
@@ -1,112 +1,78 @@
#
-# $Id$
-#
-# This file is part of Vidalia, and is subject to the license terms in
-# 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.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.
-#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-26 16:59+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Project-Id-Version: The Tor Project\n"
+"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
+"POT-Creation-Date: 2011-05-05 20:21+0200\n"
+"PO-Revision-Date: 2011-05-06 19:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Language: zu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#. type: Content of: <html><body><h1>
-#: en/links.html:16
+#: links.html:16
msgid "Helpful Links"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:19
+#: links.html:19
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
+#: links.html:22 links.html:30 links.html:42 links.html:49 links.html:57
msgid " "
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:23 en/links.html:51
+#: links.html:23 links.html:43
msgid "Homepage"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:25
+#: 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>"
+#: links.html:31 links.html:58
+msgid "Wiki and Bugtracker"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:39 en/links.html:74
-msgid "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>"
+#: links.html:33
+msgid "<a href=\"http://trac.torproject.org/\"> http://trac.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><h3>
-#: en/links.html:47
+#: links.html:39
msgid "Tor"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:53
+#: links.html:45
msgid "<a href=\"https://www.torproject.org/\">https://www.torproject.org/</a>"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:58
+#: links.html:50
msgid "FAQ"
msgstr ""
#. type: Content of: <html><body><table><tr><td>
-#: en/links.html:60
+#: links.html:52
msgid ""
-"<a href=\"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ\"> "
-"https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>"
+"<a href=\"https://www.torproject.org/docs/faq.html\"> "
+"https://www.torproject.org/docs/faq.html</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>"
-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>"
+#: links.html:60
+msgid "<a href=\"https://trac.torproject.org/\"> https://trac.torproject.org/</a>"
msgstr ""
1
0
commit 925b8c421817b7ace691650dc70bb232cef55596
Author: Tomás Touceda <chiiph(a)torproject.org>
Date: Wed Sep 7 13:56:39 2011 -0300
Improves the changes file
---
changes/bug3077 | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/changes/bug3077 b/changes/bug3077
index ab7f84e..c62f8a1 100644
--- a/changes/bug3077
+++ b/changes/bug3077
@@ -6,7 +6,7 @@
break backwards compatibility for people that aren't using Vidalia
inside Tor Browser Bundle.
o Check tor version and that settings are sanitized before trying to
- use the port autoconfiguration feature.
+ use the port autoconfiguration feature. Fixes bug 3843.
o Provide the necessary fields (Control password, ControlPort) to let
TorButton NEWNYM. Vidalia provides these in env vars when it launches
the Firefox instance. Resolves bug 2659.
\ No newline at end of file
1
0

24 Dec '11
commit 1d90158bb5d25f1b69c13bb9a82f1d6546bad42b
Author: Tomás Touceda <chiiph(a)torproject.org>
Date: Wed Sep 7 14:52:06 2011 -0300
Add changes files for the different fixes
---
changes/bug3147 | 2 ++
changes/bug3165 | 2 ++
changes/bug3166 | 2 ++
changes/bug3168 | 2 ++
changes/bug3171 | 2 ++
changes/bug3194 | 2 ++
changes/feat3144 | 2 ++
changes/feat3215 | 4 ++++
changes/feat3392 | 3 +++
9 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/changes/bug3147 b/changes/bug3147
new file mode 100644
index 0000000..564813d
--- /dev/null
+++ b/changes/bug3147
@@ -0,0 +1,2 @@
+ o Display the message "Connected to the Tor network!" centered in
+ the main window. Fixes bug 3147.
\ No newline at end of file
diff --git a/changes/bug3165 b/changes/bug3165
new file mode 100644
index 0000000..016a0aa
--- /dev/null
+++ b/changes/bug3165
@@ -0,0 +1,2 @@
+ o Make the main window visible when opening a tab through the system
+ tray menu. Fixes bug 3165.
\ No newline at end of file
diff --git a/changes/bug3166 b/changes/bug3166
new file mode 100644
index 0000000..ddad523
--- /dev/null
+++ b/changes/bug3166
@@ -0,0 +1,2 @@
+ o Fixes wrong spelling in the method showBandwidthTab inside
+ MainWindow. Resolves ticket 3166.
\ No newline at end of file
diff --git a/changes/bug3168 b/changes/bug3168
new file mode 100644
index 0000000..05636b2
--- /dev/null
+++ b/changes/bug3168
@@ -0,0 +1,2 @@
+ o Fix wrong behavior when trying to connect to an already running
+ tor instance. Fixes bug 3168.
\ No newline at end of file
diff --git a/changes/bug3171 b/changes/bug3171
new file mode 100644
index 0000000..37e16e2
--- /dev/null
+++ b/changes/bug3171
@@ -0,0 +1,2 @@
+ o Prevent restarting Tor when it hasn't been started yet. Fixes bug
+ 3171.
\ No newline at end of file
diff --git a/changes/bug3194 b/changes/bug3194
new file mode 100644
index 0000000..496dcee
--- /dev/null
+++ b/changes/bug3194
@@ -0,0 +1,2 @@
+ o Make Vidalia hide its main window when the tray icon is
+ doubleclicked. Resolves ticket 3194.
\ No newline at end of file
diff --git a/changes/feat3144 b/changes/feat3144
new file mode 100644
index 0000000..efaf542
--- /dev/null
+++ b/changes/feat3144
@@ -0,0 +1,2 @@
+ o Improve search in the router list from the Network Map with a
+ search field. Resolves ticket 3144.
\ No newline at end of file
diff --git a/changes/feat3215 b/changes/feat3215
new file mode 100644
index 0000000..e638955
--- /dev/null
+++ b/changes/feat3215
@@ -0,0 +1,4 @@
+ o Add a plugin framework based on QtScript. This gives the abbility
+ to create extensions for Vidalia with all Qt's functionality and
+ interfaces to interact with tor and with Vidalia itself. Resolves
+ ticket 3215
\ No newline at end of file
diff --git a/changes/feat3392 b/changes/feat3392
new file mode 100644
index 0000000..2a14d54
--- /dev/null
+++ b/changes/feat3392
@@ -0,0 +1,3 @@
+ o Add a way to detach a tab from Vidalia's main window. This will
+ provide more flexibility with plugins that might be intended to be
+ displayed apart from Vidalia.
\ No newline at end of file
1
0
commit 3e2eed6a1c761f08c79d59371b009c528b61961e
Author: Tomás Touceda <chiiph(a)torproject.org>
Date: Wed Sep 7 15:08:49 2011 -0300
Add a changes file
---
changes/bug3342 | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/changes/bug3342 b/changes/bug3342
new file mode 100644
index 0000000..3b026f5
--- /dev/null
+++ b/changes/bug3342
@@ -0,0 +1,2 @@
+ o Display time statistics for bridges in UTC time, rather than local
+ time. Fixes bug 3342.
\ No newline at end of file
1
0
commit 86ec8d91fa6b72aa11f9c7bf500f95a93cfb239d
Author: Tomás Touceda <chiiph(a)torproject.org>
Date: Wed Sep 7 15:06:04 2011 -0300
Add a changes file
---
changes/bug2188 | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/changes/bug2188 b/changes/bug2188
new file mode 100644
index 0000000..9925519
--- /dev/null
+++ b/changes/bug2188
@@ -0,0 +1,2 @@
+ o Draw the bandwidth graph curves based on the local maximum, not
+ the global maximum. Fixes bug 2188.
\ No newline at end of file
1
0
commit ef6d0aa7413f483f86aad602df46d20b9f77a40f
Author: Tomás Touceda <chiiph(a)torproject.org>
Date: Wed Sep 7 15:03:47 2011 -0300
Add a changes file
---
changes/feat2163 | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/changes/feat2163 b/changes/feat2163
new file mode 100644
index 0000000..058714d
--- /dev/null
+++ b/changes/feat2163
@@ -0,0 +1,2 @@
+ o Provide a way to hide Dock or System Tray icons in OSX. Resolves
+ ticket 2163.
\ No newline at end of file
1
0