tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
May 2011
- 15 participants
- 1011 discussions
commit bc3a5180f4585270673b7a31ce7248d57e7e9b7e
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Sat Apr 30 01:02:14 2011 -0300
Update the crashreporter
Removes everything related to the upload since we are not setting
anything up for now. Just informs the user what he/she should do
with the dumps.
---
src/crashreporter/CMakeLists.txt | 5 -
src/crashreporter/CrashReportDialog.cpp | 61 +-----------
src/crashreporter/CrashReportDialog.h | 28 +----
src/crashreporter/CrashReportDialog.ui | 115 +++++++++++++---------
src/crashreporter/CrashReportUploader.cpp | 152 ----------------------------
src/crashreporter/CrashReportUploader.h | 109 --------------------
src/crashreporter/UploadProgressDialog.cpp | 60 -----------
src/crashreporter/UploadProgressDialog.h | 62 -----------
src/crashreporter/UploadProgressDialog.ui | 106 -------------------
src/crashreporter/main.cpp | 43 +-------
10 files changed, 81 insertions(+), 660 deletions(-)
diff --git a/src/crashreporter/CMakeLists.txt b/src/crashreporter/CMakeLists.txt
index 8fa72bf..11d68c2 100644
--- a/src/crashreporter/CMakeLists.txt
+++ b/src/crashreporter/CMakeLists.txt
@@ -19,17 +19,12 @@ include_directories(
set(crashreporter_SRCS
main.cpp
CrashReportDialog.cpp
- CrashReportUploader.cpp
- UploadProgressDialog.cpp
)
qt4_wrap_cpp(crashreporter_SRCS
CrashReportDialog.h
- CrashReportUploader.h
- UploadProgressDialog.h
)
qt4_wrap_ui(crashreporter_SRCS
CrashReportDialog.ui
- UploadProgressDialog.ui
)
qt4_add_resources(crashreporter_SRCS
res/CrashReporter.qrc
diff --git a/src/crashreporter/CrashReportDialog.cpp b/src/crashreporter/CrashReportDialog.cpp
index f3acc68..c133706 100644
--- a/src/crashreporter/CrashReportDialog.cpp
+++ b/src/crashreporter/CrashReportDialog.cpp
@@ -16,8 +16,6 @@
*/
#include "CrashReportDialog.h"
-#include "CrashReportUploader.h"
-#include "UploadProgressDialog.h"
#include "stringutil.h"
@@ -48,57 +46,17 @@ CrashReportDialog::setCrashAnnotations(const QHash<QString,QString> &annotations
}
void
-CrashReportDialog::setMinidump(const QString &id, const QByteArray &minidump)
+CrashReportDialog::setMinidumpFiles(const QString &minidump, const QString &annotations)
{
- _minidump = minidump;
- _minidumpId = id;
-}
-
-void
-CrashReportDialog::submitCrashReport()
-{
- CrashReportUploader *uploader = new CrashReportUploader();
- UploadProgressDialog *progressDialog = new UploadProgressDialog(this);
- QMap<QString,QString> parameters;
-
- connect(uploader, SIGNAL(statusChanged(QString)),
- progressDialog, SLOT(setStatus(QString)));
- connect(uploader, SIGNAL(uploadProgress(int, int)),
- progressDialog, SLOT(setUploadProgress(int, int)));
- connect(uploader, SIGNAL(uploadFinished()),
- progressDialog, SLOT(accept()));
- connect(uploader, SIGNAL(uploadFailed(QString)),
- progressDialog, SLOT(uploadFailed(QString)));
-
- /* Set up the form fields that will be uploaded with the minidump */
- QString comments = ui.textDetails->toPlainText();
- if (! comments.isEmpty())
- parameters.insert("Comments", comments);
- parameters.insert("ProductName", "Vidalia");
- parameters.insert("Vendor", "Vidalia");
- parameters.insert("Version", _annotations.value("BuildVersion"));
- parameters.insert("CrashTime", _annotations.value("CrashTime"));
- parameters.insert("StartupTime", _annotations.value("StartupTime"));
-
- /* Start the upload (returns immediately) */
- uploader->uploadMinidump(QUrl("https://crashes.vidalia-project.net/submit"),
- _minidumpId, _minidump, parameters);
+ _minidumpPath = minidump;
+ _annotationsPath = annotations;
- /* Displays a modal progress dialog showing the progress of the upload. This
- * will return when either the upload completes or the user hits "Cancel". */
- if (progressDialog->exec() == QDialog::Rejected)
- uploader->cancel(); /* User clicked "Cancel" */
-
- delete uploader;
+ ui.textDetails->setPlainText(QString("%1\n%2\n").arg(_minidumpPath).arg(_annotationsPath));
}
void
CrashReportDialog::accept()
{
- /* Upload the crash report, unless the user opted out */
- if (ui.chkSubmitCrashReport->isChecked())
- submitCrashReport();
-
/* Attempt to restart Vidalia with the saved arguments */
QString exe = _annotations.value("RestartExecutable");
QString args = _annotations.value("RestartExecutableArgs");
@@ -115,14 +73,3 @@ CrashReportDialog::accept()
QDialog::accept();
}
-void
-CrashReportDialog::reject()
-{
- /* Upload the crash report, unless the user opted out */
- if (ui.chkSubmitCrashReport->isChecked())
- submitCrashReport();
-
- /* Close this dialog without restarting Vidalia */
- QDialog::reject();
-}
-
diff --git a/src/crashreporter/CrashReportDialog.h b/src/crashreporter/CrashReportDialog.h
index bc05892..b3fd533 100644
--- a/src/crashreporter/CrashReportDialog.h
+++ b/src/crashreporter/CrashReportDialog.h
@@ -40,15 +40,7 @@ public:
/** Sets the <b>minidump</b> contents generated by the crashed
* applications exception handler.
*/
- void setMinidump(const QString &id, const QByteArray &minidump);
-
- /** Uploads the generated minidump, user comments, and any additional
- * crash annotations generated by the exception handler to the crash
- * reporting server.
- * \sa setMinidump()
- * \sa setCrashAnnotations()
- */
- void submitCrashReport();
+ void setMinidumpFiles(const QString &minidump, const QString &annotations);
public slots:
/** Called when the user clicks the "Restart Vidalia" button on the
@@ -60,24 +52,14 @@ public slots:
*/
virtual void accept();
- /** Called when the user clicks the "Don't Restart" button on the
- * dialog. If the "Submit my crash report.." checkbox is checked, it
- * will attempt to submit the crash report and then exit without
- * restarting Vidalia.
- */
- virtual void reject();
-
private:
- /** Each minidump is given a randomly-generated GUID when it is created,
- * which is used to form the minidump filename. This ID is also used by
- * the crash reporting server when accepting and processing uploaded
- * minidumps.
+ /** Minidump path
*/
- QString _minidumpId;
+ QString _minidumpPath;
- /** Contents of the generated minidump.
+ /** Minidump info path
*/
- QByteArray _minidump;
+ QString _annotationsPath;
/** Set of parsed key-value pairs generated by the crashed application's
* exception handler and written alongside the minidump.
diff --git a/src/crashreporter/CrashReportDialog.ui b/src/crashreporter/CrashReportDialog.ui
index b565822..ae3faac 100644
--- a/src/crashreporter/CrashReportDialog.ui
+++ b/src/crashreporter/CrashReportDialog.ui
@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
- <width>434</width>
- <height>310</height>
+ <width>492</width>
+ <height>257</height>
</rect>
</property>
<property name="windowTitle">
@@ -18,7 +18,7 @@
<normaloff>:/images/32x32/tools-report-bug.png</normaloff>:/images/32x32/tools-report-bug.png</iconset>
</property>
<layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0" rowspan="2">
+ <item row="1" column="0" rowspan="2">
<widget class="QLabel" name="lblHeaderImage">
<property name="text">
<string/>
@@ -28,89 +28,112 @@
</property>
</widget>
</item>
- <item row="0" column="1">
- <widget class="QLabel" name="lblTitle">
- <property name="font">
- <font>
- <pointsize>9</pointsize>
- <weight>75</weight>
- <bold>true</bold>
- </font>
+ <item row="5" column="0" colspan="2">
+ <widget class="Line" name="line">
+ <property name="orientation">
+ <enum>Qt::Horizontal</enum>
</property>
+ </widget>
+ </item>
+ <item row="6" column="0" colspan="2">
+ <widget class="QLabel" name="lblDetails">
<property name="text">
- <string>Vidalia encountered an error and needed to close</string>
+ <string>Please fill a ticket in:</string>
</property>
<property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
+ <set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
- <item row="1" column="1">
- <widget class="QLabel" name="lblHeader">
+ <item row="7" column="0" colspan="2">
+ <widget class="QLabel" name="label">
<property name="text">
- <string>A crash report has been created that you can automatically send to the Vidalia developers to help identify and fix the problem. The submitted report does not contain any personally identifying information, but your connection to the crash reporting server may not be anonymous.</string>
+ <string><a href="https://trac.torproject.org/projects/tor/newticket">http…</string>
</property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
+ <property name="openExternalLinks">
+ <bool>true</bool>
</property>
- <property name="wordWrap">
+ </widget>
+ </item>
+ <item row="9" column="0" colspan="2">
+ <widget class="QTextBrowser" name="textDetails">
+ <property name="tabChangesFocus">
<bool>true</bool>
</property>
+ <property name="readOnly">
+ <bool>false</bool>
+ </property>
+ <property name="openLinks">
+ <bool>false</bool>
+ </property>
</widget>
</item>
- <item row="2" column="0" colspan="2">
- <widget class="Line" name="line">
+ <item row="10" column="0" colspan="2">
+ <widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
+ <property name="standardButtons">
+ <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+ </property>
</widget>
</item>
- <item row="3" column="0" colspan="2">
- <widget class="QLabel" name="lblDetails">
+ <item row="1" column="1">
+ <widget class="QLabel" name="lblTitle">
+ <property name="font">
+ <font>
+ <pointsize>9</pointsize>
+ <weight>75</weight>
+ <bold>true</bold>
+ </font>
+ </property>
<property name="text">
- <string>Please also describe what you were doing before the application crashed (optional):</string>
+ <string>Vidalia encountered an error and needed to close</string>
</property>
<property name="alignment">
- <set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
+ <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
- <item row="4" column="0" colspan="2">
- <widget class="QTextBrowser" name="textDetails">
- <property name="tabChangesFocus">
- <bool>true</bool>
- </property>
- <property name="readOnly">
- <bool>false</bool>
- </property>
- <property name="openLinks">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item row="5" column="0" colspan="2">
- <widget class="QCheckBox" name="chkSubmitCrashReport">
+ <item row="2" column="1">
+ <widget class="QLabel" name="lblHeader">
<property name="text">
- <string>Send my crash report to the Vidalia developers</string>
+ <string>A crash report has been created that you can send to the Vidalia developers to help identify and fix the problem. The submitted report does not contain any personally identifying information.</string>
</property>
- <property name="checked">
+ <property name="alignment">
+ <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
+ </property>
+ <property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
- <item row="6" column="1">
- <widget class="QDialogButtonBox" name="buttonBox">
+ <item row="0" column="1">
+ <spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
- <property name="standardButtons">
- <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>40</width>
+ <height>0</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item row="8" column="0" colspan="2">
+ <widget class="QLabel" name="lblDetails2">
+ <property name="text">
+ <string>with a description of what you were doing before the application crashed, along with the following files corresponding to the crash report:</string>
+ </property>
+ <property name="wordWrap">
+ <bool>true</bool>
</property>
</widget>
</item>
diff --git a/src/crashreporter/CrashReportUploader.cpp b/src/crashreporter/CrashReportUploader.cpp
deleted file mode 100644
index cd59ee3..0000000
--- a/src/crashreporter/CrashReportUploader.cpp
+++ /dev/null
@@ -1,152 +0,0 @@
-/*
-** 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.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
-*/
-
-/*
-** \file CrashReportUploader.cpp
-** \brief Uploads a minidump file and any extra information to a crash
-** reporting server.
-*/
-
-#include "CrashReportUploader.h"
-
-#include <QtGlobal>
-#include <QDateTime>
-#include <QSslSocket>
-#include <QSslCertificate>
-#include <QHttpRequestHeader>
-#include <QHttpResponseHeader>
-#include <QMap>
-#include <QUrl>
-
-
-CrashReportUploader::CrashReportUploader(QObject *parent)
- : QObject(parent),
- _requestId(-1)
-{
- /* Clear the default CA certificate store and add the only one we want */
- QSslSocket::setDefaultCaCertificates(QList<QSslCertificate>());
- QSslSocket::addDefaultCaCertificates(":/pki/gd-class2-root.crt");
-
- /* Create the QHttp object used to talk to the crash reporting server */
- _http = new QHttp(this);
- connect(_http, SIGNAL(stateChanged(int)),
- this, SLOT(httpStateChanged(int)));
- connect(_http, SIGNAL(requestFinished(int, bool)),
- this, SLOT(httpRequestFinished(int, bool)));
- connect(_http, SIGNAL(dataSendProgress(int, int)),
- this, SIGNAL(uploadProgress(int, int)));
-
- /* Seed the lame PRNG we'll use to generate the multipart boundary marker */
- qsrand(QDateTime::currentDateTime().toTime_t());
-}
-
-void
-CrashReportUploader::uploadMinidump(const QUrl &serverUrl,
- const QString &minidumpId,
- const QByteArray &minidump,
- const QMap<QString,QString> ¶meters)
-{
- QByteArray body;
-
- /* Set the destination host. If it looks like the destination URL uses SSL,
- * then we need to tell the QHttp object to use it as well. */
- if (! serverUrl.scheme().compare("https", Qt::CaseInsensitive)) {
- _http->setHost(serverUrl.host(), QHttp::ConnectionModeHttps,
- serverUrl.port(443));
- } else {
- _http->setHost(serverUrl.host(), QHttp::ConnectionModeHttp,
- serverUrl.port(80));
- }
-
- /* Set up the request header */
- QHttpRequestHeader header("POST", serverUrl.path());
- QString boundary = generateBoundaryMarker();
- header.setValue("Host", serverUrl.host());
- header.setContentType(QString("multipart/form-data; boundary=%1")
- .arg(boundary));
-
- /* Add all the key=value parameters to the request body */
- foreach (QString key, parameters.keys()) {
- QString value = parameters.value(key);
- if (! value.isEmpty()) {
- body.append(QString("--%1\r\n").arg(boundary));
- body.append(QString("Content-Disposition: form-data; name=\"%1\"").arg(key));
- body.append("\r\n\r\n");
- body.append(value.toUtf8());
- body.append("\r\n");
- }
- }
-
- /* Append the minidump contents */
- body.append(QString("--%1\r\n").arg(boundary));
- body.append("Content-Disposition: form-data; ");
- body.append("name=\"upload_file_minidump\"; ");
- body.append(QString("filename=\"%1\"\r\n").arg(minidumpId));
- body.append("Content-Type: application/octet-stream\r\n\r\n");
- body.append(minidump);
- body.append(QString("\r\n--%1\r\n").arg(boundary));
-
- /* Initiate the request and return the request ID */
- _requestId = _http->request(header, body);
-}
-
-QString
-CrashReportUploader::generateBoundaryMarker() const
-{
- return QString("%1%2").arg((quint32)qrand(), 8, 16, QChar('0'))
- .arg((quint32)qrand(), 8, 16, QChar('0'));
-}
-
-void
-CrashReportUploader::cancel()
-{
- _http->abort();
-}
-
-void
-CrashReportUploader::httpStateChanged(int state)
-{
- switch (state) {
- case QHttp::Connecting:
- emit statusChanged(tr("Connecting..."));
- break;
-
- case QHttp::Sending:
- emit statusChanged(tr("Sending crash report..."));
- break;
-
- case QHttp::Reading:
- emit statusChanged(tr("Receiving response..."));
- break;
-
- default:
- break;
- }
-}
-
-void
-CrashReportUploader::httpRequestFinished(int id, bool error)
-{
- if (id != _requestId)
- return;
-
- if (error) {
- QString errorString = _http->errorString();
- emit uploadFailed(errorString);
- } else {
- QHttpResponseHeader response = _http->lastResponse();
- if (response.statusCode() == 200)
- emit uploadFinished();
- else
- emit uploadFailed(response.reasonPhrase());
- }
- _http->close();
-}
-
diff --git a/src/crashreporter/CrashReportUploader.h b/src/crashreporter/CrashReportUploader.h
deleted file mode 100644
index dd97954..0000000
--- a/src/crashreporter/CrashReportUploader.h
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
-** 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.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
-*/
-
-/*
-** \file CrashReportUploader.h
-** \brief Uploads a minidump file and any extra information to a crash
-** reporting server.
-*/
-
-#ifndef _CRASHREPORTUPLOADER_H
-#define _CRASHREPORTUPLOADER_H
-
-#include <QObject>
-#include <QHttp>
-#include <QMap>
-
-class QUrl;
-class QString;
-class QByteArray;
-
-
-class CrashReportUploader : public QObject
-{
- Q_OBJECT
-
-public:
- /** Default constructor.
- */
- CrashReportUploader(QObject *parent = 0);
-
- /** Starts uploading <b>minidump</b> to <b>serverUrl</b> and returns
- * immediately. <b>minidumpId</b> is the minidump GUID generated by
- * the exception handler and used for the minidump's filename. The
- * optional <b>parameters</b> can be used to pass additional form fields
- * to the crash reporting server.
- */
- void uploadMinidump(const QUrl &serverUrl,
- const QString &minidumpId,
- const QByteArray &minidump,
- const QMap<QString,QString> ¶meters);
-
-public slots:
- /** Cancels a pending minidump upload.
- */
- void cancel();
-
-signals:
- /** Emitted when the underlying QHttp object posts data to the server.
- * <b>done</b> indicates how many bytes out of <b>total</b>
- * have been sent so far.
- */
- void uploadProgress(int done, int total);
-
- /** Emitted when the status of the POST request changes. <b>status</b>
- * describes the new current state of the request.
- */
- void statusChanged(const QString &status);
-
- /** Emitted when the previous minidump upload completes successfully.
- */
- void uploadFinished();
-
- /** Emitted when the previous crash report upload fails. The QString
- * <b>error</b> is a human-readable string describing the error
- * encountered.
- */
- void uploadFailed(const QString &error);
-
-private slots:
- /** Called when the state of the underlying QHttp object changes. A
- * statusChanged() signal is emitted with the appropriate text
- * describing the new state of the POST request.
- */
- void httpStateChanged(int state);
-
- /** Called when the underlying QHttp object used to upload the minidump
- * completes. <b>error</b> is set to false if the upload was
- * successful, or true if the upload failed. If <b>id</b> does not
- * match the request ID previously returned by QHttp::get(), then the
- * signal is ignored since it is the result of a close() or abort()
- * request.
- */
- void httpRequestFinished(int id, bool error);
-
-private:
- /** Generates a "random" 8-byte multipart boundary marker encoded into
- * 16 hex characters.
- */
- QString generateBoundaryMarker() const;
-
- /** Unique numeric identifier of the current minidump upload POST request.
- */
- int _requestId;
-
- /** Object used to POST a minidump to the crash server and read the
- * response.
- */
- QHttp *_http;
-};
-
-#endif
-
diff --git a/src/crashreporter/UploadProgressDialog.cpp b/src/crashreporter/UploadProgressDialog.cpp
deleted file mode 100644
index 4030e10..0000000
--- a/src/crashreporter/UploadProgressDialog.cpp
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
-** 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.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
-*/
-
-/*
-** \file UploadProgressDialog.cpp
-** \brief Displays the progress of uploading a crash report to the server
-*/
-
-#include "UploadProgressDialog.h"
-
-
-UploadProgressDialog::UploadProgressDialog(QWidget *parent)
- : QDialog(parent)
-{
- ui.setupUi(this);
-
- setModal(true);
-}
-
-void
-UploadProgressDialog::setVisible(bool visible)
-{
- if (visible) {
- ui.progressBar->setRange(0, 0);
- ui.buttonBox->setStandardButtons(QDialogButtonBox::Cancel);
- }
- QDialog::setVisible(visible);
-}
-
-void
-UploadProgressDialog::setStatus(const QString &status)
-{
- ui.lblStatus->setText(status);
-}
-
-void
-UploadProgressDialog::setUploadProgress(int done, int total)
-{
- ui.progressBar->setRange(0, total);
- ui.progressBar->setValue(done);
-}
-
-void
-UploadProgressDialog::uploadFailed(const QString &error)
-{
- ui.lblStatus->setText(tr("Unable to send report: %1").arg(error));
-
- ui.progressBar->setRange(0, 1);
- ui.progressBar->setValue(1);
-
- ui.buttonBox->setStandardButtons(QDialogButtonBox::Ok);
-}
-
diff --git a/src/crashreporter/UploadProgressDialog.h b/src/crashreporter/UploadProgressDialog.h
deleted file mode 100644
index e2cfcec..0000000
--- a/src/crashreporter/UploadProgressDialog.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
-** 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.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
-*/
-
-/*
-** \file UploadProgressDialog.cpp
-** \brief Displays the progress of uploading a crash report to the server
-*/
-
-#ifndef _UPLOADPROGRESSDIALOG_H
-#define _UPLOADPROGRESSDIALOG_H
-
-#include "ui_UploadProgressDialog.h"
-
-
-class UploadProgressDialog : public QDialog
-{
- Q_OBJECT
-
-public:
- /** Default constructor.
- */
- UploadProgressDialog(QWidget *parent = 0);
-
-public slots:
- /** Sets the status message text in the dialog to <b>status</b>.
- */
- void setStatus(const QString &status);
-
- /** Updates the minidump upload progress bar to <b>value</b> out of
- * <b>maximum</b> steps. If <b>value</b> and <b>maximum</b> are both 0,
- * then a "busy" progress bar is displayed.
- */
- void setUploadProgress(int value, int maximum);
-
- /** Called when the minidump upload fails. The string <b>error</b>
- * provides a human-readable description of the reason the upload
- * failed, which is displayed for the user.
- */
- void uploadFailed(const QString &error);
-
-protected:
- /** Overloaded method called when the progress dialog is first shown in
- * order to initialize the progress bar, status text and dialog button
- * box.
- */
- virtual void setVisible(bool visible);
-
-private:
- /** Qt Designer generated object.
- */
- Ui::UploadProgressDialog ui;
-};
-
-#endif
-
diff --git a/src/crashreporter/UploadProgressDialog.ui b/src/crashreporter/UploadProgressDialog.ui
deleted file mode 100644
index 4b985ac..0000000
--- a/src/crashreporter/UploadProgressDialog.ui
+++ /dev/null
@@ -1,106 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ui version="4.0">
- <class>UploadProgressDialog</class>
- <widget class="QDialog" name="UploadProgressDialog">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>366</width>
- <height>104</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Uploading Crash Report</string>
- </property>
- <property name="windowIcon">
- <iconset resource="res/CrashReporter.qrc">
- <normaloff>:/images/32x32/tools-report-bug.png</normaloff>:/images/32x32/tools-report-bug.png</iconset>
- </property>
- <property name="modal">
- <bool>true</bool>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0" rowspan="2">
- <widget class="QLabel" name="lblPixmap">
- <property name="text">
- <string/>
- </property>
- <property name="pixmap">
- <pixmap resource="res/CrashReporter.qrc">:/images/48x48/tools-report-bug.png</pixmap>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QLabel" name="lblStatus">
- <property name="text">
- <string/>
- </property>
- <property name="wordWrap">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QProgressBar" name="progressBar">
- <property name="value">
- <number>0</number>
- </property>
- <property name="textVisible">
- <bool>false</bool>
- </property>
- <property name="format">
- <string/>
- </property>
- </widget>
- </item>
- <item row="2" column="0" colspan="2">
- <widget class="QDialogButtonBox" name="buttonBox">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="standardButtons">
- <set>QDialogButtonBox::Cancel</set>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <resources>
- <include location="res/CrashReporter.qrc"/>
- </resources>
- <connections>
- <connection>
- <sender>buttonBox</sender>
- <signal>accepted()</signal>
- <receiver>UploadProgressDialog</receiver>
- <slot>accept()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>182</x>
- <y>81</y>
- </hint>
- <hint type="destinationlabel">
- <x>182</x>
- <y>51</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>buttonBox</sender>
- <signal>rejected()</signal>
- <receiver>UploadProgressDialog</receiver>
- <slot>reject()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>182</x>
- <y>81</y>
- </hint>
- <hint type="destinationlabel">
- <x>182</x>
- <y>51</y>
- </hint>
- </hints>
- </connection>
- </connections>
-</ui>
diff --git a/src/crashreporter/main.cpp b/src/crashreporter/main.cpp
index 9d77dfd..558896c 100644
--- a/src/crashreporter/main.cpp
+++ b/src/crashreporter/main.cpp
@@ -22,34 +22,6 @@
#include <QTextStream>
#include <QTextCodec>
-
-/** Open the minidump file given by <b>fileName</b> and read its entire
- * contents into a QByteArray. Returns the contents of the minidump file
- * on success. If an error occurs, this returns a default-constructed
- * QByteArray and sets <b>errorMessage</b> to a string describing the error
- * ecountered.
- */
-QByteArray
-read_minidump_file(const QString &fileName, QString &errorMessage)
-{
- QByteArray md;
- QFile mdFile(fileName);
-
- if (! mdFile.open(QIODevice::ReadOnly)) {
- errorMessage = mdFile.errorString();
- return QByteArray();
- }
- while (! mdFile.atEnd()) {
- md.append(mdFile.readAll());
- if (mdFile.error() != QFile::NoError) {
- errorMessage = mdFile.errorString();
- return QByteArray();
- }
- }
- mdFile.close();
- return md;
-}
-
/** Read the crash dump annotations file given by <b>fileName</b> and parse
* each line into a Key=Value pair. Returns a QHash containing the keys
* mapped to their values on success. If a file or parse error occurs, this
@@ -94,7 +66,6 @@ main(int argc, char *argv[])
QFileInfo minidumpFile, extraInfoFile;
QString minidumpFilePath, extraInfoFilePath, errorMessage;
QHash<QString,QString> annotations;
- QByteArray minidump;
if (argc < 2) {
errorMessage = "No minidump file specified.";
@@ -131,14 +102,6 @@ main(int argc, char *argv[])
goto err;
}
- /* Read the minidump file's contents */
- minidump = read_minidump_file(minidumpFilePath, errorMessage);
- if (minidump.isNull()) {
- errorMessage = QString("Unable to read minidump file '%1': %2")
- .arg(minidumpFilePath)
- .arg(errorMessage);
- goto err;
- }
/* Read and parse the crash annotations file */
annotations = read_annotations_file(extraInfoFilePath, errorMessage);
if (annotations.isEmpty()) {
@@ -149,8 +112,8 @@ main(int argc, char *argv[])
}
/* Display the crash reporting dialog */
- crashDialog.setMinidump(minidumpFile.baseName(), minidump);
crashDialog.setCrashAnnotations(annotations);
+ crashDialog.setMinidumpFiles(minidumpFilePath, extraInfoFilePath);
crashDialog.show();
return app.exec();
@@ -171,8 +134,8 @@ err:
"help diagnose the problem, but was unable to do so. Please report "
"this problem, along with what you were doing before Vidalia crashed, "
"to the developers at:</p><p>"
- "<a href=\"https://trac.vidalia-project.net/wiki/ReportingBugs\">"
- "https://trac.vidalia-project.net/wiki/ReportingBugs</a></p> "
+ "<a href=\"https://trac.torproject.org/projects/tor/newticket\">"
+ "https://trac.torproject.org/projects/tor/newticket</a></p> "
"<p>Click \"Show Details\" below for information about the problem "
"encountered.");
1
0
commit c0da3c85a4fe771721adf615ccf651b2d36e838a
Merge: d92bf67 5f3183a
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Thu May 5 15:13:51 2011 -0300
Merge branch 'bug2809_links'
CMakeLists.txt | 6 ++--
cmake/FindBreakpad.cmake | 6 ++--
cmake/FindGeoIP.cmake | 6 ++--
cmake/FindMarble.cmake | 6 ++--
cmake/FindOpenSSL.cmake | 6 ++--
cmake/FindWiX.cmake | 6 ++--
cmake/VidaliaMacros.cmake | 6 ++--
config.h.in | 6 ++--
contrib/geoip.py | 6 ++--
doc/CMakeLists.txt | 6 ++--
doc/vidalia.1.in | 2 +-
pkg/CMakeLists.txt | 6 ++--
pkg/build-geoip-cache.sh | 6 ++--
pkg/osx/CMakeLists.txt | 6 ++--
pkg/osx/InstallTorbutton.scpt.in | 6 ++--
pkg/package.sh | 6 ++--
pkg/rpm/CMakeLists.txt | 6 ++--
pkg/win32/CMakeLists.txt | 6 ++--
pkg/win32/bridge-bundle.nsi.in | 6 ++--
pkg/win32/vidalia-bundle.nsi.in | 6 ++--
src/CMakeLists.txt | 6 ++--
src/common/CMakeLists.txt | 6 ++--
src/common/Log.cpp | 6 ++--
src/common/Log.h | 6 ++--
src/common/TorSocket.cpp | 6 ++--
src/common/TorSocket.h | 6 ++--
src/common/ZlibByteArray.cpp | 6 ++--
src/common/ZlibByteArray.h | 6 ++--
src/common/crypto.cpp | 6 ++--
src/common/crypto.h | 6 ++--
src/common/file.cpp | 6 ++--
src/common/file.h | 6 ++--
src/common/html.cpp | 6 ++--
src/common/html.h | 6 ++--
src/common/net.cpp | 6 ++--
src/common/net.h | 6 ++--
src/common/procutil.cpp | 6 ++--
src/common/procutil.h | 6 ++--
src/common/stringutil.cpp | 6 ++--
src/common/stringutil.h | 6 ++--
src/common/win32.cpp | 6 ++--
src/common/win32.h | 6 ++--
src/crashreporter/CMakeLists.txt | 6 ++--
src/crashreporter/CrashReportDialog.cpp | 6 ++--
src/crashreporter/CrashReportDialog.h | 6 ++--
src/crashreporter/CrashReportUploader.cpp | 6 ++--
src/crashreporter/CrashReportUploader.h | 6 ++--
src/crashreporter/UploadProgressDialog.cpp | 6 ++--
src/crashreporter/UploadProgressDialog.h | 6 ++--
src/crashreporter/main.cpp | 6 ++--
src/crashreporter/res/CrashReporter.rc.in | 6 ++--
src/miniupnpc/CMakeLists.txt | 6 ++--
src/tools/CMakeLists.txt | 6 ++--
src/tools/nostdset/nostdset.sh | 6 ++--
src/tools/nsh2po/CMakeLists.txt | 6 ++--
src/tools/nsh2po/nsh2po.cpp | 6 ++--
src/tools/nsh2po/nsh2po_config.h.in | 6 ++--
src/tools/po2nsh/CMakeLists.txt | 6 ++--
src/tools/po2nsh/po2nsh.cpp | 6 ++--
src/tools/po2ts/CMakeLists.txt | 6 ++--
src/tools/po2ts/po2ts.cpp | 6 ++--
src/tools/po2wxl/CMakeLists.txt | 6 ++--
src/tools/po2wxl/po2wxl.cpp | 6 ++--
src/tools/ts2po/CMakeLists.txt | 6 ++--
src/tools/ts2po/ts2po.cpp | 6 ++--
src/tools/ts2po/ts2po_config.h.in | 6 ++--
src/torcontrol/AddressMap.cpp | 6 ++--
src/torcontrol/AddressMap.h | 6 ++--
src/torcontrol/BootstrapStatus.cpp | 6 ++--
src/torcontrol/BootstrapStatus.h | 6 ++--
src/torcontrol/CMakeLists.txt | 6 ++--
src/torcontrol/Circuit.cpp | 6 ++--
src/torcontrol/Circuit.h | 6 ++--
src/torcontrol/ControlCommand.cpp | 6 ++--
src/torcontrol/ControlCommand.h | 6 ++--
src/torcontrol/ControlConnection.cpp | 6 ++--
src/torcontrol/ControlConnection.h | 6 ++--
src/torcontrol/ControlMethod.cpp | 6 ++--
src/torcontrol/ControlMethod.h | 6 ++--
src/torcontrol/ControlReply.cpp | 6 ++--
src/torcontrol/ControlReply.h | 6 ++--
src/torcontrol/ControlSocket.cpp | 6 ++--
src/torcontrol/ControlSocket.h | 6 ++--
src/torcontrol/LogEvent.cpp | 6 ++--
src/torcontrol/LogEvent.h | 6 ++--
src/torcontrol/ProtocolInfo.cpp | 6 ++--
src/torcontrol/ProtocolInfo.h | 6 ++--
src/torcontrol/ReplyLine.cpp | 6 ++--
src/torcontrol/ReplyLine.h | 6 ++--
src/torcontrol/RouterDescriptor.cpp | 6 ++--
src/torcontrol/RouterDescriptor.h | 6 ++--
src/torcontrol/RouterStatus.cpp | 6 ++--
src/torcontrol/RouterStatus.h | 6 ++--
src/torcontrol/SendCommandEvent.cpp | 6 ++--
src/torcontrol/SendCommandEvent.h | 6 ++--
src/torcontrol/Stream.cpp | 6 ++--
src/torcontrol/Stream.h | 6 ++--
src/torcontrol/TorControl.cpp | 6 ++--
src/torcontrol/TorControl.h | 6 ++--
src/torcontrol/TorEvents.cpp | 6 ++--
src/torcontrol/TorEvents.h | 6 ++--
src/torcontrol/TorProcess.cpp | 6 ++--
src/torcontrol/TorProcess.h | 6 ++--
src/torcontrol/TorService.cpp | 6 ++--
src/torcontrol/TorService.h | 6 ++--
src/torcontrol/TorSignal.cpp | 6 ++--
src/torcontrol/TorSignal.h | 6 ++--
src/torcontrol/tcglobal.cpp | 6 ++--
src/torcontrol/tcglobal.h | 6 ++--
src/vidalia/CMakeLists.txt | 6 ++--
src/vidalia/ControlPasswordInputDialog.cpp | 6 ++--
src/vidalia/ControlPasswordInputDialog.h | 6 ++--
src/vidalia/CrashReporter.cpp | 6 ++--
src/vidalia/CrashReporter.h | 6 ++--
src/vidalia/HelperProcess.cpp | 6 ++--
src/vidalia/HelperProcess.h | 6 ++--
src/vidalia/LanguageSupport.cpp | 6 ++--
src/vidalia/LanguageSupport.h | 6 ++--
src/vidalia/MainWindow.cpp | 6 ++--
src/vidalia/MainWindow.h | 6 ++--
src/vidalia/PackageInfo.cpp | 6 ++--
src/vidalia/PackageInfo.h | 6 ++--
src/vidalia/UpdateProcess.cpp | 6 ++--
src/vidalia/UpdateProcess.h | 6 ++--
src/vidalia/UpdateProgressDialog.cpp | 6 ++--
src/vidalia/UpdateProgressDialog.h | 6 ++--
src/vidalia/UpdatesAvailableDialog.cpp | 6 ++--
src/vidalia/UpdatesAvailableDialog.h | 6 ++--
src/vidalia/VClickLabel.cpp | 6 ++--
src/vidalia/VClickLabel.h | 6 ++--
src/vidalia/VMessageBox.cpp | 6 ++--
src/vidalia/VMessageBox.h | 6 ++--
src/vidalia/Vidalia.cpp | 6 ++--
src/vidalia/Vidalia.h | 6 ++--
src/vidalia/VidaliaWindow.cpp | 6 ++--
src/vidalia/VidaliaWindow.h | 6 ++--
src/vidalia/about/AboutDialog.cpp | 6 ++--
src/vidalia/about/AboutDialog.h | 6 ++--
src/vidalia/about/LicenseDialog.cpp | 6 ++--
src/vidalia/about/LicenseDialog.h | 6 ++--
src/vidalia/bwgraph/BandwidthGraph.cpp | 6 ++--
src/vidalia/bwgraph/BandwidthGraph.h | 6 ++--
src/vidalia/bwgraph/GraphFrame.cpp | 6 ++--
src/vidalia/bwgraph/GraphFrame.h | 6 ++--
src/vidalia/config/AbstractTorSettings.cpp | 6 ++--
src/vidalia/config/AbstractTorSettings.h | 6 ++--
src/vidalia/config/AdvancedPage.cpp | 6 ++--
src/vidalia/config/AdvancedPage.h | 6 ++--
src/vidalia/config/AppearancePage.cpp | 6 ++--
src/vidalia/config/AppearancePage.h | 6 ++--
src/vidalia/config/BridgeDownloader.cpp | 6 ++--
src/vidalia/config/BridgeDownloader.h | 6 ++--
.../config/BridgeDownloaderProgressDialog.cpp | 6 ++--
.../config/BridgeDownloaderProgressDialog.h | 6 ++--
src/vidalia/config/BridgeUsageDialog.cpp | 6 ++--
src/vidalia/config/BridgeUsageDialog.h | 6 ++--
src/vidalia/config/ConfigDialog.cpp | 6 ++--
src/vidalia/config/ConfigDialog.h | 6 ++--
src/vidalia/config/ConfigPage.h | 6 ++--
src/vidalia/config/ConfigPageStack.cpp | 6 ++--
src/vidalia/config/ConfigPageStack.h | 6 ++--
src/vidalia/config/DomainValidator.cpp | 6 ++--
src/vidalia/config/DomainValidator.h | 6 ++--
src/vidalia/config/ExitPolicy.cpp | 6 ++--
src/vidalia/config/ExitPolicy.h | 6 ++--
src/vidalia/config/GeneralPage.cpp | 6 ++--
src/vidalia/config/GeneralPage.h | 6 ++--
src/vidalia/config/IpValidator.cpp | 6 ++--
src/vidalia/config/IpValidator.h | 6 ++--
src/vidalia/config/Local8BitStringValidator.cpp | 6 ++--
src/vidalia/config/Local8BitStringValidator.h | 6 ++--
src/vidalia/config/NetworkPage.cpp | 6 ++--
src/vidalia/config/NetworkPage.h | 6 ++--
src/vidalia/config/NetworkSettings.cpp | 6 ++--
src/vidalia/config/NetworkSettings.h | 6 ++--
src/vidalia/config/NicknameValidator.cpp | 6 ++--
src/vidalia/config/NicknameValidator.h | 6 ++--
src/vidalia/config/Policy.cpp | 6 ++--
src/vidalia/config/Policy.h | 6 ++--
src/vidalia/config/PortValidator.cpp | 6 ++--
src/vidalia/config/PortValidator.h | 6 ++--
src/vidalia/config/ServerPage.cpp | 6 ++--
src/vidalia/config/ServerPage.h | 6 ++--
src/vidalia/config/ServerSettings.cpp | 6 ++--
src/vidalia/config/ServerSettings.h | 6 ++--
src/vidalia/config/Service.cpp | 6 ++--
src/vidalia/config/Service.h | 6 ++--
src/vidalia/config/ServiceList.cpp | 6 ++--
src/vidalia/config/ServiceList.h | 6 ++--
src/vidalia/config/ServicePage.cpp | 6 ++--
src/vidalia/config/ServicePage.h | 6 ++--
src/vidalia/config/ServiceSettings.cpp | 6 ++--
src/vidalia/config/ServiceSettings.h | 6 ++--
src/vidalia/config/TorSettings.cpp | 6 ++--
src/vidalia/config/TorSettings.h | 6 ++--
src/vidalia/config/TorrcDialog.cpp | 6 ++--
src/vidalia/config/TorrcDialog.h | 6 ++--
src/vidalia/config/UPNPControl.cpp | 6 ++--
src/vidalia/config/UPNPControl.h | 6 ++--
src/vidalia/config/UPNPControlThread.cpp | 6 ++--
src/vidalia/config/UPNPControlThread.h | 6 ++--
src/vidalia/config/UPNPTestDialog.cpp | 6 ++--
src/vidalia/config/UPNPTestDialog.h | 6 ++--
src/vidalia/config/VSettings.cpp | 6 ++--
src/vidalia/config/VSettings.h | 6 ++--
src/vidalia/config/VidaliaSettings.cpp | 6 ++--
src/vidalia/config/VidaliaSettings.h | 6 ++--
src/vidalia/help/browser/HelpBrowser.cpp | 6 ++--
src/vidalia/help/browser/HelpBrowser.h | 6 ++--
src/vidalia/help/browser/HelpTextBrowser.cpp | 6 ++--
src/vidalia/help/browser/HelpTextBrowser.h | 6 ++--
src/vidalia/help/content/ar/bridges.html | 6 ++--
src/vidalia/help/content/ar/config.html | 6 ++--
src/vidalia/help/content/ar/index.html | 6 ++--
src/vidalia/help/content/ar/links.html | 6 ++--
src/vidalia/help/content/ar/log.html | 6 ++--
src/vidalia/help/content/ar/netview.html | 6 ++--
src/vidalia/help/content/ar/running.html | 6 ++--
src/vidalia/help/content/ar/server.html | 6 ++--
src/vidalia/help/content/ar/services.html | 6 ++--
src/vidalia/help/content/ar/troubleshooting.html | 6 ++--
src/vidalia/help/content/bms/bridges.html | 6 ++--
src/vidalia/help/content/bms/config.html | 6 ++--
src/vidalia/help/content/bms/index.html | 6 ++--
src/vidalia/help/content/bms/links.html | 6 ++--
src/vidalia/help/content/bms/log.html | 6 ++--
src/vidalia/help/content/bms/netview.html | 6 ++--
src/vidalia/help/content/bms/running.html | 6 ++--
src/vidalia/help/content/bms/server.html | 6 ++--
src/vidalia/help/content/bms/services.html | 6 ++--
src/vidalia/help/content/bms/troubleshooting.html | 6 ++--
src/vidalia/help/content/de/config.html | 6 ++--
src/vidalia/help/content/de/index.html | 6 ++--
src/vidalia/help/content/de/links.html | 6 ++--
src/vidalia/help/content/de/log.html | 6 ++--
src/vidalia/help/content/de/netview.html | 6 ++--
src/vidalia/help/content/de/running.html | 6 ++--
src/vidalia/help/content/de/server.html | 6 ++--
src/vidalia/help/content/de/troubleshooting.html | 6 ++--
src/vidalia/help/content/en/bridges.html | 6 ++--
src/vidalia/help/content/en/config.html | 6 ++--
src/vidalia/help/content/en/contents.xml | 6 ++--
src/vidalia/help/content/en/index.html | 6 ++--
src/vidalia/help/content/en/links.html | 38 ++++++--------------
src/vidalia/help/content/en/log.html | 6 ++--
src/vidalia/help/content/en/netview.html | 6 ++--
src/vidalia/help/content/en/running.html | 6 ++--
src/vidalia/help/content/en/server.html | 6 ++--
src/vidalia/help/content/en/services.html | 6 ++--
src/vidalia/help/content/en/troubleshooting.html | 6 ++--
src/vidalia/help/content/es/bridges.html | 6 ++--
src/vidalia/help/content/fa/bridges.html | 6 ++--
src/vidalia/help/content/fa/config.html | 6 ++--
src/vidalia/help/content/fa/index.html | 6 ++--
src/vidalia/help/content/fa/links.html | 6 ++--
src/vidalia/help/content/fa/log.html | 6 ++--
src/vidalia/help/content/fa/netview.html | 6 ++--
src/vidalia/help/content/fa/running.html | 6 ++--
src/vidalia/help/content/fa/server.html | 6 ++--
src/vidalia/help/content/fa/services.html | 6 ++--
src/vidalia/help/content/fa/troubleshooting.html | 6 ++--
src/vidalia/help/content/fi/bridges.html | 6 ++--
src/vidalia/help/content/fi/config.html | 6 ++--
src/vidalia/help/content/fi/index.html | 6 ++--
src/vidalia/help/content/fi/links.html | 6 ++--
src/vidalia/help/content/fi/log.html | 6 ++--
src/vidalia/help/content/fi/netview.html | 6 ++--
src/vidalia/help/content/fi/running.html | 6 ++--
src/vidalia/help/content/fi/server.html | 6 ++--
src/vidalia/help/content/fi/troubleshooting.html | 6 ++--
src/vidalia/help/content/fr/bridges.html | 6 ++--
src/vidalia/help/content/fr/config.html | 6 ++--
src/vidalia/help/content/fr/index.html | 6 ++--
src/vidalia/help/content/fr/links.html | 6 ++--
src/vidalia/help/content/fr/log.html | 6 ++--
src/vidalia/help/content/fr/netview.html | 6 ++--
src/vidalia/help/content/fr/running.html | 6 ++--
src/vidalia/help/content/fr/server.html | 6 ++--
src/vidalia/help/content/fr/services.html | 6 ++--
src/vidalia/help/content/fr/troubleshooting.html | 6 ++--
src/vidalia/help/content/it/links.html | 6 ++--
src/vidalia/help/content/my/bridges.html | 6 ++--
src/vidalia/help/content/my/config.html | 6 ++--
src/vidalia/help/content/my/index.html | 6 ++--
src/vidalia/help/content/my/links.html | 6 ++--
src/vidalia/help/content/my/log.html | 6 ++--
src/vidalia/help/content/my/netview.html | 6 ++--
src/vidalia/help/content/my/running.html | 6 ++--
src/vidalia/help/content/my/server.html | 6 ++--
src/vidalia/help/content/my/services.html | 6 ++--
src/vidalia/help/content/my/troubleshooting.html | 6 ++--
src/vidalia/help/content/nl/index.html | 6 ++--
src/vidalia/help/content/nl/links.html | 6 ++--
src/vidalia/help/content/nl/running.html | 6 ++--
src/vidalia/help/content/pl/bridges.html | 6 ++--
src/vidalia/help/content/pl/index.html | 6 ++--
src/vidalia/help/content/pl/links.html | 6 ++--
src/vidalia/help/content/po/af/config.po | 4 +-
src/vidalia/help/content/po/af/index.po | 4 +-
src/vidalia/help/content/po/af/links.po | 4 +-
src/vidalia/help/content/po/af/log.po | 4 +-
src/vidalia/help/content/po/af/running.po | 4 +-
src/vidalia/help/content/po/af/server.po | 4 +-
src/vidalia/help/content/po/af/services.po | 4 +-
src/vidalia/help/content/po/af/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ak/config.po | 4 +-
src/vidalia/help/content/po/ak/index.po | 4 +-
src/vidalia/help/content/po/ak/links.po | 4 +-
src/vidalia/help/content/po/ak/log.po | 4 +-
src/vidalia/help/content/po/ak/running.po | 4 +-
src/vidalia/help/content/po/ak/server.po | 4 +-
src/vidalia/help/content/po/ak/services.po | 4 +-
src/vidalia/help/content/po/ak/troubleshooting.po | 4 +-
src/vidalia/help/content/po/am/config.po | 4 +-
src/vidalia/help/content/po/am/index.po | 4 +-
src/vidalia/help/content/po/am/links.po | 4 +-
src/vidalia/help/content/po/am/log.po | 4 +-
src/vidalia/help/content/po/am/running.po | 4 +-
src/vidalia/help/content/po/am/server.po | 4 +-
src/vidalia/help/content/po/am/services.po | 4 +-
src/vidalia/help/content/po/am/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ar/index.po | 4 +-
src/vidalia/help/content/po/ar/links.po | 4 +-
src/vidalia/help/content/po/ar/log.po | 4 +-
src/vidalia/help/content/po/ar/netview.po | 4 +-
src/vidalia/help/content/po/ar/running.po | 4 +-
src/vidalia/help/content/po/ar/server.po | 4 +-
src/vidalia/help/content/po/ar/services.po | 4 +-
src/vidalia/help/content/po/ar/troubleshooting.po | 4 +-
src/vidalia/help/content/po/arn/config.po | 4 +-
src/vidalia/help/content/po/arn/index.po | 4 +-
src/vidalia/help/content/po/arn/links.po | 4 +-
src/vidalia/help/content/po/arn/log.po | 4 +-
src/vidalia/help/content/po/arn/running.po | 4 +-
src/vidalia/help/content/po/arn/server.po | 4 +-
src/vidalia/help/content/po/arn/services.po | 4 +-
src/vidalia/help/content/po/arn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ast/config.po | 4 +-
src/vidalia/help/content/po/ast/index.po | 4 +-
src/vidalia/help/content/po/ast/links.po | 4 +-
src/vidalia/help/content/po/ast/log.po | 4 +-
src/vidalia/help/content/po/ast/running.po | 4 +-
src/vidalia/help/content/po/ast/server.po | 4 +-
src/vidalia/help/content/po/ast/services.po | 4 +-
src/vidalia/help/content/po/ast/troubleshooting.po | 4 +-
src/vidalia/help/content/po/az/config.po | 4 +-
src/vidalia/help/content/po/az/index.po | 4 +-
src/vidalia/help/content/po/az/links.po | 4 +-
src/vidalia/help/content/po/az/log.po | 4 +-
src/vidalia/help/content/po/az/running.po | 4 +-
src/vidalia/help/content/po/az/server.po | 4 +-
src/vidalia/help/content/po/az/services.po | 4 +-
src/vidalia/help/content/po/az/troubleshooting.po | 4 +-
src/vidalia/help/content/po/be/config.po | 4 +-
src/vidalia/help/content/po/be/index.po | 4 +-
src/vidalia/help/content/po/be/links.po | 4 +-
src/vidalia/help/content/po/be/log.po | 4 +-
src/vidalia/help/content/po/be/running.po | 4 +-
src/vidalia/help/content/po/be/server.po | 4 +-
src/vidalia/help/content/po/be/services.po | 4 +-
src/vidalia/help/content/po/be/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bg/config.po | 4 +-
src/vidalia/help/content/po/bg/index.po | 4 +-
src/vidalia/help/content/po/bg/links.po | 4 +-
src/vidalia/help/content/po/bg/log.po | 4 +-
src/vidalia/help/content/po/bg/running.po | 4 +-
src/vidalia/help/content/po/bg/server.po | 4 +-
src/vidalia/help/content/po/bg/services.po | 4 +-
src/vidalia/help/content/po/bg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bn/config.po | 4 +-
src/vidalia/help/content/po/bn/index.po | 4 +-
src/vidalia/help/content/po/bn/links.po | 4 +-
src/vidalia/help/content/po/bn/log.po | 4 +-
src/vidalia/help/content/po/bn/running.po | 4 +-
src/vidalia/help/content/po/bn/server.po | 4 +-
src/vidalia/help/content/po/bn/services.po | 4 +-
src/vidalia/help/content/po/bn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bn_IN/config.po | 4 +-
src/vidalia/help/content/po/bn_IN/index.po | 4 +-
src/vidalia/help/content/po/bn_IN/links.po | 4 +-
src/vidalia/help/content/po/bn_IN/log.po | 4 +-
src/vidalia/help/content/po/bn_IN/running.po | 4 +-
src/vidalia/help/content/po/bn_IN/server.po | 4 +-
src/vidalia/help/content/po/bn_IN/services.po | 4 +-
.../help/content/po/bn_IN/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bo/bridges.po | 4 +-
src/vidalia/help/content/po/bo/config.po | 4 +-
src/vidalia/help/content/po/bo/index.po | 4 +-
src/vidalia/help/content/po/bo/links.po | 4 +-
src/vidalia/help/content/po/bo/log.po | 4 +-
src/vidalia/help/content/po/bo/netview.po | 4 +-
src/vidalia/help/content/po/bo/running.po | 4 +-
src/vidalia/help/content/po/bo/server.po | 4 +-
src/vidalia/help/content/po/bo/services.po | 4 +-
src/vidalia/help/content/po/bo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/br/bridges.po | 4 +-
src/vidalia/help/content/po/br/config.po | 4 +-
src/vidalia/help/content/po/br/index.po | 4 +-
src/vidalia/help/content/po/br/links.po | 4 +-
src/vidalia/help/content/po/br/log.po | 4 +-
src/vidalia/help/content/po/br/netview.po | 4 +-
src/vidalia/help/content/po/br/running.po | 4 +-
src/vidalia/help/content/po/br/server.po | 4 +-
src/vidalia/help/content/po/br/services.po | 4 +-
src/vidalia/help/content/po/br/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bs/bridges.po | 4 +-
src/vidalia/help/content/po/bs/config.po | 4 +-
src/vidalia/help/content/po/bs/index.po | 4 +-
src/vidalia/help/content/po/bs/links.po | 4 +-
src/vidalia/help/content/po/bs/log.po | 4 +-
src/vidalia/help/content/po/bs/netview.po | 4 +-
src/vidalia/help/content/po/bs/running.po | 4 +-
src/vidalia/help/content/po/bs/server.po | 4 +-
src/vidalia/help/content/po/bs/services.po | 4 +-
src/vidalia/help/content/po/bs/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ca/config.po | 4 +-
src/vidalia/help/content/po/ca/index.po | 4 +-
src/vidalia/help/content/po/ca/links.po | 4 +-
src/vidalia/help/content/po/ca/log.po | 4 +-
src/vidalia/help/content/po/ca/running.po | 4 +-
src/vidalia/help/content/po/ca/server.po | 4 +-
src/vidalia/help/content/po/ca/services.po | 4 +-
src/vidalia/help/content/po/ca/troubleshooting.po | 4 +-
src/vidalia/help/content/po/cs/config.po | 4 +-
src/vidalia/help/content/po/cs/index.po | 4 +-
src/vidalia/help/content/po/cs/links.po | 4 +-
src/vidalia/help/content/po/cs/log.po | 4 +-
src/vidalia/help/content/po/cs/running.po | 4 +-
src/vidalia/help/content/po/cs/server.po | 4 +-
src/vidalia/help/content/po/cs/services.po | 4 +-
src/vidalia/help/content/po/cs/troubleshooting.po | 4 +-
src/vidalia/help/content/po/csb/config.po | 4 +-
src/vidalia/help/content/po/csb/index.po | 4 +-
src/vidalia/help/content/po/csb/links.po | 4 +-
src/vidalia/help/content/po/csb/log.po | 4 +-
src/vidalia/help/content/po/csb/running.po | 4 +-
src/vidalia/help/content/po/csb/server.po | 4 +-
src/vidalia/help/content/po/csb/services.po | 4 +-
src/vidalia/help/content/po/csb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/cy/config.po | 4 +-
src/vidalia/help/content/po/cy/index.po | 4 +-
src/vidalia/help/content/po/cy/links.po | 4 +-
src/vidalia/help/content/po/cy/log.po | 4 +-
src/vidalia/help/content/po/cy/running.po | 4 +-
src/vidalia/help/content/po/cy/server.po | 4 +-
src/vidalia/help/content/po/cy/services.po | 4 +-
src/vidalia/help/content/po/cy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/da/bridges.po | 4 +-
src/vidalia/help/content/po/da/index.po | 4 +-
src/vidalia/help/content/po/da/links.po | 4 +-
src/vidalia/help/content/po/da/log.po | 4 +-
src/vidalia/help/content/po/da/netview.po | 4 +-
src/vidalia/help/content/po/da/running.po | 4 +-
src/vidalia/help/content/po/da/server.po | 4 +-
src/vidalia/help/content/po/da/services.po | 4 +-
src/vidalia/help/content/po/da/troubleshooting.po | 4 +-
src/vidalia/help/content/po/de/bridges.po | 4 +-
src/vidalia/help/content/po/de/config.po | 4 +-
src/vidalia/help/content/po/de/index.po | 4 +-
src/vidalia/help/content/po/de/links.po | 4 +-
src/vidalia/help/content/po/de/log.po | 4 +-
src/vidalia/help/content/po/de/netview.po | 4 +-
src/vidalia/help/content/po/de/running.po | 4 +-
src/vidalia/help/content/po/de/server.po | 4 +-
src/vidalia/help/content/po/de/services.po | 4 +-
src/vidalia/help/content/po/de/troubleshooting.po | 4 +-
src/vidalia/help/content/po/dz/config.po | 4 +-
src/vidalia/help/content/po/dz/index.po | 4 +-
src/vidalia/help/content/po/dz/links.po | 4 +-
src/vidalia/help/content/po/dz/log.po | 4 +-
src/vidalia/help/content/po/dz/running.po | 4 +-
src/vidalia/help/content/po/dz/server.po | 4 +-
src/vidalia/help/content/po/dz/services.po | 4 +-
src/vidalia/help/content/po/dz/troubleshooting.po | 4 +-
src/vidalia/help/content/po/el/config.po | 4 +-
src/vidalia/help/content/po/el/index.po | 4 +-
src/vidalia/help/content/po/el/links.po | 4 +-
src/vidalia/help/content/po/el/log.po | 4 +-
src/vidalia/help/content/po/el/running.po | 4 +-
src/vidalia/help/content/po/el/server.po | 4 +-
src/vidalia/help/content/po/el/services.po | 4 +-
src/vidalia/help/content/po/el/troubleshooting.po | 4 +-
src/vidalia/help/content/po/en/bridges.po | 4 +-
src/vidalia/help/content/po/en/config.po | 4 +-
src/vidalia/help/content/po/en/index.po | 4 +-
src/vidalia/help/content/po/en/links.po | 4 +-
src/vidalia/help/content/po/en/log.po | 4 +-
src/vidalia/help/content/po/en/netview.po | 4 +-
src/vidalia/help/content/po/en/running.po | 4 +-
src/vidalia/help/content/po/en/server.po | 4 +-
src/vidalia/help/content/po/en/services.po | 4 +-
src/vidalia/help/content/po/en/troubleshooting.po | 4 +-
src/vidalia/help/content/po/eo/config.po | 4 +-
src/vidalia/help/content/po/eo/index.po | 4 +-
src/vidalia/help/content/po/eo/links.po | 4 +-
src/vidalia/help/content/po/eo/log.po | 4 +-
src/vidalia/help/content/po/eo/running.po | 4 +-
src/vidalia/help/content/po/eo/server.po | 4 +-
src/vidalia/help/content/po/eo/services.po | 4 +-
src/vidalia/help/content/po/eo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/es/config.po | 4 +-
src/vidalia/help/content/po/es/index.po | 4 +-
src/vidalia/help/content/po/es/links.po | 4 +-
src/vidalia/help/content/po/es/log.po | 4 +-
src/vidalia/help/content/po/es/netview.po | 4 +-
src/vidalia/help/content/po/es/running.po | 4 +-
src/vidalia/help/content/po/es/server.po | 4 +-
src/vidalia/help/content/po/es/services.po | 4 +-
src/vidalia/help/content/po/es/troubleshooting.po | 4 +-
src/vidalia/help/content/po/et/config.po | 4 +-
src/vidalia/help/content/po/et/index.po | 4 +-
src/vidalia/help/content/po/et/links.po | 4 +-
src/vidalia/help/content/po/et/log.po | 4 +-
src/vidalia/help/content/po/et/running.po | 4 +-
src/vidalia/help/content/po/et/server.po | 4 +-
src/vidalia/help/content/po/et/services.po | 4 +-
src/vidalia/help/content/po/et/troubleshooting.po | 4 +-
src/vidalia/help/content/po/eu/config.po | 4 +-
src/vidalia/help/content/po/eu/index.po | 4 +-
src/vidalia/help/content/po/eu/links.po | 4 +-
src/vidalia/help/content/po/eu/log.po | 4 +-
src/vidalia/help/content/po/eu/running.po | 4 +-
src/vidalia/help/content/po/eu/server.po | 4 +-
src/vidalia/help/content/po/eu/services.po | 4 +-
src/vidalia/help/content/po/eu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fa/bridges.po | 4 +-
src/vidalia/help/content/po/fa/config.po | 4 +-
src/vidalia/help/content/po/fa/index.po | 4 +-
src/vidalia/help/content/po/fa/links.po | 4 +-
src/vidalia/help/content/po/fa/log.po | 4 +-
src/vidalia/help/content/po/fa/netview.po | 4 +-
src/vidalia/help/content/po/fa/running.po | 4 +-
src/vidalia/help/content/po/fa/server.po | 4 +-
src/vidalia/help/content/po/fa/services.po | 4 +-
src/vidalia/help/content/po/fa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fi/bridges.po | 4 +-
src/vidalia/help/content/po/fi/config.po | 4 +-
src/vidalia/help/content/po/fi/index.po | 4 +-
src/vidalia/help/content/po/fi/links.po | 4 +-
src/vidalia/help/content/po/fi/log.po | 4 +-
src/vidalia/help/content/po/fi/netview.po | 4 +-
src/vidalia/help/content/po/fi/running.po | 4 +-
src/vidalia/help/content/po/fi/server.po | 4 +-
src/vidalia/help/content/po/fi/services.po | 4 +-
src/vidalia/help/content/po/fi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fil/config.po | 4 +-
src/vidalia/help/content/po/fil/index.po | 4 +-
src/vidalia/help/content/po/fil/links.po | 4 +-
src/vidalia/help/content/po/fil/log.po | 4 +-
src/vidalia/help/content/po/fil/running.po | 4 +-
src/vidalia/help/content/po/fil/server.po | 4 +-
src/vidalia/help/content/po/fil/services.po | 4 +-
src/vidalia/help/content/po/fil/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fo/bridges.po | 4 +-
src/vidalia/help/content/po/fo/config.po | 4 +-
src/vidalia/help/content/po/fo/index.po | 4 +-
src/vidalia/help/content/po/fo/links.po | 4 +-
src/vidalia/help/content/po/fo/log.po | 4 +-
src/vidalia/help/content/po/fo/netview.po | 4 +-
src/vidalia/help/content/po/fo/running.po | 4 +-
src/vidalia/help/content/po/fo/server.po | 4 +-
src/vidalia/help/content/po/fo/services.po | 4 +-
src/vidalia/help/content/po/fo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fr/config.po | 4 +-
src/vidalia/help/content/po/fr/index.po | 4 +-
src/vidalia/help/content/po/fr/links.po | 4 +-
src/vidalia/help/content/po/fr/log.po | 4 +-
src/vidalia/help/content/po/fr/netview.po | 4 +-
src/vidalia/help/content/po/fr/running.po | 4 +-
src/vidalia/help/content/po/fr/server.po | 4 +-
src/vidalia/help/content/po/fr/services.po | 4 +-
src/vidalia/help/content/po/fr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fur/config.po | 4 +-
src/vidalia/help/content/po/fur/index.po | 4 +-
src/vidalia/help/content/po/fur/links.po | 4 +-
src/vidalia/help/content/po/fur/log.po | 4 +-
src/vidalia/help/content/po/fur/running.po | 4 +-
src/vidalia/help/content/po/fur/server.po | 4 +-
src/vidalia/help/content/po/fur/services.po | 4 +-
src/vidalia/help/content/po/fur/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fy/bridges.po | 4 +-
src/vidalia/help/content/po/fy/config.po | 4 +-
src/vidalia/help/content/po/fy/index.po | 4 +-
src/vidalia/help/content/po/fy/links.po | 4 +-
src/vidalia/help/content/po/fy/log.po | 4 +-
src/vidalia/help/content/po/fy/netview.po | 4 +-
src/vidalia/help/content/po/fy/running.po | 4 +-
src/vidalia/help/content/po/fy/server.po | 4 +-
src/vidalia/help/content/po/fy/services.po | 4 +-
src/vidalia/help/content/po/fy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ga/config.po | 4 +-
src/vidalia/help/content/po/ga/index.po | 4 +-
src/vidalia/help/content/po/ga/links.po | 4 +-
src/vidalia/help/content/po/ga/log.po | 4 +-
src/vidalia/help/content/po/ga/running.po | 4 +-
src/vidalia/help/content/po/ga/server.po | 4 +-
src/vidalia/help/content/po/ga/services.po | 4 +-
src/vidalia/help/content/po/ga/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gl/config.po | 4 +-
src/vidalia/help/content/po/gl/index.po | 4 +-
src/vidalia/help/content/po/gl/links.po | 4 +-
src/vidalia/help/content/po/gl/log.po | 4 +-
src/vidalia/help/content/po/gl/running.po | 4 +-
src/vidalia/help/content/po/gl/server.po | 4 +-
src/vidalia/help/content/po/gl/services.po | 4 +-
src/vidalia/help/content/po/gl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gu/config.po | 4 +-
src/vidalia/help/content/po/gu/index.po | 4 +-
src/vidalia/help/content/po/gu/links.po | 4 +-
src/vidalia/help/content/po/gu/log.po | 4 +-
src/vidalia/help/content/po/gu/running.po | 4 +-
src/vidalia/help/content/po/gu/server.po | 4 +-
src/vidalia/help/content/po/gu/services.po | 4 +-
src/vidalia/help/content/po/gu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gun/config.po | 4 +-
src/vidalia/help/content/po/gun/index.po | 4 +-
src/vidalia/help/content/po/gun/links.po | 4 +-
src/vidalia/help/content/po/gun/log.po | 4 +-
src/vidalia/help/content/po/gun/running.po | 4 +-
src/vidalia/help/content/po/gun/server.po | 4 +-
src/vidalia/help/content/po/gun/services.po | 4 +-
src/vidalia/help/content/po/gun/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ha/config.po | 4 +-
src/vidalia/help/content/po/ha/index.po | 4 +-
src/vidalia/help/content/po/ha/links.po | 4 +-
src/vidalia/help/content/po/ha/log.po | 4 +-
src/vidalia/help/content/po/ha/running.po | 4 +-
src/vidalia/help/content/po/ha/server.po | 4 +-
src/vidalia/help/content/po/ha/services.po | 4 +-
src/vidalia/help/content/po/ha/troubleshooting.po | 4 +-
src/vidalia/help/content/po/he/config.po | 4 +-
src/vidalia/help/content/po/he/index.po | 4 +-
src/vidalia/help/content/po/he/links.po | 4 +-
src/vidalia/help/content/po/he/log.po | 4 +-
src/vidalia/help/content/po/he/running.po | 4 +-
src/vidalia/help/content/po/he/server.po | 4 +-
src/vidalia/help/content/po/he/services.po | 4 +-
src/vidalia/help/content/po/he/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hi/config.po | 4 +-
src/vidalia/help/content/po/hi/index.po | 4 +-
src/vidalia/help/content/po/hi/links.po | 4 +-
src/vidalia/help/content/po/hi/log.po | 4 +-
src/vidalia/help/content/po/hi/running.po | 4 +-
src/vidalia/help/content/po/hi/server.po | 4 +-
src/vidalia/help/content/po/hi/services.po | 4 +-
src/vidalia/help/content/po/hi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hr/config.po | 4 +-
src/vidalia/help/content/po/hr/index.po | 4 +-
src/vidalia/help/content/po/hr/links.po | 4 +-
src/vidalia/help/content/po/hr/log.po | 4 +-
src/vidalia/help/content/po/hr/running.po | 4 +-
src/vidalia/help/content/po/hr/server.po | 4 +-
src/vidalia/help/content/po/hr/services.po | 4 +-
src/vidalia/help/content/po/hr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ht/config.po | 4 +-
src/vidalia/help/content/po/ht/index.po | 4 +-
src/vidalia/help/content/po/ht/links.po | 4 +-
src/vidalia/help/content/po/ht/log.po | 4 +-
src/vidalia/help/content/po/ht/running.po | 4 +-
src/vidalia/help/content/po/ht/server.po | 4 +-
src/vidalia/help/content/po/ht/services.po | 4 +-
src/vidalia/help/content/po/ht/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hu/config.po | 4 +-
src/vidalia/help/content/po/hu/index.po | 4 +-
src/vidalia/help/content/po/hu/links.po | 4 +-
src/vidalia/help/content/po/hu/log.po | 4 +-
src/vidalia/help/content/po/hu/running.po | 4 +-
src/vidalia/help/content/po/hu/server.po | 4 +-
src/vidalia/help/content/po/hu/services.po | 4 +-
src/vidalia/help/content/po/hu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hy/bridges.po | 4 +-
src/vidalia/help/content/po/hy/config.po | 4 +-
src/vidalia/help/content/po/hy/index.po | 4 +-
src/vidalia/help/content/po/hy/links.po | 4 +-
src/vidalia/help/content/po/hy/log.po | 4 +-
src/vidalia/help/content/po/hy/netview.po | 4 +-
src/vidalia/help/content/po/hy/running.po | 4 +-
src/vidalia/help/content/po/hy/server.po | 4 +-
src/vidalia/help/content/po/hy/services.po | 4 +-
src/vidalia/help/content/po/hy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/id/config.po | 4 +-
src/vidalia/help/content/po/id/index.po | 4 +-
src/vidalia/help/content/po/id/links.po | 4 +-
src/vidalia/help/content/po/id/log.po | 4 +-
src/vidalia/help/content/po/id/running.po | 4 +-
src/vidalia/help/content/po/id/server.po | 4 +-
src/vidalia/help/content/po/id/services.po | 4 +-
src/vidalia/help/content/po/id/troubleshooting.po | 4 +-
src/vidalia/help/content/po/is/config.po | 4 +-
src/vidalia/help/content/po/is/index.po | 4 +-
src/vidalia/help/content/po/is/links.po | 4 +-
src/vidalia/help/content/po/is/log.po | 4 +-
src/vidalia/help/content/po/is/running.po | 4 +-
src/vidalia/help/content/po/is/server.po | 4 +-
src/vidalia/help/content/po/is/services.po | 4 +-
src/vidalia/help/content/po/is/troubleshooting.po | 4 +-
src/vidalia/help/content/po/it/config.po | 4 +-
src/vidalia/help/content/po/it/index.po | 4 +-
src/vidalia/help/content/po/it/links.po | 4 +-
src/vidalia/help/content/po/it/log.po | 4 +-
src/vidalia/help/content/po/it/netview.po | 4 +-
src/vidalia/help/content/po/it/running.po | 4 +-
src/vidalia/help/content/po/it/server.po | 4 +-
src/vidalia/help/content/po/it/services.po | 4 +-
src/vidalia/help/content/po/it/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ja/bridges.po | 4 +-
src/vidalia/help/content/po/ja/config.po | 4 +-
src/vidalia/help/content/po/ja/index.po | 4 +-
src/vidalia/help/content/po/ja/links.po | 4 +-
src/vidalia/help/content/po/ja/log.po | 4 +-
src/vidalia/help/content/po/ja/netview.po | 4 +-
src/vidalia/help/content/po/ja/running.po | 4 +-
src/vidalia/help/content/po/ja/server.po | 4 +-
src/vidalia/help/content/po/ja/services.po | 4 +-
src/vidalia/help/content/po/ja/troubleshooting.po | 4 +-
src/vidalia/help/content/po/jv/bridges.po | 4 +-
src/vidalia/help/content/po/jv/config.po | 4 +-
src/vidalia/help/content/po/jv/index.po | 4 +-
src/vidalia/help/content/po/jv/links.po | 4 +-
src/vidalia/help/content/po/jv/log.po | 4 +-
src/vidalia/help/content/po/jv/netview.po | 4 +-
src/vidalia/help/content/po/jv/running.po | 4 +-
src/vidalia/help/content/po/jv/server.po | 4 +-
src/vidalia/help/content/po/jv/services.po | 4 +-
src/vidalia/help/content/po/jv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ka/bridges.po | 4 +-
src/vidalia/help/content/po/ka/config.po | 4 +-
src/vidalia/help/content/po/ka/index.po | 4 +-
src/vidalia/help/content/po/ka/links.po | 4 +-
src/vidalia/help/content/po/ka/log.po | 4 +-
src/vidalia/help/content/po/ka/netview.po | 4 +-
src/vidalia/help/content/po/ka/running.po | 4 +-
src/vidalia/help/content/po/ka/server.po | 4 +-
src/vidalia/help/content/po/ka/services.po | 4 +-
src/vidalia/help/content/po/ka/troubleshooting.po | 4 +-
src/vidalia/help/content/po/km/bridges.po | 4 +-
src/vidalia/help/content/po/km/config.po | 4 +-
src/vidalia/help/content/po/km/index.po | 4 +-
src/vidalia/help/content/po/km/links.po | 4 +-
src/vidalia/help/content/po/km/log.po | 4 +-
src/vidalia/help/content/po/km/netview.po | 4 +-
src/vidalia/help/content/po/km/running.po | 4 +-
src/vidalia/help/content/po/km/server.po | 4 +-
src/vidalia/help/content/po/km/services.po | 4 +-
src/vidalia/help/content/po/km/troubleshooting.po | 4 +-
src/vidalia/help/content/po/kn/config.po | 4 +-
src/vidalia/help/content/po/kn/index.po | 4 +-
src/vidalia/help/content/po/kn/links.po | 4 +-
src/vidalia/help/content/po/kn/log.po | 4 +-
src/vidalia/help/content/po/kn/running.po | 4 +-
src/vidalia/help/content/po/kn/server.po | 4 +-
src/vidalia/help/content/po/kn/services.po | 4 +-
src/vidalia/help/content/po/kn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ko/bridges.po | 4 +-
src/vidalia/help/content/po/ko/config.po | 4 +-
src/vidalia/help/content/po/ko/index.po | 4 +-
src/vidalia/help/content/po/ko/links.po | 4 +-
src/vidalia/help/content/po/ko/log.po | 4 +-
src/vidalia/help/content/po/ko/netview.po | 4 +-
src/vidalia/help/content/po/ko/running.po | 4 +-
src/vidalia/help/content/po/ko/server.po | 4 +-
src/vidalia/help/content/po/ko/services.po | 4 +-
src/vidalia/help/content/po/ko/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ku/bridges.po | 4 +-
src/vidalia/help/content/po/ku/config.po | 4 +-
src/vidalia/help/content/po/ku/index.po | 4 +-
src/vidalia/help/content/po/ku/links.po | 4 +-
src/vidalia/help/content/po/ku/log.po | 4 +-
src/vidalia/help/content/po/ku/netview.po | 4 +-
src/vidalia/help/content/po/ku/running.po | 4 +-
src/vidalia/help/content/po/ku/server.po | 4 +-
src/vidalia/help/content/po/ku/services.po | 4 +-
src/vidalia/help/content/po/ku/troubleshooting.po | 4 +-
src/vidalia/help/content/po/kw/config.po | 4 +-
src/vidalia/help/content/po/kw/index.po | 4 +-
src/vidalia/help/content/po/kw/links.po | 4 +-
src/vidalia/help/content/po/kw/log.po | 4 +-
src/vidalia/help/content/po/kw/running.po | 4 +-
src/vidalia/help/content/po/kw/server.po | 4 +-
src/vidalia/help/content/po/kw/services.po | 4 +-
src/vidalia/help/content/po/kw/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ky/bridges.po | 4 +-
src/vidalia/help/content/po/ky/config.po | 4 +-
src/vidalia/help/content/po/ky/index.po | 4 +-
src/vidalia/help/content/po/ky/links.po | 4 +-
src/vidalia/help/content/po/ky/log.po | 4 +-
src/vidalia/help/content/po/ky/netview.po | 4 +-
src/vidalia/help/content/po/ky/running.po | 4 +-
src/vidalia/help/content/po/ky/server.po | 4 +-
src/vidalia/help/content/po/ky/services.po | 4 +-
src/vidalia/help/content/po/ky/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lb/config.po | 4 +-
src/vidalia/help/content/po/lb/index.po | 4 +-
src/vidalia/help/content/po/lb/links.po | 4 +-
src/vidalia/help/content/po/lb/log.po | 4 +-
src/vidalia/help/content/po/lb/running.po | 4 +-
src/vidalia/help/content/po/lb/server.po | 4 +-
src/vidalia/help/content/po/lb/services.po | 4 +-
src/vidalia/help/content/po/lb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lg/bridges.po | 4 +-
src/vidalia/help/content/po/lg/config.po | 4 +-
src/vidalia/help/content/po/lg/index.po | 4 +-
src/vidalia/help/content/po/lg/links.po | 4 +-
src/vidalia/help/content/po/lg/log.po | 4 +-
src/vidalia/help/content/po/lg/netview.po | 4 +-
src/vidalia/help/content/po/lg/running.po | 4 +-
src/vidalia/help/content/po/lg/server.po | 4 +-
src/vidalia/help/content/po/lg/services.po | 4 +-
src/vidalia/help/content/po/lg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ln/config.po | 4 +-
src/vidalia/help/content/po/ln/index.po | 4 +-
src/vidalia/help/content/po/ln/links.po | 4 +-
src/vidalia/help/content/po/ln/log.po | 4 +-
src/vidalia/help/content/po/ln/running.po | 4 +-
src/vidalia/help/content/po/ln/server.po | 4 +-
src/vidalia/help/content/po/ln/services.po | 4 +-
src/vidalia/help/content/po/ln/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lo/config.po | 4 +-
src/vidalia/help/content/po/lo/index.po | 4 +-
src/vidalia/help/content/po/lo/links.po | 4 +-
src/vidalia/help/content/po/lo/log.po | 4 +-
src/vidalia/help/content/po/lo/running.po | 4 +-
src/vidalia/help/content/po/lo/server.po | 4 +-
src/vidalia/help/content/po/lo/services.po | 4 +-
src/vidalia/help/content/po/lo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lt/config.po | 4 +-
src/vidalia/help/content/po/lt/index.po | 4 +-
src/vidalia/help/content/po/lt/links.po | 4 +-
src/vidalia/help/content/po/lt/log.po | 4 +-
src/vidalia/help/content/po/lt/running.po | 4 +-
src/vidalia/help/content/po/lt/server.po | 4 +-
src/vidalia/help/content/po/lt/services.po | 4 +-
src/vidalia/help/content/po/lt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lv/config.po | 4 +-
src/vidalia/help/content/po/lv/index.po | 4 +-
src/vidalia/help/content/po/lv/links.po | 4 +-
src/vidalia/help/content/po/lv/log.po | 4 +-
src/vidalia/help/content/po/lv/running.po | 4 +-
src/vidalia/help/content/po/lv/server.po | 4 +-
src/vidalia/help/content/po/lv/services.po | 4 +-
src/vidalia/help/content/po/lv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mg/config.po | 4 +-
src/vidalia/help/content/po/mg/index.po | 4 +-
src/vidalia/help/content/po/mg/links.po | 4 +-
src/vidalia/help/content/po/mg/log.po | 4 +-
src/vidalia/help/content/po/mg/running.po | 4 +-
src/vidalia/help/content/po/mg/server.po | 4 +-
src/vidalia/help/content/po/mg/services.po | 4 +-
src/vidalia/help/content/po/mg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mi/config.po | 4 +-
src/vidalia/help/content/po/mi/index.po | 4 +-
src/vidalia/help/content/po/mi/links.po | 4 +-
src/vidalia/help/content/po/mi/log.po | 4 +-
src/vidalia/help/content/po/mi/running.po | 4 +-
src/vidalia/help/content/po/mi/server.po | 4 +-
src/vidalia/help/content/po/mi/services.po | 4 +-
src/vidalia/help/content/po/mi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mk/config.po | 4 +-
src/vidalia/help/content/po/mk/index.po | 4 +-
src/vidalia/help/content/po/mk/links.po | 4 +-
src/vidalia/help/content/po/mk/log.po | 4 +-
src/vidalia/help/content/po/mk/running.po | 4 +-
src/vidalia/help/content/po/mk/server.po | 4 +-
src/vidalia/help/content/po/mk/services.po | 4 +-
src/vidalia/help/content/po/mk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ml/config.po | 4 +-
src/vidalia/help/content/po/ml/index.po | 4 +-
src/vidalia/help/content/po/ml/links.po | 4 +-
src/vidalia/help/content/po/ml/log.po | 4 +-
src/vidalia/help/content/po/ml/running.po | 4 +-
src/vidalia/help/content/po/ml/server.po | 4 +-
src/vidalia/help/content/po/ml/services.po | 4 +-
src/vidalia/help/content/po/ml/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mn/config.po | 4 +-
src/vidalia/help/content/po/mn/index.po | 4 +-
src/vidalia/help/content/po/mn/links.po | 4 +-
src/vidalia/help/content/po/mn/log.po | 4 +-
src/vidalia/help/content/po/mn/running.po | 4 +-
src/vidalia/help/content/po/mn/server.po | 4 +-
src/vidalia/help/content/po/mn/services.po | 4 +-
src/vidalia/help/content/po/mn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mr/config.po | 4 +-
src/vidalia/help/content/po/mr/index.po | 4 +-
src/vidalia/help/content/po/mr/links.po | 4 +-
src/vidalia/help/content/po/mr/log.po | 4 +-
src/vidalia/help/content/po/mr/running.po | 4 +-
src/vidalia/help/content/po/mr/server.po | 4 +-
src/vidalia/help/content/po/mr/services.po | 4 +-
src/vidalia/help/content/po/mr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ms/config.po | 4 +-
src/vidalia/help/content/po/ms/index.po | 4 +-
src/vidalia/help/content/po/ms/links.po | 4 +-
src/vidalia/help/content/po/ms/log.po | 4 +-
src/vidalia/help/content/po/ms/running.po | 4 +-
src/vidalia/help/content/po/ms/server.po | 4 +-
src/vidalia/help/content/po/ms/services.po | 4 +-
src/vidalia/help/content/po/ms/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mt/config.po | 4 +-
src/vidalia/help/content/po/mt/index.po | 4 +-
src/vidalia/help/content/po/mt/links.po | 4 +-
src/vidalia/help/content/po/mt/log.po | 4 +-
src/vidalia/help/content/po/mt/running.po | 4 +-
src/vidalia/help/content/po/mt/server.po | 4 +-
src/vidalia/help/content/po/mt/services.po | 4 +-
src/vidalia/help/content/po/mt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/my/config.po | 4 +-
src/vidalia/help/content/po/my/index.po | 4 +-
src/vidalia/help/content/po/my/links.po | 4 +-
src/vidalia/help/content/po/my/log.po | 4 +-
src/vidalia/help/content/po/my/netview.po | 4 +-
src/vidalia/help/content/po/my/running.po | 4 +-
src/vidalia/help/content/po/my/server.po | 4 +-
src/vidalia/help/content/po/my/services.po | 4 +-
src/vidalia/help/content/po/my/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nah/bridges.po | 4 +-
src/vidalia/help/content/po/nah/config.po | 4 +-
src/vidalia/help/content/po/nah/index.po | 4 +-
src/vidalia/help/content/po/nah/links.po | 4 +-
src/vidalia/help/content/po/nah/log.po | 4 +-
src/vidalia/help/content/po/nah/netview.po | 4 +-
src/vidalia/help/content/po/nah/running.po | 4 +-
src/vidalia/help/content/po/nah/server.po | 4 +-
src/vidalia/help/content/po/nah/services.po | 4 +-
src/vidalia/help/content/po/nah/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nap/config.po | 4 +-
src/vidalia/help/content/po/nap/index.po | 4 +-
src/vidalia/help/content/po/nap/links.po | 4 +-
src/vidalia/help/content/po/nap/log.po | 4 +-
src/vidalia/help/content/po/nap/running.po | 4 +-
src/vidalia/help/content/po/nap/server.po | 4 +-
src/vidalia/help/content/po/nap/services.po | 4 +-
src/vidalia/help/content/po/nap/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nb/config.po | 4 +-
src/vidalia/help/content/po/nb/index.po | 4 +-
src/vidalia/help/content/po/nb/links.po | 4 +-
src/vidalia/help/content/po/nb/log.po | 4 +-
src/vidalia/help/content/po/nb/running.po | 4 +-
src/vidalia/help/content/po/nb/server.po | 4 +-
src/vidalia/help/content/po/nb/services.po | 4 +-
src/vidalia/help/content/po/nb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ne/config.po | 4 +-
src/vidalia/help/content/po/ne/index.po | 4 +-
src/vidalia/help/content/po/ne/links.po | 4 +-
src/vidalia/help/content/po/ne/log.po | 4 +-
src/vidalia/help/content/po/ne/running.po | 4 +-
src/vidalia/help/content/po/ne/server.po | 4 +-
src/vidalia/help/content/po/ne/services.po | 4 +-
src/vidalia/help/content/po/ne/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nl/config.po | 4 +-
src/vidalia/help/content/po/nl/index.po | 4 +-
src/vidalia/help/content/po/nl/links.po | 4 +-
src/vidalia/help/content/po/nl/log.po | 4 +-
src/vidalia/help/content/po/nl/running.po | 4 +-
src/vidalia/help/content/po/nl/server.po | 4 +-
src/vidalia/help/content/po/nl/services.po | 4 +-
src/vidalia/help/content/po/nl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nn/config.po | 4 +-
src/vidalia/help/content/po/nn/index.po | 4 +-
src/vidalia/help/content/po/nn/links.po | 4 +-
src/vidalia/help/content/po/nn/log.po | 4 +-
src/vidalia/help/content/po/nn/running.po | 4 +-
src/vidalia/help/content/po/nn/server.po | 4 +-
src/vidalia/help/content/po/nn/services.po | 4 +-
src/vidalia/help/content/po/nn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nso/config.po | 4 +-
src/vidalia/help/content/po/nso/index.po | 4 +-
src/vidalia/help/content/po/nso/links.po | 4 +-
src/vidalia/help/content/po/nso/log.po | 4 +-
src/vidalia/help/content/po/nso/running.po | 4 +-
src/vidalia/help/content/po/nso/server.po | 4 +-
src/vidalia/help/content/po/nso/services.po | 4 +-
src/vidalia/help/content/po/nso/troubleshooting.po | 4 +-
src/vidalia/help/content/po/oc/config.po | 4 +-
src/vidalia/help/content/po/oc/index.po | 4 +-
src/vidalia/help/content/po/oc/links.po | 4 +-
src/vidalia/help/content/po/oc/log.po | 4 +-
src/vidalia/help/content/po/oc/running.po | 4 +-
src/vidalia/help/content/po/oc/server.po | 4 +-
src/vidalia/help/content/po/oc/services.po | 4 +-
src/vidalia/help/content/po/oc/troubleshooting.po | 4 +-
src/vidalia/help/content/po/or/bridges.po | 4 +-
src/vidalia/help/content/po/or/config.po | 4 +-
src/vidalia/help/content/po/or/index.po | 4 +-
src/vidalia/help/content/po/or/links.po | 4 +-
src/vidalia/help/content/po/or/log.po | 4 +-
src/vidalia/help/content/po/or/netview.po | 4 +-
src/vidalia/help/content/po/or/running.po | 4 +-
src/vidalia/help/content/po/or/server.po | 4 +-
src/vidalia/help/content/po/or/services.po | 4 +-
src/vidalia/help/content/po/or/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pa/config.po | 4 +-
src/vidalia/help/content/po/pa/index.po | 4 +-
src/vidalia/help/content/po/pa/links.po | 4 +-
src/vidalia/help/content/po/pa/log.po | 4 +-
src/vidalia/help/content/po/pa/running.po | 4 +-
src/vidalia/help/content/po/pa/server.po | 4 +-
src/vidalia/help/content/po/pa/services.po | 4 +-
src/vidalia/help/content/po/pa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pap/config.po | 4 +-
src/vidalia/help/content/po/pap/index.po | 4 +-
src/vidalia/help/content/po/pap/links.po | 4 +-
src/vidalia/help/content/po/pap/log.po | 4 +-
src/vidalia/help/content/po/pap/running.po | 4 +-
src/vidalia/help/content/po/pap/server.po | 4 +-
src/vidalia/help/content/po/pap/services.po | 4 +-
src/vidalia/help/content/po/pap/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pl/config.po | 4 +-
src/vidalia/help/content/po/pl/index.po | 4 +-
src/vidalia/help/content/po/pl/links.po | 4 +-
src/vidalia/help/content/po/pl/log.po | 4 +-
src/vidalia/help/content/po/pl/running.po | 4 +-
src/vidalia/help/content/po/pl/server.po | 4 +-
src/vidalia/help/content/po/pl/services.po | 4 +-
src/vidalia/help/content/po/pl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pms/config.po | 4 +-
src/vidalia/help/content/po/pms/index.po | 4 +-
src/vidalia/help/content/po/pms/links.po | 4 +-
src/vidalia/help/content/po/pms/log.po | 4 +-
src/vidalia/help/content/po/pms/running.po | 4 +-
src/vidalia/help/content/po/pms/server.po | 4 +-
src/vidalia/help/content/po/pms/services.po | 4 +-
src/vidalia/help/content/po/pms/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ps/config.po | 4 +-
src/vidalia/help/content/po/ps/index.po | 4 +-
src/vidalia/help/content/po/ps/links.po | 4 +-
src/vidalia/help/content/po/ps/log.po | 4 +-
src/vidalia/help/content/po/ps/running.po | 4 +-
src/vidalia/help/content/po/ps/server.po | 4 +-
src/vidalia/help/content/po/ps/services.po | 4 +-
src/vidalia/help/content/po/ps/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pt/config.po | 4 +-
src/vidalia/help/content/po/pt/index.po | 4 +-
src/vidalia/help/content/po/pt/links.po | 4 +-
src/vidalia/help/content/po/pt/log.po | 4 +-
src/vidalia/help/content/po/pt/running.po | 4 +-
src/vidalia/help/content/po/pt/server.po | 4 +-
src/vidalia/help/content/po/pt/services.po | 4 +-
src/vidalia/help/content/po/pt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pt_BR/config.po | 4 +-
src/vidalia/help/content/po/pt_BR/index.po | 4 +-
src/vidalia/help/content/po/pt_BR/links.po | 4 +-
src/vidalia/help/content/po/pt_BR/log.po | 4 +-
src/vidalia/help/content/po/pt_BR/running.po | 4 +-
src/vidalia/help/content/po/pt_BR/server.po | 4 +-
src/vidalia/help/content/po/pt_BR/services.po | 4 +-
.../help/content/po/pt_BR/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ro/config.po | 4 +-
src/vidalia/help/content/po/ro/index.po | 4 +-
src/vidalia/help/content/po/ro/links.po | 4 +-
src/vidalia/help/content/po/ro/log.po | 4 +-
src/vidalia/help/content/po/ro/running.po | 4 +-
src/vidalia/help/content/po/ro/server.po | 4 +-
src/vidalia/help/content/po/ro/services.po | 4 +-
src/vidalia/help/content/po/ro/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ru/config.po | 4 +-
src/vidalia/help/content/po/ru/index.po | 4 +-
src/vidalia/help/content/po/ru/links.po | 4 +-
src/vidalia/help/content/po/ru/log.po | 4 +-
src/vidalia/help/content/po/ru/netview.po | 4 +-
src/vidalia/help/content/po/ru/running.po | 4 +-
src/vidalia/help/content/po/ru/server.po | 4 +-
src/vidalia/help/content/po/ru/services.po | 4 +-
src/vidalia/help/content/po/ru/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sco/config.po | 4 +-
src/vidalia/help/content/po/sco/index.po | 4 +-
src/vidalia/help/content/po/sco/links.po | 4 +-
src/vidalia/help/content/po/sco/log.po | 4 +-
src/vidalia/help/content/po/sco/running.po | 4 +-
src/vidalia/help/content/po/sco/server.po | 4 +-
src/vidalia/help/content/po/sco/services.po | 4 +-
src/vidalia/help/content/po/sco/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sk/bridges.po | 4 +-
src/vidalia/help/content/po/sk/config.po | 4 +-
src/vidalia/help/content/po/sk/index.po | 4 +-
src/vidalia/help/content/po/sk/links.po | 4 +-
src/vidalia/help/content/po/sk/log.po | 4 +-
src/vidalia/help/content/po/sk/netview.po | 4 +-
src/vidalia/help/content/po/sk/running.po | 4 +-
src/vidalia/help/content/po/sk/server.po | 4 +-
src/vidalia/help/content/po/sk/services.po | 4 +-
src/vidalia/help/content/po/sk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sl/bridges.po | 4 +-
src/vidalia/help/content/po/sl/config.po | 4 +-
src/vidalia/help/content/po/sl/index.po | 4 +-
src/vidalia/help/content/po/sl/links.po | 4 +-
src/vidalia/help/content/po/sl/log.po | 4 +-
src/vidalia/help/content/po/sl/netview.po | 4 +-
src/vidalia/help/content/po/sl/running.po | 4 +-
src/vidalia/help/content/po/sl/server.po | 4 +-
src/vidalia/help/content/po/sl/services.po | 4 +-
src/vidalia/help/content/po/sl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/so/bridges.po | 4 +-
src/vidalia/help/content/po/so/config.po | 4 +-
src/vidalia/help/content/po/so/index.po | 4 +-
src/vidalia/help/content/po/so/links.po | 4 +-
src/vidalia/help/content/po/so/log.po | 4 +-
src/vidalia/help/content/po/so/netview.po | 4 +-
src/vidalia/help/content/po/so/running.po | 4 +-
src/vidalia/help/content/po/so/server.po | 4 +-
src/vidalia/help/content/po/so/services.po | 4 +-
src/vidalia/help/content/po/so/troubleshooting.po | 4 +-
src/vidalia/help/content/po/son/config.po | 4 +-
src/vidalia/help/content/po/son/index.po | 4 +-
src/vidalia/help/content/po/son/links.po | 4 +-
src/vidalia/help/content/po/son/log.po | 4 +-
src/vidalia/help/content/po/son/running.po | 4 +-
src/vidalia/help/content/po/son/server.po | 4 +-
src/vidalia/help/content/po/son/services.po | 4 +-
src/vidalia/help/content/po/son/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sq/bridges.po | 4 +-
src/vidalia/help/content/po/sq/config.po | 4 +-
src/vidalia/help/content/po/sq/index.po | 4 +-
src/vidalia/help/content/po/sq/links.po | 4 +-
src/vidalia/help/content/po/sq/log.po | 4 +-
src/vidalia/help/content/po/sq/netview.po | 4 +-
src/vidalia/help/content/po/sq/running.po | 4 +-
src/vidalia/help/content/po/sq/server.po | 4 +-
src/vidalia/help/content/po/sq/services.po | 4 +-
src/vidalia/help/content/po/sq/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sr/bridges.po | 4 +-
src/vidalia/help/content/po/sr/config.po | 4 +-
src/vidalia/help/content/po/sr/index.po | 4 +-
src/vidalia/help/content/po/sr/links.po | 4 +-
src/vidalia/help/content/po/sr/log.po | 4 +-
src/vidalia/help/content/po/sr/netview.po | 4 +-
src/vidalia/help/content/po/sr/running.po | 4 +-
src/vidalia/help/content/po/sr/server.po | 4 +-
src/vidalia/help/content/po/sr/services.po | 4 +-
src/vidalia/help/content/po/sr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/st/bridges.po | 4 +-
src/vidalia/help/content/po/st/config.po | 4 +-
src/vidalia/help/content/po/st/index.po | 4 +-
src/vidalia/help/content/po/st/links.po | 4 +-
src/vidalia/help/content/po/st/log.po | 4 +-
src/vidalia/help/content/po/st/netview.po | 4 +-
src/vidalia/help/content/po/st/running.po | 4 +-
src/vidalia/help/content/po/st/server.po | 4 +-
src/vidalia/help/content/po/st/services.po | 4 +-
src/vidalia/help/content/po/st/troubleshooting.po | 4 +-
src/vidalia/help/content/po/su/config.po | 4 +-
src/vidalia/help/content/po/su/index.po | 4 +-
src/vidalia/help/content/po/su/links.po | 4 +-
src/vidalia/help/content/po/su/log.po | 4 +-
src/vidalia/help/content/po/su/running.po | 4 +-
src/vidalia/help/content/po/su/server.po | 4 +-
src/vidalia/help/content/po/su/services.po | 4 +-
src/vidalia/help/content/po/su/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sv/bridges.po | 4 +-
src/vidalia/help/content/po/sv/config.po | 4 +-
src/vidalia/help/content/po/sv/index.po | 4 +-
src/vidalia/help/content/po/sv/links.po | 4 +-
src/vidalia/help/content/po/sv/log.po | 4 +-
src/vidalia/help/content/po/sv/netview.po | 4 +-
src/vidalia/help/content/po/sv/running.po | 4 +-
src/vidalia/help/content/po/sv/server.po | 4 +-
src/vidalia/help/content/po/sv/services.po | 4 +-
src/vidalia/help/content/po/sv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sw/config.po | 4 +-
src/vidalia/help/content/po/sw/index.po | 4 +-
src/vidalia/help/content/po/sw/links.po | 4 +-
src/vidalia/help/content/po/sw/log.po | 4 +-
src/vidalia/help/content/po/sw/running.po | 4 +-
src/vidalia/help/content/po/sw/server.po | 4 +-
src/vidalia/help/content/po/sw/services.po | 4 +-
src/vidalia/help/content/po/sw/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ta/config.po | 4 +-
src/vidalia/help/content/po/ta/index.po | 4 +-
src/vidalia/help/content/po/ta/links.po | 4 +-
src/vidalia/help/content/po/ta/log.po | 4 +-
src/vidalia/help/content/po/ta/running.po | 4 +-
src/vidalia/help/content/po/ta/server.po | 4 +-
src/vidalia/help/content/po/ta/services.po | 4 +-
src/vidalia/help/content/po/ta/troubleshooting.po | 4 +-
src/vidalia/help/content/po/te/config.po | 4 +-
src/vidalia/help/content/po/te/index.po | 4 +-
src/vidalia/help/content/po/te/links.po | 4 +-
src/vidalia/help/content/po/te/log.po | 4 +-
src/vidalia/help/content/po/te/running.po | 4 +-
src/vidalia/help/content/po/te/server.po | 4 +-
src/vidalia/help/content/po/te/services.po | 4 +-
src/vidalia/help/content/po/te/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tg/config.po | 4 +-
src/vidalia/help/content/po/tg/index.po | 4 +-
src/vidalia/help/content/po/tg/links.po | 4 +-
src/vidalia/help/content/po/tg/log.po | 4 +-
src/vidalia/help/content/po/tg/running.po | 4 +-
src/vidalia/help/content/po/tg/server.po | 4 +-
src/vidalia/help/content/po/tg/services.po | 4 +-
src/vidalia/help/content/po/tg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/th/config.po | 4 +-
src/vidalia/help/content/po/th/index.po | 4 +-
src/vidalia/help/content/po/th/links.po | 4 +-
src/vidalia/help/content/po/th/log.po | 4 +-
src/vidalia/help/content/po/th/running.po | 4 +-
src/vidalia/help/content/po/th/server.po | 4 +-
src/vidalia/help/content/po/th/services.po | 4 +-
src/vidalia/help/content/po/th/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ti/config.po | 4 +-
src/vidalia/help/content/po/ti/index.po | 4 +-
src/vidalia/help/content/po/ti/links.po | 4 +-
src/vidalia/help/content/po/ti/log.po | 4 +-
src/vidalia/help/content/po/ti/running.po | 4 +-
src/vidalia/help/content/po/ti/server.po | 4 +-
src/vidalia/help/content/po/ti/services.po | 4 +-
src/vidalia/help/content/po/ti/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tk/config.po | 4 +-
src/vidalia/help/content/po/tk/index.po | 4 +-
src/vidalia/help/content/po/tk/links.po | 4 +-
src/vidalia/help/content/po/tk/log.po | 4 +-
src/vidalia/help/content/po/tk/running.po | 4 +-
src/vidalia/help/content/po/tk/server.po | 4 +-
src/vidalia/help/content/po/tk/services.po | 4 +-
src/vidalia/help/content/po/tk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tr/index.po | 4 +-
src/vidalia/help/content/po/tr/links.po | 4 +-
src/vidalia/help/content/po/tr/log.po | 4 +-
src/vidalia/help/content/po/tr/running.po | 4 +-
src/vidalia/help/content/po/tr/server.po | 4 +-
src/vidalia/help/content/po/tr/services.po | 4 +-
src/vidalia/help/content/po/tr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/uk/config.po | 4 +-
src/vidalia/help/content/po/uk/index.po | 4 +-
src/vidalia/help/content/po/uk/links.po | 4 +-
src/vidalia/help/content/po/uk/log.po | 4 +-
src/vidalia/help/content/po/uk/running.po | 4 +-
src/vidalia/help/content/po/uk/server.po | 4 +-
src/vidalia/help/content/po/uk/services.po | 4 +-
src/vidalia/help/content/po/uk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ur/config.po | 4 +-
src/vidalia/help/content/po/ur/index.po | 4 +-
src/vidalia/help/content/po/ur/links.po | 4 +-
src/vidalia/help/content/po/ur/log.po | 4 +-
src/vidalia/help/content/po/ur/running.po | 4 +-
src/vidalia/help/content/po/ur/server.po | 4 +-
src/vidalia/help/content/po/ur/services.po | 4 +-
src/vidalia/help/content/po/ur/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ve/config.po | 4 +-
src/vidalia/help/content/po/ve/index.po | 4 +-
src/vidalia/help/content/po/ve/links.po | 4 +-
src/vidalia/help/content/po/ve/log.po | 4 +-
src/vidalia/help/content/po/ve/running.po | 4 +-
src/vidalia/help/content/po/ve/server.po | 4 +-
src/vidalia/help/content/po/ve/services.po | 4 +-
src/vidalia/help/content/po/ve/troubleshooting.po | 4 +-
src/vidalia/help/content/po/vi/config.po | 4 +-
src/vidalia/help/content/po/vi/index.po | 4 +-
src/vidalia/help/content/po/vi/links.po | 4 +-
src/vidalia/help/content/po/vi/log.po | 4 +-
src/vidalia/help/content/po/vi/running.po | 4 +-
src/vidalia/help/content/po/vi/server.po | 4 +-
src/vidalia/help/content/po/vi/services.po | 4 +-
src/vidalia/help/content/po/vi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/wa/config.po | 4 +-
src/vidalia/help/content/po/wa/index.po | 4 +-
src/vidalia/help/content/po/wa/links.po | 4 +-
src/vidalia/help/content/po/wa/log.po | 4 +-
src/vidalia/help/content/po/wa/running.po | 4 +-
src/vidalia/help/content/po/wa/server.po | 4 +-
src/vidalia/help/content/po/wa/services.po | 4 +-
src/vidalia/help/content/po/wa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/wo/bridges.po | 4 +-
src/vidalia/help/content/po/wo/config.po | 4 +-
src/vidalia/help/content/po/wo/index.po | 4 +-
src/vidalia/help/content/po/wo/links.po | 4 +-
src/vidalia/help/content/po/wo/log.po | 4 +-
src/vidalia/help/content/po/wo/netview.po | 4 +-
src/vidalia/help/content/po/wo/running.po | 4 +-
src/vidalia/help/content/po/wo/server.po | 4 +-
src/vidalia/help/content/po/wo/services.po | 4 +-
src/vidalia/help/content/po/wo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_CN/config.po | 4 +-
src/vidalia/help/content/po/zh_CN/index.po | 4 +-
src/vidalia/help/content/po/zh_CN/links.po | 4 +-
src/vidalia/help/content/po/zh_CN/log.po | 4 +-
src/vidalia/help/content/po/zh_CN/running.po | 4 +-
src/vidalia/help/content/po/zh_CN/server.po | 4 +-
src/vidalia/help/content/po/zh_CN/services.po | 4 +-
.../help/content/po/zh_CN/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_HK/config.po | 4 +-
src/vidalia/help/content/po/zh_HK/index.po | 4 +-
src/vidalia/help/content/po/zh_HK/links.po | 4 +-
src/vidalia/help/content/po/zh_HK/log.po | 4 +-
src/vidalia/help/content/po/zh_HK/running.po | 4 +-
src/vidalia/help/content/po/zh_HK/server.po | 4 +-
src/vidalia/help/content/po/zh_HK/services.po | 4 +-
.../help/content/po/zh_HK/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_TW/config.po | 4 +-
src/vidalia/help/content/po/zh_TW/index.po | 4 +-
src/vidalia/help/content/po/zh_TW/links.po | 4 +-
src/vidalia/help/content/po/zh_TW/log.po | 4 +-
src/vidalia/help/content/po/zh_TW/running.po | 4 +-
src/vidalia/help/content/po/zh_TW/server.po | 4 +-
src/vidalia/help/content/po/zh_TW/services.po | 4 +-
.../help/content/po/zh_TW/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zu/config.po | 4 +-
src/vidalia/help/content/po/zu/index.po | 4 +-
src/vidalia/help/content/po/zu/links.po | 4 +-
src/vidalia/help/content/po/zu/log.po | 4 +-
src/vidalia/help/content/po/zu/running.po | 4 +-
src/vidalia/help/content/po/zu/server.po | 4 +-
src/vidalia/help/content/po/zu/services.po | 4 +-
src/vidalia/help/content/po/zu/troubleshooting.po | 4 +-
src/vidalia/help/content/pt_BR/bridges.html | 6 ++--
src/vidalia/help/content/ru/bridges.html | 6 ++--
src/vidalia/help/content/ru/config.html | 6 ++--
src/vidalia/help/content/ru/index.html | 6 ++--
src/vidalia/help/content/ru/links.html | 6 ++--
src/vidalia/help/content/ru/log.html | 6 ++--
src/vidalia/help/content/ru/netview.html | 6 ++--
src/vidalia/help/content/ru/running.html | 6 ++--
src/vidalia/help/content/ru/server.html | 6 ++--
src/vidalia/help/content/ru/services.html | 6 ++--
src/vidalia/help/content/ru/troubleshooting.html | 6 ++--
src/vidalia/help/content/sv/bridges.html | 6 ++--
src/vidalia/help/content/sv/config.html | 6 ++--
src/vidalia/help/content/sv/index.html | 6 ++--
src/vidalia/help/content/sv/links.html | 6 ++--
src/vidalia/help/content/sv/log.html | 6 ++--
src/vidalia/help/content/sv/netview.html | 6 ++--
src/vidalia/help/content/sv/running.html | 6 ++--
src/vidalia/help/content/sv/server.html | 6 ++--
src/vidalia/help/content/sv/services.html | 6 ++--
src/vidalia/help/content/sv/troubleshooting.html | 6 ++--
src/vidalia/help/content/tr/links.html | 6 ++--
src/vidalia/help/content/zh_CN/bridges.html | 6 ++--
src/vidalia/help/content/zh_CN/config.html | 6 ++--
src/vidalia/help/content/zh_CN/index.html | 6 ++--
src/vidalia/help/content/zh_CN/links.html | 6 ++--
src/vidalia/help/content/zh_CN/log.html | 6 ++--
src/vidalia/help/content/zh_CN/netview.html | 6 ++--
src/vidalia/help/content/zh_CN/running.html | 6 ++--
src/vidalia/help/content/zh_CN/server.html | 6 ++--
.../help/content/zh_CN/troubleshooting.html | 6 ++--
src/vidalia/i18n/CMakeLists.txt | 6 ++--
src/vidalia/log/LogFile.cpp | 6 ++--
src/vidalia/log/LogFile.h | 6 ++--
src/vidalia/log/LogHeaderView.cpp | 6 ++--
src/vidalia/log/LogHeaderView.h | 6 ++--
src/vidalia/log/LogMessageColumnDelegate.cpp | 6 ++--
src/vidalia/log/LogMessageColumnDelegate.h | 6 ++--
src/vidalia/log/LogTreeItem.cpp | 6 ++--
src/vidalia/log/LogTreeItem.h | 6 ++--
src/vidalia/log/LogTreeWidget.cpp | 6 ++--
src/vidalia/log/LogTreeWidget.h | 6 ++--
src/vidalia/log/MessageLog.cpp | 6 ++--
src/vidalia/log/MessageLog.h | 6 ++--
src/vidalia/log/StatusEventItem.cpp | 6 ++--
src/vidalia/log/StatusEventItem.h | 6 ++--
src/vidalia/log/StatusEventItemDelegate.cpp | 6 ++--
src/vidalia/log/StatusEventItemDelegate.h | 6 ++--
src/vidalia/log/StatusEventWidget.cpp | 6 ++--
src/vidalia/log/StatusEventWidget.h | 6 ++--
src/vidalia/main.cpp | 6 ++--
src/vidalia/network/CircuitItem.cpp | 6 ++--
src/vidalia/network/CircuitItem.h | 6 ++--
src/vidalia/network/CircuitListWidget.cpp | 6 ++--
src/vidalia/network/CircuitListWidget.h | 6 ++--
src/vidalia/network/CountryInfo.cpp | 6 ++--
src/vidalia/network/CountryInfo.h | 6 ++--
src/vidalia/network/GeoIpDatabase.cpp | 6 ++--
src/vidalia/network/GeoIpDatabase.h | 6 ++--
src/vidalia/network/GeoIpRecord.cpp | 6 ++--
src/vidalia/network/GeoIpRecord.h | 6 ++--
src/vidalia/network/GeoIpResolver.cpp | 6 ++--
src/vidalia/network/GeoIpResolver.h | 6 ++--
src/vidalia/network/NetViewer.cpp | 6 ++--
src/vidalia/network/NetViewer.h | 6 ++--
src/vidalia/network/RouterDescriptorView.cpp | 6 ++--
src/vidalia/network/RouterDescriptorView.h | 6 ++--
src/vidalia/network/RouterInfoDialog.cpp | 6 ++--
src/vidalia/network/RouterInfoDialog.h | 6 ++--
src/vidalia/network/RouterListItem.cpp | 6 ++--
src/vidalia/network/RouterListItem.h | 6 ++--
src/vidalia/network/RouterListWidget.cpp | 6 ++--
src/vidalia/network/RouterListWidget.h | 6 ++--
src/vidalia/network/StreamItem.cpp | 6 ++--
src/vidalia/network/StreamItem.h | 6 ++--
src/vidalia/network/TorMapImageView.cpp | 6 ++--
src/vidalia/network/TorMapImageView.h | 6 ++--
src/vidalia/network/TorMapWidget.cpp | 6 ++--
src/vidalia/network/TorMapWidget.h | 6 ++--
src/vidalia/network/TorMapWidgetInputHandler.cpp | 6 ++--
src/vidalia/network/TorMapWidgetInputHandler.h | 6 ++--
src/vidalia/network/TorMapWidgetPopupMenu.cpp | 6 ++--
src/vidalia/network/TorMapWidgetPopupMenu.h | 6 ++--
src/vidalia/network/ZImageView.cpp | 6 ++--
src/vidalia/network/ZImageView.h | 6 ++--
src/vidalia/res/vidalia_win.rc.in | 6 ++--
1388 files changed, 3165 insertions(+), 3181 deletions(-)
1
0
commit 7b01d6c9a1e6bf0349a0211b9e9e3234e1ff9c86
Merge: c0da3c8 32e4b2e
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Thu May 5 15:45:24 2011 -0300
Merge branch 'bug2105_breakpad'
Conflicts:
src/crashreporter/CrashReportUploader.cpp
src/crashreporter/CrashReportUploader.h
src/crashreporter/UploadProgressDialog.cpp
src/crashreporter/UploadProgressDialog.h
cmake/FindBreakpad.cmake | 3 -
src/crashreporter/CMakeLists.txt | 6 +-
src/crashreporter/CrashReportDialog.cpp | 61 +-----------
src/crashreporter/CrashReportDialog.h | 28 +----
src/crashreporter/CrashReportDialog.ui | 115 +++++++++++++---------
src/crashreporter/CrashReportUploader.cpp | 152 ----------------------------
src/crashreporter/CrashReportUploader.h | 109 --------------------
src/crashreporter/UploadProgressDialog.cpp | 60 -----------
src/crashreporter/UploadProgressDialog.h | 62 -----------
src/crashreporter/UploadProgressDialog.ui | 106 -------------------
src/crashreporter/main.cpp | 43 +-------
src/vidalia/CMakeLists.txt | 2 +-
src/vidalia/CrashReporter.cpp | 39 ++++++-
src/vidalia/main.cpp | 2 +
14 files changed, 118 insertions(+), 670 deletions(-)
1
0

[vidalia/master] Change the helpful links and the remaining headers
by chiiph@torproject.org 05 May '11
by chiiph@torproject.org 05 May '11
05 May '11
commit 5f3183a13906b53713cdc365e08a08743d0c0952
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Tue May 3 18:55:58 2011 -0300
Change the helpful links and the remaining headers
---
CMakeLists.txt | 6 ++--
cmake/FindBreakpad.cmake | 6 ++--
cmake/FindGeoIP.cmake | 6 ++--
cmake/FindMarble.cmake | 6 ++--
cmake/FindOpenSSL.cmake | 6 ++--
cmake/FindWiX.cmake | 6 ++--
cmake/VidaliaMacros.cmake | 6 ++--
config.h.in | 6 ++--
contrib/geoip.py | 6 ++--
doc/CMakeLists.txt | 6 ++--
pkg/CMakeLists.txt | 6 ++--
pkg/build-geoip-cache.sh | 6 ++--
pkg/osx/CMakeLists.txt | 6 ++--
pkg/osx/InstallTorbutton.scpt.in | 6 ++--
pkg/package.sh | 6 ++--
pkg/rpm/CMakeLists.txt | 6 ++--
pkg/win32/CMakeLists.txt | 6 ++--
pkg/win32/bridge-bundle.nsi.in | 6 ++--
pkg/win32/vidalia-bundle.nsi.in | 6 ++--
src/CMakeLists.txt | 6 ++--
src/common/CMakeLists.txt | 6 ++--
src/crashreporter/CMakeLists.txt | 6 ++--
src/crashreporter/res/CrashReporter.rc.in | 6 ++--
src/miniupnpc/CMakeLists.txt | 6 ++--
src/tools/CMakeLists.txt | 6 ++--
src/tools/nostdset/nostdset.sh | 6 ++--
src/tools/nsh2po/CMakeLists.txt | 6 ++--
src/tools/nsh2po/nsh2po_config.h.in | 6 ++--
src/tools/po2nsh/CMakeLists.txt | 6 ++--
src/tools/po2ts/CMakeLists.txt | 6 ++--
src/tools/po2wxl/CMakeLists.txt | 6 ++--
src/tools/ts2po/CMakeLists.txt | 6 ++--
src/tools/ts2po/ts2po_config.h.in | 6 ++--
src/torcontrol/CMakeLists.txt | 6 ++--
src/vidalia/CMakeLists.txt | 6 ++--
src/vidalia/help/content/en/contents.xml | 6 ++--
src/vidalia/help/content/en/links.html | 32 +++++++---------------------
src/vidalia/i18n/CMakeLists.txt | 6 ++--
src/vidalia/res/vidalia_win.rc.in | 6 ++--
39 files changed, 122 insertions(+), 138 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b580959..e5bb9f9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/cmake/FindBreakpad.cmake b/cmake/FindBreakpad.cmake
index 607d054..d4119b5 100644
--- a/cmake/FindBreakpad.cmake
+++ b/cmake/FindBreakpad.cmake
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## Tries to find the required Google Breakpad libraries. Once done this will
diff --git a/cmake/FindGeoIP.cmake b/cmake/FindGeoIP.cmake
index 15227d8..76986bf 100644
--- a/cmake/FindGeoIP.cmake
+++ b/cmake/FindGeoIP.cmake
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## Tries to find the required MaxMind GeoIPlibraries. Once done this will
diff --git a/cmake/FindMarble.cmake b/cmake/FindMarble.cmake
index 4986fc1..12382b8 100644
--- a/cmake/FindMarble.cmake
+++ b/cmake/FindMarble.cmake
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## This file incorporates work from the KDE Marble project, and is covered by
## the following copyright and permission notice:
diff --git a/cmake/FindOpenSSL.cmake b/cmake/FindOpenSSL.cmake
index ec7b91d..0f931b0 100644
--- a/cmake/FindOpenSSL.cmake
+++ b/cmake/FindOpenSSL.cmake
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## This file incorporates work covered by the following copyright and
## permission notice:
diff --git a/cmake/FindWiX.cmake b/cmake/FindWiX.cmake
index 2a49d61..590889b 100644
--- a/cmake/FindWiX.cmake
+++ b/cmake/FindWiX.cmake
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
message(STATUS "Looking for WiX")
diff --git a/cmake/VidaliaMacros.cmake b/cmake/VidaliaMacros.cmake
index 306feca..7e468b2 100644
--- a/cmake/VidaliaMacros.cmake
+++ b/cmake/VidaliaMacros.cmake
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/config.h.in b/config.h.in
index c55b7a7..0b5ede1 100644
--- a/config.h.in
+++ b/config.h.in
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
**
*/
diff --git a/contrib/geoip.py b/contrib/geoip.py
index 92de9ca..23f3540 100755
--- a/contrib/geoip.py
+++ b/contrib/geoip.py
@@ -6,9 +6,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
from mod_python import apache
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index 323bacc..c708c9a 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/pkg/CMakeLists.txt b/pkg/CMakeLists.txt
index dbf1067..bafa506 100644
--- a/pkg/CMakeLists.txt
+++ b/pkg/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
if (APPLE)
diff --git a/pkg/build-geoip-cache.sh b/pkg/build-geoip-cache.sh
index f19de99..31696b6 100755
--- a/pkg/build-geoip-cache.sh
+++ b/pkg/build-geoip-cache.sh
@@ -6,9 +6,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/pkg/osx/CMakeLists.txt b/pkg/osx/CMakeLists.txt
index 2d06895..e757864 100644
--- a/pkg/osx/CMakeLists.txt
+++ b/pkg/osx/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/pkg/osx/InstallTorbutton.scpt.in b/pkg/osx/InstallTorbutton.scpt.in
index c8f28dc..3e487ef 100644
--- a/pkg/osx/InstallTorbutton.scpt.in
+++ b/pkg/osx/InstallTorbutton.scpt.in
@@ -5,9 +5,9 @@
-- LICENSE file, found in the top level directory of this distribution. If
-- you did not receive the LICENSE file with this file, you may obtain it
-- from the Vidalia source package distributed by the Vidalia Project at
--- http://www.vidalia-project.net/. No part of Vidalia, including this file,
--- may be copied, modified, propagated, or distributed except according to
--- the terms described in the LICENSE file.
+-- 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.
--
try
diff --git a/pkg/package.sh b/pkg/package.sh
index d85fb5e..b5e628d 100755
--- a/pkg/package.sh
+++ b/pkg/package.sh
@@ -6,9 +6,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
# Builds distribution packages for various platforms.
diff --git a/pkg/rpm/CMakeLists.txt b/pkg/rpm/CMakeLists.txt
index 9a928bc..8269ee0 100644
--- a/pkg/rpm/CMakeLists.txt
+++ b/pkg/rpm/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## RPM Spec File
diff --git a/pkg/win32/CMakeLists.txt b/pkg/win32/CMakeLists.txt
index e03973f..13306e7 100644
--- a/pkg/win32/CMakeLists.txt
+++ b/pkg/win32/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
if (MINGW)
diff --git a/pkg/win32/bridge-bundle.nsi.in b/pkg/win32/bridge-bundle.nsi.in
index 649cd24..37eb4a8 100644
--- a/pkg/win32/bridge-bundle.nsi.in
+++ b/pkg/win32/bridge-bundle.nsi.in
@@ -5,9 +5,9 @@
;; LICENSE file, found in the top level directory of this distribution. If
;; you did not receive the LICENSE file with this file, you may obtain it
;; from the Vidalia source package distributed by the Vidalia Project at
-;; http://www.vidalia-project.net/. No part of Vidalia, including this file,
-;; may be copied, modified, propagated, or distributed except according to
-;; the terms described in the LICENSE file.
+;; 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.
;;
!include "MUI.nsh"
diff --git a/pkg/win32/vidalia-bundle.nsi.in b/pkg/win32/vidalia-bundle.nsi.in
index 0b7a595..fc9b30e 100644
--- a/pkg/win32/vidalia-bundle.nsi.in
+++ b/pkg/win32/vidalia-bundle.nsi.in
@@ -5,9 +5,9 @@
;; LICENSE file, found in the top level directory of this distribution. If
;; you did not receive the LICENSE file with this file, you may obtain it
;; from the Vidalia source package distributed by the Vidalia Project at
-;; http://www.vidalia-project.net/. No part of Vidalia, including this file,
-;; may be copied, modified, propagated, or distributed except according to
-;; the terms described in the LICENSE file.
+;; 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.
;;
!include "MUI.nsh"
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 580c194..4a25aac 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index dae0eb3..92ec489 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/src/crashreporter/CMakeLists.txt b/src/crashreporter/CMakeLists.txt
index f396d9a..672e763 100644
--- a/src/crashreporter/CMakeLists.txt
+++ b/src/crashreporter/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
include_directories(
diff --git a/src/crashreporter/res/CrashReporter.rc.in b/src/crashreporter/res/CrashReporter.rc.in
index d3e5951..a1f98a2 100644
--- a/src/crashreporter/res/CrashReporter.rc.in
+++ b/src/crashreporter/res/CrashReporter.rc.in
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/miniupnpc/CMakeLists.txt b/src/miniupnpc/CMakeLists.txt
index 28e18c5..53e2340 100644
--- a/src/miniupnpc/CMakeLists.txt
+++ b/src/miniupnpc/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
add_definitions(-DSTATICLIB -DNDEBUG)
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt
index 40af38a..08501ca 100644
--- a/src/tools/CMakeLists.txt
+++ b/src/tools/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
add_subdirectory(ts2po)
diff --git a/src/tools/nostdset/nostdset.sh b/src/tools/nostdset/nostdset.sh
index 9558526..5a41062 100644
--- a/src/tools/nostdset/nostdset.sh
+++ b/src/tools/nostdset/nostdset.sh
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
find -name *.ui | xargs sed "s/sizeHint\" stdset=\"0\" /sizeHint\"/" -i
diff --git a/src/tools/nsh2po/CMakeLists.txt b/src/tools/nsh2po/CMakeLists.txt
index f438f7b..8011ed3 100644
--- a/src/tools/nsh2po/CMakeLists.txt
+++ b/src/tools/nsh2po/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## Define this version of nsh2po
diff --git a/src/tools/nsh2po/nsh2po_config.h.in b/src/tools/nsh2po/nsh2po_config.h.in
index 2e3e68b..e9d9c85 100644
--- a/src/tools/nsh2po/nsh2po_config.h.in
+++ b/src/tools/nsh2po/nsh2po_config.h.in
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#ifndef _NSH2PO_CONFIG_H
diff --git a/src/tools/po2nsh/CMakeLists.txt b/src/tools/po2nsh/CMakeLists.txt
index 68de001..45b291f 100644
--- a/src/tools/po2nsh/CMakeLists.txt
+++ b/src/tools/po2nsh/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## po2nsh source files
diff --git a/src/tools/po2ts/CMakeLists.txt b/src/tools/po2ts/CMakeLists.txt
index a6f38a4..fff76bc 100644
--- a/src/tools/po2ts/CMakeLists.txt
+++ b/src/tools/po2ts/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## po2ts source files
diff --git a/src/tools/po2wxl/CMakeLists.txt b/src/tools/po2wxl/CMakeLists.txt
index 0e4c7c1..5e8e547 100644
--- a/src/tools/po2wxl/CMakeLists.txt
+++ b/src/tools/po2wxl/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## po2wxl source files
diff --git a/src/tools/ts2po/CMakeLists.txt b/src/tools/ts2po/CMakeLists.txt
index af6915e..b98725c 100644
--- a/src/tools/ts2po/CMakeLists.txt
+++ b/src/tools/ts2po/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
## Define this version of ts2po
diff --git a/src/tools/ts2po/ts2po_config.h.in b/src/tools/ts2po/ts2po_config.h.in
index 55f8828..50f69fc 100644
--- a/src/tools/ts2po/ts2po_config.h.in
+++ b/src/tools/ts2po/ts2po_config.h.in
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#ifndef _TS2PO_CONFIG_H
diff --git a/src/torcontrol/CMakeLists.txt b/src/torcontrol/CMakeLists.txt
index 5f3b325..735cc70 100644
--- a/src/torcontrol/CMakeLists.txt
+++ b/src/torcontrol/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/src/vidalia/CMakeLists.txt b/src/vidalia/CMakeLists.txt
index 15eac34..91036b9 100644
--- a/src/vidalia/CMakeLists.txt
+++ b/src/vidalia/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/src/vidalia/help/content/en/contents.xml b/src/vidalia/help/content/en/contents.xml
index ba6ba31..ae42116 100644
--- a/src/vidalia/help/content/en/contents.xml
+++ b/src/vidalia/help/content/en/contents.xml
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<Contents name="Vidalia Help" html="index.html">
diff --git a/src/vidalia/help/content/en/links.html b/src/vidalia/help/content/en/links.html
index 479dd4e..1326f44 100644
--- a/src/vidalia/help/content/en/links.html
+++ b/src/vidalia/help/content/en/links.html
@@ -28,18 +28,10 @@
</tr>
<tr>
<td> </td>
- <td>Wiki</td>
+ <td>Wiki and Bugtracker</td>
<td>
- <a href="http://trac.vidalia-project.net/wiki">
- http://trac.vidalia-project.net/wiki</a>
- </td>
-</tr>
-<tr>
- <td> </td>
- <td>Bugtracker</td>
- <td>
- <a href="http://trac.vidalia-project.net/report">
- http://trac.vidalia-project.net/report</a>
+ <a href="http://trac.torproject.org/">
+ http://trac.torproject.org/</a>
</td>
</tr>
</table>
@@ -57,24 +49,16 @@
<td> </td>
<td>FAQ</td>
<td>
- <a href="https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ">
- https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ</a>
- </td>
-</tr>
-<tr>
- <td> </td>
- <td>Wiki</td>
- <td>
- <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>
</td>
</tr>
<tr>
<td> </td>
- <td>Bugtracker</td>
+ <td>Wiki and Bugtracker</td>
<td>
- <a href="https://bugs.torproject.org/flyspray/">
- https://bugs.torproject.org/flyspray</a>
+ <a href="https://trac.torproject.org/">
+ https://trac.torproject.org/</a>
</td>
</tr>
</table>
diff --git a/src/vidalia/i18n/CMakeLists.txt b/src/vidalia/i18n/CMakeLists.txt
index e0e1647..7ec3bda 100644
--- a/src/vidalia/i18n/CMakeLists.txt
+++ b/src/vidalia/i18n/CMakeLists.txt
@@ -5,9 +5,9 @@
## LICENSE file, found in the top level directory of this distribution. If
## you did not receive the LICENSE file with this file, you may obtain it
## from the Vidalia source package distributed by the Vidalia Project at
-## http://www.vidalia-project.net/. No part of Vidalia, including this file,
-## may be copied, modified, propagated, or distributed except according to
-## the terms described in the LICENSE file.
+## 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.
##
diff --git a/src/vidalia/res/vidalia_win.rc.in b/src/vidalia/res/vidalia_win.rc.in
index ef22bdc..188b798 100644
--- a/src/vidalia/res/vidalia_win.rc.in
+++ b/src/vidalia/res/vidalia_win.rc.in
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
1
0

[vidalia/master] Change the rest of the headers in the help/content/po/*/*.po
by chiiph@torproject.org 05 May '11
by chiiph@torproject.org 05 May '11
05 May '11
commit efa59735cb92ebf0e69f1c67e283d060e8904184
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Sat Apr 30 01:46:22 2011 -0300
Change the rest of the headers in the help/content/po/*/*.po
---
src/vidalia/help/content/po/af/config.po | 4 ++--
src/vidalia/help/content/po/af/index.po | 4 ++--
src/vidalia/help/content/po/af/links.po | 4 ++--
src/vidalia/help/content/po/af/log.po | 4 ++--
src/vidalia/help/content/po/af/running.po | 4 ++--
src/vidalia/help/content/po/af/server.po | 4 ++--
src/vidalia/help/content/po/af/services.po | 4 ++--
src/vidalia/help/content/po/af/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ak/config.po | 4 ++--
src/vidalia/help/content/po/ak/index.po | 4 ++--
src/vidalia/help/content/po/ak/links.po | 4 ++--
src/vidalia/help/content/po/ak/log.po | 4 ++--
src/vidalia/help/content/po/ak/running.po | 4 ++--
src/vidalia/help/content/po/ak/server.po | 4 ++--
src/vidalia/help/content/po/ak/services.po | 4 ++--
src/vidalia/help/content/po/ak/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/am/config.po | 4 ++--
src/vidalia/help/content/po/am/index.po | 4 ++--
src/vidalia/help/content/po/am/links.po | 4 ++--
src/vidalia/help/content/po/am/log.po | 4 ++--
src/vidalia/help/content/po/am/running.po | 4 ++--
src/vidalia/help/content/po/am/server.po | 4 ++--
src/vidalia/help/content/po/am/services.po | 4 ++--
src/vidalia/help/content/po/am/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ar/index.po | 4 ++--
src/vidalia/help/content/po/ar/links.po | 4 ++--
src/vidalia/help/content/po/ar/log.po | 4 ++--
src/vidalia/help/content/po/ar/netview.po | 4 ++--
src/vidalia/help/content/po/ar/running.po | 4 ++--
src/vidalia/help/content/po/ar/server.po | 4 ++--
src/vidalia/help/content/po/ar/services.po | 4 ++--
src/vidalia/help/content/po/ar/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/arn/config.po | 4 ++--
src/vidalia/help/content/po/arn/index.po | 4 ++--
src/vidalia/help/content/po/arn/links.po | 4 ++--
src/vidalia/help/content/po/arn/log.po | 4 ++--
src/vidalia/help/content/po/arn/running.po | 4 ++--
src/vidalia/help/content/po/arn/server.po | 4 ++--
src/vidalia/help/content/po/arn/services.po | 4 ++--
src/vidalia/help/content/po/arn/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ast/config.po | 4 ++--
src/vidalia/help/content/po/ast/index.po | 4 ++--
src/vidalia/help/content/po/ast/links.po | 4 ++--
src/vidalia/help/content/po/ast/log.po | 4 ++--
src/vidalia/help/content/po/ast/running.po | 4 ++--
src/vidalia/help/content/po/ast/server.po | 4 ++--
src/vidalia/help/content/po/ast/services.po | 4 ++--
src/vidalia/help/content/po/ast/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/az/config.po | 4 ++--
src/vidalia/help/content/po/az/index.po | 4 ++--
src/vidalia/help/content/po/az/links.po | 4 ++--
src/vidalia/help/content/po/az/log.po | 4 ++--
src/vidalia/help/content/po/az/running.po | 4 ++--
src/vidalia/help/content/po/az/server.po | 4 ++--
src/vidalia/help/content/po/az/services.po | 4 ++--
src/vidalia/help/content/po/az/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/be/config.po | 4 ++--
src/vidalia/help/content/po/be/index.po | 4 ++--
src/vidalia/help/content/po/be/links.po | 4 ++--
src/vidalia/help/content/po/be/log.po | 4 ++--
src/vidalia/help/content/po/be/running.po | 4 ++--
src/vidalia/help/content/po/be/server.po | 4 ++--
src/vidalia/help/content/po/be/services.po | 4 ++--
src/vidalia/help/content/po/be/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/bg/config.po | 4 ++--
src/vidalia/help/content/po/bg/index.po | 4 ++--
src/vidalia/help/content/po/bg/links.po | 4 ++--
src/vidalia/help/content/po/bg/log.po | 4 ++--
src/vidalia/help/content/po/bg/running.po | 4 ++--
src/vidalia/help/content/po/bg/server.po | 4 ++--
src/vidalia/help/content/po/bg/services.po | 4 ++--
src/vidalia/help/content/po/bg/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/bn/config.po | 4 ++--
src/vidalia/help/content/po/bn/index.po | 4 ++--
src/vidalia/help/content/po/bn/links.po | 4 ++--
src/vidalia/help/content/po/bn/log.po | 4 ++--
src/vidalia/help/content/po/bn/running.po | 4 ++--
src/vidalia/help/content/po/bn/server.po | 4 ++--
src/vidalia/help/content/po/bn/services.po | 4 ++--
src/vidalia/help/content/po/bn/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/bn_IN/config.po | 4 ++--
src/vidalia/help/content/po/bn_IN/index.po | 4 ++--
src/vidalia/help/content/po/bn_IN/links.po | 4 ++--
src/vidalia/help/content/po/bn_IN/log.po | 4 ++--
src/vidalia/help/content/po/bn_IN/running.po | 4 ++--
src/vidalia/help/content/po/bn_IN/server.po | 4 ++--
src/vidalia/help/content/po/bn_IN/services.po | 4 ++--
.../help/content/po/bn_IN/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/bo/bridges.po | 4 ++--
src/vidalia/help/content/po/bo/config.po | 4 ++--
src/vidalia/help/content/po/bo/index.po | 4 ++--
src/vidalia/help/content/po/bo/links.po | 4 ++--
src/vidalia/help/content/po/bo/log.po | 4 ++--
src/vidalia/help/content/po/bo/netview.po | 4 ++--
src/vidalia/help/content/po/bo/running.po | 4 ++--
src/vidalia/help/content/po/bo/server.po | 4 ++--
src/vidalia/help/content/po/bo/services.po | 4 ++--
src/vidalia/help/content/po/bo/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/br/bridges.po | 4 ++--
src/vidalia/help/content/po/br/config.po | 4 ++--
src/vidalia/help/content/po/br/index.po | 4 ++--
src/vidalia/help/content/po/br/links.po | 4 ++--
src/vidalia/help/content/po/br/log.po | 4 ++--
src/vidalia/help/content/po/br/netview.po | 4 ++--
src/vidalia/help/content/po/br/running.po | 4 ++--
src/vidalia/help/content/po/br/server.po | 4 ++--
src/vidalia/help/content/po/br/services.po | 4 ++--
src/vidalia/help/content/po/br/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/bs/bridges.po | 4 ++--
src/vidalia/help/content/po/bs/config.po | 4 ++--
src/vidalia/help/content/po/bs/index.po | 4 ++--
src/vidalia/help/content/po/bs/links.po | 4 ++--
src/vidalia/help/content/po/bs/log.po | 4 ++--
src/vidalia/help/content/po/bs/netview.po | 4 ++--
src/vidalia/help/content/po/bs/running.po | 4 ++--
src/vidalia/help/content/po/bs/server.po | 4 ++--
src/vidalia/help/content/po/bs/services.po | 4 ++--
src/vidalia/help/content/po/bs/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ca/config.po | 4 ++--
src/vidalia/help/content/po/ca/index.po | 4 ++--
src/vidalia/help/content/po/ca/links.po | 4 ++--
src/vidalia/help/content/po/ca/log.po | 4 ++--
src/vidalia/help/content/po/ca/running.po | 4 ++--
src/vidalia/help/content/po/ca/server.po | 4 ++--
src/vidalia/help/content/po/ca/services.po | 4 ++--
src/vidalia/help/content/po/ca/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/cs/config.po | 4 ++--
src/vidalia/help/content/po/cs/index.po | 4 ++--
src/vidalia/help/content/po/cs/links.po | 4 ++--
src/vidalia/help/content/po/cs/log.po | 4 ++--
src/vidalia/help/content/po/cs/running.po | 4 ++--
src/vidalia/help/content/po/cs/server.po | 4 ++--
src/vidalia/help/content/po/cs/services.po | 4 ++--
src/vidalia/help/content/po/cs/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/csb/config.po | 4 ++--
src/vidalia/help/content/po/csb/index.po | 4 ++--
src/vidalia/help/content/po/csb/links.po | 4 ++--
src/vidalia/help/content/po/csb/log.po | 4 ++--
src/vidalia/help/content/po/csb/running.po | 4 ++--
src/vidalia/help/content/po/csb/server.po | 4 ++--
src/vidalia/help/content/po/csb/services.po | 4 ++--
src/vidalia/help/content/po/csb/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/cy/config.po | 4 ++--
src/vidalia/help/content/po/cy/index.po | 4 ++--
src/vidalia/help/content/po/cy/links.po | 4 ++--
src/vidalia/help/content/po/cy/log.po | 4 ++--
src/vidalia/help/content/po/cy/running.po | 4 ++--
src/vidalia/help/content/po/cy/server.po | 4 ++--
src/vidalia/help/content/po/cy/services.po | 4 ++--
src/vidalia/help/content/po/cy/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/da/bridges.po | 4 ++--
src/vidalia/help/content/po/da/index.po | 4 ++--
src/vidalia/help/content/po/da/links.po | 4 ++--
src/vidalia/help/content/po/da/log.po | 4 ++--
src/vidalia/help/content/po/da/netview.po | 4 ++--
src/vidalia/help/content/po/da/running.po | 4 ++--
src/vidalia/help/content/po/da/server.po | 4 ++--
src/vidalia/help/content/po/da/services.po | 4 ++--
src/vidalia/help/content/po/da/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/de/bridges.po | 4 ++--
src/vidalia/help/content/po/de/config.po | 4 ++--
src/vidalia/help/content/po/de/index.po | 4 ++--
src/vidalia/help/content/po/de/links.po | 4 ++--
src/vidalia/help/content/po/de/log.po | 4 ++--
src/vidalia/help/content/po/de/netview.po | 4 ++--
src/vidalia/help/content/po/de/running.po | 4 ++--
src/vidalia/help/content/po/de/server.po | 4 ++--
src/vidalia/help/content/po/de/services.po | 4 ++--
src/vidalia/help/content/po/de/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/dz/config.po | 4 ++--
src/vidalia/help/content/po/dz/index.po | 4 ++--
src/vidalia/help/content/po/dz/links.po | 4 ++--
src/vidalia/help/content/po/dz/log.po | 4 ++--
src/vidalia/help/content/po/dz/running.po | 4 ++--
src/vidalia/help/content/po/dz/server.po | 4 ++--
src/vidalia/help/content/po/dz/services.po | 4 ++--
src/vidalia/help/content/po/dz/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/el/config.po | 4 ++--
src/vidalia/help/content/po/el/index.po | 4 ++--
src/vidalia/help/content/po/el/links.po | 4 ++--
src/vidalia/help/content/po/el/log.po | 4 ++--
src/vidalia/help/content/po/el/running.po | 4 ++--
src/vidalia/help/content/po/el/server.po | 4 ++--
src/vidalia/help/content/po/el/services.po | 4 ++--
src/vidalia/help/content/po/el/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/en/bridges.po | 4 ++--
src/vidalia/help/content/po/en/config.po | 4 ++--
src/vidalia/help/content/po/en/index.po | 4 ++--
src/vidalia/help/content/po/en/links.po | 4 ++--
src/vidalia/help/content/po/en/log.po | 4 ++--
src/vidalia/help/content/po/en/netview.po | 4 ++--
src/vidalia/help/content/po/en/running.po | 4 ++--
src/vidalia/help/content/po/en/server.po | 4 ++--
src/vidalia/help/content/po/en/services.po | 4 ++--
src/vidalia/help/content/po/en/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/eo/config.po | 4 ++--
src/vidalia/help/content/po/eo/index.po | 4 ++--
src/vidalia/help/content/po/eo/links.po | 4 ++--
src/vidalia/help/content/po/eo/log.po | 4 ++--
src/vidalia/help/content/po/eo/running.po | 4 ++--
src/vidalia/help/content/po/eo/server.po | 4 ++--
src/vidalia/help/content/po/eo/services.po | 4 ++--
src/vidalia/help/content/po/eo/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/es/config.po | 4 ++--
src/vidalia/help/content/po/es/index.po | 4 ++--
src/vidalia/help/content/po/es/links.po | 4 ++--
src/vidalia/help/content/po/es/log.po | 4 ++--
src/vidalia/help/content/po/es/netview.po | 4 ++--
src/vidalia/help/content/po/es/running.po | 4 ++--
src/vidalia/help/content/po/es/server.po | 4 ++--
src/vidalia/help/content/po/es/services.po | 4 ++--
src/vidalia/help/content/po/es/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/et/config.po | 4 ++--
src/vidalia/help/content/po/et/index.po | 4 ++--
src/vidalia/help/content/po/et/links.po | 4 ++--
src/vidalia/help/content/po/et/log.po | 4 ++--
src/vidalia/help/content/po/et/running.po | 4 ++--
src/vidalia/help/content/po/et/server.po | 4 ++--
src/vidalia/help/content/po/et/services.po | 4 ++--
src/vidalia/help/content/po/et/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/eu/config.po | 4 ++--
src/vidalia/help/content/po/eu/index.po | 4 ++--
src/vidalia/help/content/po/eu/links.po | 4 ++--
src/vidalia/help/content/po/eu/log.po | 4 ++--
src/vidalia/help/content/po/eu/running.po | 4 ++--
src/vidalia/help/content/po/eu/server.po | 4 ++--
src/vidalia/help/content/po/eu/services.po | 4 ++--
src/vidalia/help/content/po/eu/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/fa/bridges.po | 4 ++--
src/vidalia/help/content/po/fa/config.po | 4 ++--
src/vidalia/help/content/po/fa/index.po | 4 ++--
src/vidalia/help/content/po/fa/links.po | 4 ++--
src/vidalia/help/content/po/fa/log.po | 4 ++--
src/vidalia/help/content/po/fa/netview.po | 4 ++--
src/vidalia/help/content/po/fa/running.po | 4 ++--
src/vidalia/help/content/po/fa/server.po | 4 ++--
src/vidalia/help/content/po/fa/services.po | 4 ++--
src/vidalia/help/content/po/fa/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/fi/bridges.po | 4 ++--
src/vidalia/help/content/po/fi/config.po | 4 ++--
src/vidalia/help/content/po/fi/index.po | 4 ++--
src/vidalia/help/content/po/fi/links.po | 4 ++--
src/vidalia/help/content/po/fi/log.po | 4 ++--
src/vidalia/help/content/po/fi/netview.po | 4 ++--
src/vidalia/help/content/po/fi/running.po | 4 ++--
src/vidalia/help/content/po/fi/server.po | 4 ++--
src/vidalia/help/content/po/fi/services.po | 4 ++--
src/vidalia/help/content/po/fi/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/fil/config.po | 4 ++--
src/vidalia/help/content/po/fil/index.po | 4 ++--
src/vidalia/help/content/po/fil/links.po | 4 ++--
src/vidalia/help/content/po/fil/log.po | 4 ++--
src/vidalia/help/content/po/fil/running.po | 4 ++--
src/vidalia/help/content/po/fil/server.po | 4 ++--
src/vidalia/help/content/po/fil/services.po | 4 ++--
src/vidalia/help/content/po/fil/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/fo/bridges.po | 4 ++--
src/vidalia/help/content/po/fo/config.po | 4 ++--
src/vidalia/help/content/po/fo/index.po | 4 ++--
src/vidalia/help/content/po/fo/links.po | 4 ++--
src/vidalia/help/content/po/fo/log.po | 4 ++--
src/vidalia/help/content/po/fo/netview.po | 4 ++--
src/vidalia/help/content/po/fo/running.po | 4 ++--
src/vidalia/help/content/po/fo/server.po | 4 ++--
src/vidalia/help/content/po/fo/services.po | 4 ++--
src/vidalia/help/content/po/fo/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/fr/config.po | 4 ++--
src/vidalia/help/content/po/fr/index.po | 4 ++--
src/vidalia/help/content/po/fr/links.po | 4 ++--
src/vidalia/help/content/po/fr/log.po | 4 ++--
src/vidalia/help/content/po/fr/netview.po | 4 ++--
src/vidalia/help/content/po/fr/running.po | 4 ++--
src/vidalia/help/content/po/fr/server.po | 4 ++--
src/vidalia/help/content/po/fr/services.po | 4 ++--
src/vidalia/help/content/po/fr/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/fur/config.po | 4 ++--
src/vidalia/help/content/po/fur/index.po | 4 ++--
src/vidalia/help/content/po/fur/links.po | 4 ++--
src/vidalia/help/content/po/fur/log.po | 4 ++--
src/vidalia/help/content/po/fur/running.po | 4 ++--
src/vidalia/help/content/po/fur/server.po | 4 ++--
src/vidalia/help/content/po/fur/services.po | 4 ++--
src/vidalia/help/content/po/fur/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/fy/bridges.po | 4 ++--
src/vidalia/help/content/po/fy/config.po | 4 ++--
src/vidalia/help/content/po/fy/index.po | 4 ++--
src/vidalia/help/content/po/fy/links.po | 4 ++--
src/vidalia/help/content/po/fy/log.po | 4 ++--
src/vidalia/help/content/po/fy/netview.po | 4 ++--
src/vidalia/help/content/po/fy/running.po | 4 ++--
src/vidalia/help/content/po/fy/server.po | 4 ++--
src/vidalia/help/content/po/fy/services.po | 4 ++--
src/vidalia/help/content/po/fy/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ga/config.po | 4 ++--
src/vidalia/help/content/po/ga/index.po | 4 ++--
src/vidalia/help/content/po/ga/links.po | 4 ++--
src/vidalia/help/content/po/ga/log.po | 4 ++--
src/vidalia/help/content/po/ga/running.po | 4 ++--
src/vidalia/help/content/po/ga/server.po | 4 ++--
src/vidalia/help/content/po/ga/services.po | 4 ++--
src/vidalia/help/content/po/ga/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/gl/config.po | 4 ++--
src/vidalia/help/content/po/gl/index.po | 4 ++--
src/vidalia/help/content/po/gl/links.po | 4 ++--
src/vidalia/help/content/po/gl/log.po | 4 ++--
src/vidalia/help/content/po/gl/running.po | 4 ++--
src/vidalia/help/content/po/gl/server.po | 4 ++--
src/vidalia/help/content/po/gl/services.po | 4 ++--
src/vidalia/help/content/po/gl/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/gu/config.po | 4 ++--
src/vidalia/help/content/po/gu/index.po | 4 ++--
src/vidalia/help/content/po/gu/links.po | 4 ++--
src/vidalia/help/content/po/gu/log.po | 4 ++--
src/vidalia/help/content/po/gu/running.po | 4 ++--
src/vidalia/help/content/po/gu/server.po | 4 ++--
src/vidalia/help/content/po/gu/services.po | 4 ++--
src/vidalia/help/content/po/gu/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/gun/config.po | 4 ++--
src/vidalia/help/content/po/gun/index.po | 4 ++--
src/vidalia/help/content/po/gun/links.po | 4 ++--
src/vidalia/help/content/po/gun/log.po | 4 ++--
src/vidalia/help/content/po/gun/running.po | 4 ++--
src/vidalia/help/content/po/gun/server.po | 4 ++--
src/vidalia/help/content/po/gun/services.po | 4 ++--
src/vidalia/help/content/po/gun/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ha/config.po | 4 ++--
src/vidalia/help/content/po/ha/index.po | 4 ++--
src/vidalia/help/content/po/ha/links.po | 4 ++--
src/vidalia/help/content/po/ha/log.po | 4 ++--
src/vidalia/help/content/po/ha/running.po | 4 ++--
src/vidalia/help/content/po/ha/server.po | 4 ++--
src/vidalia/help/content/po/ha/services.po | 4 ++--
src/vidalia/help/content/po/ha/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/he/config.po | 4 ++--
src/vidalia/help/content/po/he/index.po | 4 ++--
src/vidalia/help/content/po/he/links.po | 4 ++--
src/vidalia/help/content/po/he/log.po | 4 ++--
src/vidalia/help/content/po/he/running.po | 4 ++--
src/vidalia/help/content/po/he/server.po | 4 ++--
src/vidalia/help/content/po/he/services.po | 4 ++--
src/vidalia/help/content/po/he/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/hi/config.po | 4 ++--
src/vidalia/help/content/po/hi/index.po | 4 ++--
src/vidalia/help/content/po/hi/links.po | 4 ++--
src/vidalia/help/content/po/hi/log.po | 4 ++--
src/vidalia/help/content/po/hi/running.po | 4 ++--
src/vidalia/help/content/po/hi/server.po | 4 ++--
src/vidalia/help/content/po/hi/services.po | 4 ++--
src/vidalia/help/content/po/hi/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/hr/config.po | 4 ++--
src/vidalia/help/content/po/hr/index.po | 4 ++--
src/vidalia/help/content/po/hr/links.po | 4 ++--
src/vidalia/help/content/po/hr/log.po | 4 ++--
src/vidalia/help/content/po/hr/running.po | 4 ++--
src/vidalia/help/content/po/hr/server.po | 4 ++--
src/vidalia/help/content/po/hr/services.po | 4 ++--
src/vidalia/help/content/po/hr/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ht/config.po | 4 ++--
src/vidalia/help/content/po/ht/index.po | 4 ++--
src/vidalia/help/content/po/ht/links.po | 4 ++--
src/vidalia/help/content/po/ht/log.po | 4 ++--
src/vidalia/help/content/po/ht/running.po | 4 ++--
src/vidalia/help/content/po/ht/server.po | 4 ++--
src/vidalia/help/content/po/ht/services.po | 4 ++--
src/vidalia/help/content/po/ht/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/hu/config.po | 4 ++--
src/vidalia/help/content/po/hu/index.po | 4 ++--
src/vidalia/help/content/po/hu/links.po | 4 ++--
src/vidalia/help/content/po/hu/log.po | 4 ++--
src/vidalia/help/content/po/hu/running.po | 4 ++--
src/vidalia/help/content/po/hu/server.po | 4 ++--
src/vidalia/help/content/po/hu/services.po | 4 ++--
src/vidalia/help/content/po/hu/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/hy/bridges.po | 4 ++--
src/vidalia/help/content/po/hy/config.po | 4 ++--
src/vidalia/help/content/po/hy/index.po | 4 ++--
src/vidalia/help/content/po/hy/links.po | 4 ++--
src/vidalia/help/content/po/hy/log.po | 4 ++--
src/vidalia/help/content/po/hy/netview.po | 4 ++--
src/vidalia/help/content/po/hy/running.po | 4 ++--
src/vidalia/help/content/po/hy/server.po | 4 ++--
src/vidalia/help/content/po/hy/services.po | 4 ++--
src/vidalia/help/content/po/hy/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/id/config.po | 4 ++--
src/vidalia/help/content/po/id/index.po | 4 ++--
src/vidalia/help/content/po/id/links.po | 4 ++--
src/vidalia/help/content/po/id/log.po | 4 ++--
src/vidalia/help/content/po/id/running.po | 4 ++--
src/vidalia/help/content/po/id/server.po | 4 ++--
src/vidalia/help/content/po/id/services.po | 4 ++--
src/vidalia/help/content/po/id/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/is/config.po | 4 ++--
src/vidalia/help/content/po/is/index.po | 4 ++--
src/vidalia/help/content/po/is/links.po | 4 ++--
src/vidalia/help/content/po/is/log.po | 4 ++--
src/vidalia/help/content/po/is/running.po | 4 ++--
src/vidalia/help/content/po/is/server.po | 4 ++--
src/vidalia/help/content/po/is/services.po | 4 ++--
src/vidalia/help/content/po/is/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/it/config.po | 4 ++--
src/vidalia/help/content/po/it/index.po | 4 ++--
src/vidalia/help/content/po/it/links.po | 4 ++--
src/vidalia/help/content/po/it/log.po | 4 ++--
src/vidalia/help/content/po/it/netview.po | 4 ++--
src/vidalia/help/content/po/it/running.po | 4 ++--
src/vidalia/help/content/po/it/server.po | 4 ++--
src/vidalia/help/content/po/it/services.po | 4 ++--
src/vidalia/help/content/po/it/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ja/bridges.po | 4 ++--
src/vidalia/help/content/po/ja/config.po | 4 ++--
src/vidalia/help/content/po/ja/index.po | 4 ++--
src/vidalia/help/content/po/ja/links.po | 4 ++--
src/vidalia/help/content/po/ja/log.po | 4 ++--
src/vidalia/help/content/po/ja/netview.po | 4 ++--
src/vidalia/help/content/po/ja/running.po | 4 ++--
src/vidalia/help/content/po/ja/server.po | 4 ++--
src/vidalia/help/content/po/ja/services.po | 4 ++--
src/vidalia/help/content/po/ja/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/jv/bridges.po | 4 ++--
src/vidalia/help/content/po/jv/config.po | 4 ++--
src/vidalia/help/content/po/jv/index.po | 4 ++--
src/vidalia/help/content/po/jv/links.po | 4 ++--
src/vidalia/help/content/po/jv/log.po | 4 ++--
src/vidalia/help/content/po/jv/netview.po | 4 ++--
src/vidalia/help/content/po/jv/running.po | 4 ++--
src/vidalia/help/content/po/jv/server.po | 4 ++--
src/vidalia/help/content/po/jv/services.po | 4 ++--
src/vidalia/help/content/po/jv/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ka/bridges.po | 4 ++--
src/vidalia/help/content/po/ka/config.po | 4 ++--
src/vidalia/help/content/po/ka/index.po | 4 ++--
src/vidalia/help/content/po/ka/links.po | 4 ++--
src/vidalia/help/content/po/ka/log.po | 4 ++--
src/vidalia/help/content/po/ka/netview.po | 4 ++--
src/vidalia/help/content/po/ka/running.po | 4 ++--
src/vidalia/help/content/po/ka/server.po | 4 ++--
src/vidalia/help/content/po/ka/services.po | 4 ++--
src/vidalia/help/content/po/ka/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/km/bridges.po | 4 ++--
src/vidalia/help/content/po/km/config.po | 4 ++--
src/vidalia/help/content/po/km/index.po | 4 ++--
src/vidalia/help/content/po/km/links.po | 4 ++--
src/vidalia/help/content/po/km/log.po | 4 ++--
src/vidalia/help/content/po/km/netview.po | 4 ++--
src/vidalia/help/content/po/km/running.po | 4 ++--
src/vidalia/help/content/po/km/server.po | 4 ++--
src/vidalia/help/content/po/km/services.po | 4 ++--
src/vidalia/help/content/po/km/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/kn/config.po | 4 ++--
src/vidalia/help/content/po/kn/index.po | 4 ++--
src/vidalia/help/content/po/kn/links.po | 4 ++--
src/vidalia/help/content/po/kn/log.po | 4 ++--
src/vidalia/help/content/po/kn/running.po | 4 ++--
src/vidalia/help/content/po/kn/server.po | 4 ++--
src/vidalia/help/content/po/kn/services.po | 4 ++--
src/vidalia/help/content/po/kn/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ko/bridges.po | 4 ++--
src/vidalia/help/content/po/ko/config.po | 4 ++--
src/vidalia/help/content/po/ko/index.po | 4 ++--
src/vidalia/help/content/po/ko/links.po | 4 ++--
src/vidalia/help/content/po/ko/log.po | 4 ++--
src/vidalia/help/content/po/ko/netview.po | 4 ++--
src/vidalia/help/content/po/ko/running.po | 4 ++--
src/vidalia/help/content/po/ko/server.po | 4 ++--
src/vidalia/help/content/po/ko/services.po | 4 ++--
src/vidalia/help/content/po/ko/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ku/bridges.po | 4 ++--
src/vidalia/help/content/po/ku/config.po | 4 ++--
src/vidalia/help/content/po/ku/index.po | 4 ++--
src/vidalia/help/content/po/ku/links.po | 4 ++--
src/vidalia/help/content/po/ku/log.po | 4 ++--
src/vidalia/help/content/po/ku/netview.po | 4 ++--
src/vidalia/help/content/po/ku/running.po | 4 ++--
src/vidalia/help/content/po/ku/server.po | 4 ++--
src/vidalia/help/content/po/ku/services.po | 4 ++--
src/vidalia/help/content/po/ku/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/kw/config.po | 4 ++--
src/vidalia/help/content/po/kw/index.po | 4 ++--
src/vidalia/help/content/po/kw/links.po | 4 ++--
src/vidalia/help/content/po/kw/log.po | 4 ++--
src/vidalia/help/content/po/kw/running.po | 4 ++--
src/vidalia/help/content/po/kw/server.po | 4 ++--
src/vidalia/help/content/po/kw/services.po | 4 ++--
src/vidalia/help/content/po/kw/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ky/bridges.po | 4 ++--
src/vidalia/help/content/po/ky/config.po | 4 ++--
src/vidalia/help/content/po/ky/index.po | 4 ++--
src/vidalia/help/content/po/ky/links.po | 4 ++--
src/vidalia/help/content/po/ky/log.po | 4 ++--
src/vidalia/help/content/po/ky/netview.po | 4 ++--
src/vidalia/help/content/po/ky/running.po | 4 ++--
src/vidalia/help/content/po/ky/server.po | 4 ++--
src/vidalia/help/content/po/ky/services.po | 4 ++--
src/vidalia/help/content/po/ky/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/lb/config.po | 4 ++--
src/vidalia/help/content/po/lb/index.po | 4 ++--
src/vidalia/help/content/po/lb/links.po | 4 ++--
src/vidalia/help/content/po/lb/log.po | 4 ++--
src/vidalia/help/content/po/lb/running.po | 4 ++--
src/vidalia/help/content/po/lb/server.po | 4 ++--
src/vidalia/help/content/po/lb/services.po | 4 ++--
src/vidalia/help/content/po/lb/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/lg/bridges.po | 4 ++--
src/vidalia/help/content/po/lg/config.po | 4 ++--
src/vidalia/help/content/po/lg/index.po | 4 ++--
src/vidalia/help/content/po/lg/links.po | 4 ++--
src/vidalia/help/content/po/lg/log.po | 4 ++--
src/vidalia/help/content/po/lg/netview.po | 4 ++--
src/vidalia/help/content/po/lg/running.po | 4 ++--
src/vidalia/help/content/po/lg/server.po | 4 ++--
src/vidalia/help/content/po/lg/services.po | 4 ++--
src/vidalia/help/content/po/lg/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ln/config.po | 4 ++--
src/vidalia/help/content/po/ln/index.po | 4 ++--
src/vidalia/help/content/po/ln/links.po | 4 ++--
src/vidalia/help/content/po/ln/log.po | 4 ++--
src/vidalia/help/content/po/ln/running.po | 4 ++--
src/vidalia/help/content/po/ln/server.po | 4 ++--
src/vidalia/help/content/po/ln/services.po | 4 ++--
src/vidalia/help/content/po/ln/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/lo/config.po | 4 ++--
src/vidalia/help/content/po/lo/index.po | 4 ++--
src/vidalia/help/content/po/lo/links.po | 4 ++--
src/vidalia/help/content/po/lo/log.po | 4 ++--
src/vidalia/help/content/po/lo/running.po | 4 ++--
src/vidalia/help/content/po/lo/server.po | 4 ++--
src/vidalia/help/content/po/lo/services.po | 4 ++--
src/vidalia/help/content/po/lo/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/lt/config.po | 4 ++--
src/vidalia/help/content/po/lt/index.po | 4 ++--
src/vidalia/help/content/po/lt/links.po | 4 ++--
src/vidalia/help/content/po/lt/log.po | 4 ++--
src/vidalia/help/content/po/lt/running.po | 4 ++--
src/vidalia/help/content/po/lt/server.po | 4 ++--
src/vidalia/help/content/po/lt/services.po | 4 ++--
src/vidalia/help/content/po/lt/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/lv/config.po | 4 ++--
src/vidalia/help/content/po/lv/index.po | 4 ++--
src/vidalia/help/content/po/lv/links.po | 4 ++--
src/vidalia/help/content/po/lv/log.po | 4 ++--
src/vidalia/help/content/po/lv/running.po | 4 ++--
src/vidalia/help/content/po/lv/server.po | 4 ++--
src/vidalia/help/content/po/lv/services.po | 4 ++--
src/vidalia/help/content/po/lv/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/mg/config.po | 4 ++--
src/vidalia/help/content/po/mg/index.po | 4 ++--
src/vidalia/help/content/po/mg/links.po | 4 ++--
src/vidalia/help/content/po/mg/log.po | 4 ++--
src/vidalia/help/content/po/mg/running.po | 4 ++--
src/vidalia/help/content/po/mg/server.po | 4 ++--
src/vidalia/help/content/po/mg/services.po | 4 ++--
src/vidalia/help/content/po/mg/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/mi/config.po | 4 ++--
src/vidalia/help/content/po/mi/index.po | 4 ++--
src/vidalia/help/content/po/mi/links.po | 4 ++--
src/vidalia/help/content/po/mi/log.po | 4 ++--
src/vidalia/help/content/po/mi/running.po | 4 ++--
src/vidalia/help/content/po/mi/server.po | 4 ++--
src/vidalia/help/content/po/mi/services.po | 4 ++--
src/vidalia/help/content/po/mi/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/mk/config.po | 4 ++--
src/vidalia/help/content/po/mk/index.po | 4 ++--
src/vidalia/help/content/po/mk/links.po | 4 ++--
src/vidalia/help/content/po/mk/log.po | 4 ++--
src/vidalia/help/content/po/mk/running.po | 4 ++--
src/vidalia/help/content/po/mk/server.po | 4 ++--
src/vidalia/help/content/po/mk/services.po | 4 ++--
src/vidalia/help/content/po/mk/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ml/config.po | 4 ++--
src/vidalia/help/content/po/ml/index.po | 4 ++--
src/vidalia/help/content/po/ml/links.po | 4 ++--
src/vidalia/help/content/po/ml/log.po | 4 ++--
src/vidalia/help/content/po/ml/running.po | 4 ++--
src/vidalia/help/content/po/ml/server.po | 4 ++--
src/vidalia/help/content/po/ml/services.po | 4 ++--
src/vidalia/help/content/po/ml/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/mn/config.po | 4 ++--
src/vidalia/help/content/po/mn/index.po | 4 ++--
src/vidalia/help/content/po/mn/links.po | 4 ++--
src/vidalia/help/content/po/mn/log.po | 4 ++--
src/vidalia/help/content/po/mn/running.po | 4 ++--
src/vidalia/help/content/po/mn/server.po | 4 ++--
src/vidalia/help/content/po/mn/services.po | 4 ++--
src/vidalia/help/content/po/mn/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/mr/config.po | 4 ++--
src/vidalia/help/content/po/mr/index.po | 4 ++--
src/vidalia/help/content/po/mr/links.po | 4 ++--
src/vidalia/help/content/po/mr/log.po | 4 ++--
src/vidalia/help/content/po/mr/running.po | 4 ++--
src/vidalia/help/content/po/mr/server.po | 4 ++--
src/vidalia/help/content/po/mr/services.po | 4 ++--
src/vidalia/help/content/po/mr/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ms/config.po | 4 ++--
src/vidalia/help/content/po/ms/index.po | 4 ++--
src/vidalia/help/content/po/ms/links.po | 4 ++--
src/vidalia/help/content/po/ms/log.po | 4 ++--
src/vidalia/help/content/po/ms/running.po | 4 ++--
src/vidalia/help/content/po/ms/server.po | 4 ++--
src/vidalia/help/content/po/ms/services.po | 4 ++--
src/vidalia/help/content/po/ms/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/mt/config.po | 4 ++--
src/vidalia/help/content/po/mt/index.po | 4 ++--
src/vidalia/help/content/po/mt/links.po | 4 ++--
src/vidalia/help/content/po/mt/log.po | 4 ++--
src/vidalia/help/content/po/mt/running.po | 4 ++--
src/vidalia/help/content/po/mt/server.po | 4 ++--
src/vidalia/help/content/po/mt/services.po | 4 ++--
src/vidalia/help/content/po/mt/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/my/config.po | 4 ++--
src/vidalia/help/content/po/my/index.po | 4 ++--
src/vidalia/help/content/po/my/links.po | 4 ++--
src/vidalia/help/content/po/my/log.po | 4 ++--
src/vidalia/help/content/po/my/netview.po | 4 ++--
src/vidalia/help/content/po/my/running.po | 4 ++--
src/vidalia/help/content/po/my/server.po | 4 ++--
src/vidalia/help/content/po/my/services.po | 4 ++--
src/vidalia/help/content/po/my/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/nah/bridges.po | 4 ++--
src/vidalia/help/content/po/nah/config.po | 4 ++--
src/vidalia/help/content/po/nah/index.po | 4 ++--
src/vidalia/help/content/po/nah/links.po | 4 ++--
src/vidalia/help/content/po/nah/log.po | 4 ++--
src/vidalia/help/content/po/nah/netview.po | 4 ++--
src/vidalia/help/content/po/nah/running.po | 4 ++--
src/vidalia/help/content/po/nah/server.po | 4 ++--
src/vidalia/help/content/po/nah/services.po | 4 ++--
src/vidalia/help/content/po/nah/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/nap/config.po | 4 ++--
src/vidalia/help/content/po/nap/index.po | 4 ++--
src/vidalia/help/content/po/nap/links.po | 4 ++--
src/vidalia/help/content/po/nap/log.po | 4 ++--
src/vidalia/help/content/po/nap/running.po | 4 ++--
src/vidalia/help/content/po/nap/server.po | 4 ++--
src/vidalia/help/content/po/nap/services.po | 4 ++--
src/vidalia/help/content/po/nap/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/nb/config.po | 4 ++--
src/vidalia/help/content/po/nb/index.po | 4 ++--
src/vidalia/help/content/po/nb/links.po | 4 ++--
src/vidalia/help/content/po/nb/log.po | 4 ++--
src/vidalia/help/content/po/nb/running.po | 4 ++--
src/vidalia/help/content/po/nb/server.po | 4 ++--
src/vidalia/help/content/po/nb/services.po | 4 ++--
src/vidalia/help/content/po/nb/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ne/config.po | 4 ++--
src/vidalia/help/content/po/ne/index.po | 4 ++--
src/vidalia/help/content/po/ne/links.po | 4 ++--
src/vidalia/help/content/po/ne/log.po | 4 ++--
src/vidalia/help/content/po/ne/running.po | 4 ++--
src/vidalia/help/content/po/ne/server.po | 4 ++--
src/vidalia/help/content/po/ne/services.po | 4 ++--
src/vidalia/help/content/po/ne/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/nl/config.po | 4 ++--
src/vidalia/help/content/po/nl/index.po | 4 ++--
src/vidalia/help/content/po/nl/links.po | 4 ++--
src/vidalia/help/content/po/nl/log.po | 4 ++--
src/vidalia/help/content/po/nl/running.po | 4 ++--
src/vidalia/help/content/po/nl/server.po | 4 ++--
src/vidalia/help/content/po/nl/services.po | 4 ++--
src/vidalia/help/content/po/nl/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/nn/config.po | 4 ++--
src/vidalia/help/content/po/nn/index.po | 4 ++--
src/vidalia/help/content/po/nn/links.po | 4 ++--
src/vidalia/help/content/po/nn/log.po | 4 ++--
src/vidalia/help/content/po/nn/running.po | 4 ++--
src/vidalia/help/content/po/nn/server.po | 4 ++--
src/vidalia/help/content/po/nn/services.po | 4 ++--
src/vidalia/help/content/po/nn/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/nso/config.po | 4 ++--
src/vidalia/help/content/po/nso/index.po | 4 ++--
src/vidalia/help/content/po/nso/links.po | 4 ++--
src/vidalia/help/content/po/nso/log.po | 4 ++--
src/vidalia/help/content/po/nso/running.po | 4 ++--
src/vidalia/help/content/po/nso/server.po | 4 ++--
src/vidalia/help/content/po/nso/services.po | 4 ++--
src/vidalia/help/content/po/nso/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/oc/config.po | 4 ++--
src/vidalia/help/content/po/oc/index.po | 4 ++--
src/vidalia/help/content/po/oc/links.po | 4 ++--
src/vidalia/help/content/po/oc/log.po | 4 ++--
src/vidalia/help/content/po/oc/running.po | 4 ++--
src/vidalia/help/content/po/oc/server.po | 4 ++--
src/vidalia/help/content/po/oc/services.po | 4 ++--
src/vidalia/help/content/po/oc/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/or/bridges.po | 4 ++--
src/vidalia/help/content/po/or/config.po | 4 ++--
src/vidalia/help/content/po/or/index.po | 4 ++--
src/vidalia/help/content/po/or/links.po | 4 ++--
src/vidalia/help/content/po/or/log.po | 4 ++--
src/vidalia/help/content/po/or/netview.po | 4 ++--
src/vidalia/help/content/po/or/running.po | 4 ++--
src/vidalia/help/content/po/or/server.po | 4 ++--
src/vidalia/help/content/po/or/services.po | 4 ++--
src/vidalia/help/content/po/or/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/pa/config.po | 4 ++--
src/vidalia/help/content/po/pa/index.po | 4 ++--
src/vidalia/help/content/po/pa/links.po | 4 ++--
src/vidalia/help/content/po/pa/log.po | 4 ++--
src/vidalia/help/content/po/pa/running.po | 4 ++--
src/vidalia/help/content/po/pa/server.po | 4 ++--
src/vidalia/help/content/po/pa/services.po | 4 ++--
src/vidalia/help/content/po/pa/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/pap/config.po | 4 ++--
src/vidalia/help/content/po/pap/index.po | 4 ++--
src/vidalia/help/content/po/pap/links.po | 4 ++--
src/vidalia/help/content/po/pap/log.po | 4 ++--
src/vidalia/help/content/po/pap/running.po | 4 ++--
src/vidalia/help/content/po/pap/server.po | 4 ++--
src/vidalia/help/content/po/pap/services.po | 4 ++--
src/vidalia/help/content/po/pap/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/pl/config.po | 4 ++--
src/vidalia/help/content/po/pl/index.po | 4 ++--
src/vidalia/help/content/po/pl/links.po | 4 ++--
src/vidalia/help/content/po/pl/log.po | 4 ++--
src/vidalia/help/content/po/pl/running.po | 4 ++--
src/vidalia/help/content/po/pl/server.po | 4 ++--
src/vidalia/help/content/po/pl/services.po | 4 ++--
src/vidalia/help/content/po/pl/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/pms/config.po | 4 ++--
src/vidalia/help/content/po/pms/index.po | 4 ++--
src/vidalia/help/content/po/pms/links.po | 4 ++--
src/vidalia/help/content/po/pms/log.po | 4 ++--
src/vidalia/help/content/po/pms/running.po | 4 ++--
src/vidalia/help/content/po/pms/server.po | 4 ++--
src/vidalia/help/content/po/pms/services.po | 4 ++--
src/vidalia/help/content/po/pms/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ps/config.po | 4 ++--
src/vidalia/help/content/po/ps/index.po | 4 ++--
src/vidalia/help/content/po/ps/links.po | 4 ++--
src/vidalia/help/content/po/ps/log.po | 4 ++--
src/vidalia/help/content/po/ps/running.po | 4 ++--
src/vidalia/help/content/po/ps/server.po | 4 ++--
src/vidalia/help/content/po/ps/services.po | 4 ++--
src/vidalia/help/content/po/ps/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/pt/config.po | 4 ++--
src/vidalia/help/content/po/pt/index.po | 4 ++--
src/vidalia/help/content/po/pt/links.po | 4 ++--
src/vidalia/help/content/po/pt/log.po | 4 ++--
src/vidalia/help/content/po/pt/running.po | 4 ++--
src/vidalia/help/content/po/pt/server.po | 4 ++--
src/vidalia/help/content/po/pt/services.po | 4 ++--
src/vidalia/help/content/po/pt/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/pt_BR/config.po | 4 ++--
src/vidalia/help/content/po/pt_BR/index.po | 4 ++--
src/vidalia/help/content/po/pt_BR/links.po | 4 ++--
src/vidalia/help/content/po/pt_BR/log.po | 4 ++--
src/vidalia/help/content/po/pt_BR/running.po | 4 ++--
src/vidalia/help/content/po/pt_BR/server.po | 4 ++--
src/vidalia/help/content/po/pt_BR/services.po | 4 ++--
.../help/content/po/pt_BR/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ro/config.po | 4 ++--
src/vidalia/help/content/po/ro/index.po | 4 ++--
src/vidalia/help/content/po/ro/links.po | 4 ++--
src/vidalia/help/content/po/ro/log.po | 4 ++--
src/vidalia/help/content/po/ro/running.po | 4 ++--
src/vidalia/help/content/po/ro/server.po | 4 ++--
src/vidalia/help/content/po/ro/services.po | 4 ++--
src/vidalia/help/content/po/ro/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ru/config.po | 4 ++--
src/vidalia/help/content/po/ru/index.po | 4 ++--
src/vidalia/help/content/po/ru/links.po | 4 ++--
src/vidalia/help/content/po/ru/log.po | 4 ++--
src/vidalia/help/content/po/ru/netview.po | 4 ++--
src/vidalia/help/content/po/ru/running.po | 4 ++--
src/vidalia/help/content/po/ru/server.po | 4 ++--
src/vidalia/help/content/po/ru/services.po | 4 ++--
src/vidalia/help/content/po/ru/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/sco/config.po | 4 ++--
src/vidalia/help/content/po/sco/index.po | 4 ++--
src/vidalia/help/content/po/sco/links.po | 4 ++--
src/vidalia/help/content/po/sco/log.po | 4 ++--
src/vidalia/help/content/po/sco/running.po | 4 ++--
src/vidalia/help/content/po/sco/server.po | 4 ++--
src/vidalia/help/content/po/sco/services.po | 4 ++--
src/vidalia/help/content/po/sco/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/sk/bridges.po | 4 ++--
src/vidalia/help/content/po/sk/config.po | 4 ++--
src/vidalia/help/content/po/sk/index.po | 4 ++--
src/vidalia/help/content/po/sk/links.po | 4 ++--
src/vidalia/help/content/po/sk/log.po | 4 ++--
src/vidalia/help/content/po/sk/netview.po | 4 ++--
src/vidalia/help/content/po/sk/running.po | 4 ++--
src/vidalia/help/content/po/sk/server.po | 4 ++--
src/vidalia/help/content/po/sk/services.po | 4 ++--
src/vidalia/help/content/po/sk/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/sl/bridges.po | 4 ++--
src/vidalia/help/content/po/sl/config.po | 4 ++--
src/vidalia/help/content/po/sl/index.po | 4 ++--
src/vidalia/help/content/po/sl/links.po | 4 ++--
src/vidalia/help/content/po/sl/log.po | 4 ++--
src/vidalia/help/content/po/sl/netview.po | 4 ++--
src/vidalia/help/content/po/sl/running.po | 4 ++--
src/vidalia/help/content/po/sl/server.po | 4 ++--
src/vidalia/help/content/po/sl/services.po | 4 ++--
src/vidalia/help/content/po/sl/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/so/bridges.po | 4 ++--
src/vidalia/help/content/po/so/config.po | 4 ++--
src/vidalia/help/content/po/so/index.po | 4 ++--
src/vidalia/help/content/po/so/links.po | 4 ++--
src/vidalia/help/content/po/so/log.po | 4 ++--
src/vidalia/help/content/po/so/netview.po | 4 ++--
src/vidalia/help/content/po/so/running.po | 4 ++--
src/vidalia/help/content/po/so/server.po | 4 ++--
src/vidalia/help/content/po/so/services.po | 4 ++--
src/vidalia/help/content/po/so/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/son/config.po | 4 ++--
src/vidalia/help/content/po/son/index.po | 4 ++--
src/vidalia/help/content/po/son/links.po | 4 ++--
src/vidalia/help/content/po/son/log.po | 4 ++--
src/vidalia/help/content/po/son/running.po | 4 ++--
src/vidalia/help/content/po/son/server.po | 4 ++--
src/vidalia/help/content/po/son/services.po | 4 ++--
src/vidalia/help/content/po/son/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/sq/bridges.po | 4 ++--
src/vidalia/help/content/po/sq/config.po | 4 ++--
src/vidalia/help/content/po/sq/index.po | 4 ++--
src/vidalia/help/content/po/sq/links.po | 4 ++--
src/vidalia/help/content/po/sq/log.po | 4 ++--
src/vidalia/help/content/po/sq/netview.po | 4 ++--
src/vidalia/help/content/po/sq/running.po | 4 ++--
src/vidalia/help/content/po/sq/server.po | 4 ++--
src/vidalia/help/content/po/sq/services.po | 4 ++--
src/vidalia/help/content/po/sq/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/sr/bridges.po | 4 ++--
src/vidalia/help/content/po/sr/config.po | 4 ++--
src/vidalia/help/content/po/sr/index.po | 4 ++--
src/vidalia/help/content/po/sr/links.po | 4 ++--
src/vidalia/help/content/po/sr/log.po | 4 ++--
src/vidalia/help/content/po/sr/netview.po | 4 ++--
src/vidalia/help/content/po/sr/running.po | 4 ++--
src/vidalia/help/content/po/sr/server.po | 4 ++--
src/vidalia/help/content/po/sr/services.po | 4 ++--
src/vidalia/help/content/po/sr/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/st/bridges.po | 4 ++--
src/vidalia/help/content/po/st/config.po | 4 ++--
src/vidalia/help/content/po/st/index.po | 4 ++--
src/vidalia/help/content/po/st/links.po | 4 ++--
src/vidalia/help/content/po/st/log.po | 4 ++--
src/vidalia/help/content/po/st/netview.po | 4 ++--
src/vidalia/help/content/po/st/running.po | 4 ++--
src/vidalia/help/content/po/st/server.po | 4 ++--
src/vidalia/help/content/po/st/services.po | 4 ++--
src/vidalia/help/content/po/st/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/su/config.po | 4 ++--
src/vidalia/help/content/po/su/index.po | 4 ++--
src/vidalia/help/content/po/su/links.po | 4 ++--
src/vidalia/help/content/po/su/log.po | 4 ++--
src/vidalia/help/content/po/su/running.po | 4 ++--
src/vidalia/help/content/po/su/server.po | 4 ++--
src/vidalia/help/content/po/su/services.po | 4 ++--
src/vidalia/help/content/po/su/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/sv/bridges.po | 4 ++--
src/vidalia/help/content/po/sv/config.po | 4 ++--
src/vidalia/help/content/po/sv/index.po | 4 ++--
src/vidalia/help/content/po/sv/links.po | 4 ++--
src/vidalia/help/content/po/sv/log.po | 4 ++--
src/vidalia/help/content/po/sv/netview.po | 4 ++--
src/vidalia/help/content/po/sv/running.po | 4 ++--
src/vidalia/help/content/po/sv/server.po | 4 ++--
src/vidalia/help/content/po/sv/services.po | 4 ++--
src/vidalia/help/content/po/sv/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/sw/config.po | 4 ++--
src/vidalia/help/content/po/sw/index.po | 4 ++--
src/vidalia/help/content/po/sw/links.po | 4 ++--
src/vidalia/help/content/po/sw/log.po | 4 ++--
src/vidalia/help/content/po/sw/running.po | 4 ++--
src/vidalia/help/content/po/sw/server.po | 4 ++--
src/vidalia/help/content/po/sw/services.po | 4 ++--
src/vidalia/help/content/po/sw/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ta/config.po | 4 ++--
src/vidalia/help/content/po/ta/index.po | 4 ++--
src/vidalia/help/content/po/ta/links.po | 4 ++--
src/vidalia/help/content/po/ta/log.po | 4 ++--
src/vidalia/help/content/po/ta/running.po | 4 ++--
src/vidalia/help/content/po/ta/server.po | 4 ++--
src/vidalia/help/content/po/ta/services.po | 4 ++--
src/vidalia/help/content/po/ta/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/te/config.po | 4 ++--
src/vidalia/help/content/po/te/index.po | 4 ++--
src/vidalia/help/content/po/te/links.po | 4 ++--
src/vidalia/help/content/po/te/log.po | 4 ++--
src/vidalia/help/content/po/te/running.po | 4 ++--
src/vidalia/help/content/po/te/server.po | 4 ++--
src/vidalia/help/content/po/te/services.po | 4 ++--
src/vidalia/help/content/po/te/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/tg/config.po | 4 ++--
src/vidalia/help/content/po/tg/index.po | 4 ++--
src/vidalia/help/content/po/tg/links.po | 4 ++--
src/vidalia/help/content/po/tg/log.po | 4 ++--
src/vidalia/help/content/po/tg/running.po | 4 ++--
src/vidalia/help/content/po/tg/server.po | 4 ++--
src/vidalia/help/content/po/tg/services.po | 4 ++--
src/vidalia/help/content/po/tg/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/th/config.po | 4 ++--
src/vidalia/help/content/po/th/index.po | 4 ++--
src/vidalia/help/content/po/th/links.po | 4 ++--
src/vidalia/help/content/po/th/log.po | 4 ++--
src/vidalia/help/content/po/th/running.po | 4 ++--
src/vidalia/help/content/po/th/server.po | 4 ++--
src/vidalia/help/content/po/th/services.po | 4 ++--
src/vidalia/help/content/po/th/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ti/config.po | 4 ++--
src/vidalia/help/content/po/ti/index.po | 4 ++--
src/vidalia/help/content/po/ti/links.po | 4 ++--
src/vidalia/help/content/po/ti/log.po | 4 ++--
src/vidalia/help/content/po/ti/running.po | 4 ++--
src/vidalia/help/content/po/ti/server.po | 4 ++--
src/vidalia/help/content/po/ti/services.po | 4 ++--
src/vidalia/help/content/po/ti/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/tk/config.po | 4 ++--
src/vidalia/help/content/po/tk/index.po | 4 ++--
src/vidalia/help/content/po/tk/links.po | 4 ++--
src/vidalia/help/content/po/tk/log.po | 4 ++--
src/vidalia/help/content/po/tk/running.po | 4 ++--
src/vidalia/help/content/po/tk/server.po | 4 ++--
src/vidalia/help/content/po/tk/services.po | 4 ++--
src/vidalia/help/content/po/tk/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/tr/index.po | 4 ++--
src/vidalia/help/content/po/tr/links.po | 4 ++--
src/vidalia/help/content/po/tr/log.po | 4 ++--
src/vidalia/help/content/po/tr/running.po | 4 ++--
src/vidalia/help/content/po/tr/server.po | 4 ++--
src/vidalia/help/content/po/tr/services.po | 4 ++--
src/vidalia/help/content/po/tr/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/uk/config.po | 4 ++--
src/vidalia/help/content/po/uk/index.po | 4 ++--
src/vidalia/help/content/po/uk/links.po | 4 ++--
src/vidalia/help/content/po/uk/log.po | 4 ++--
src/vidalia/help/content/po/uk/running.po | 4 ++--
src/vidalia/help/content/po/uk/server.po | 4 ++--
src/vidalia/help/content/po/uk/services.po | 4 ++--
src/vidalia/help/content/po/uk/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ur/config.po | 4 ++--
src/vidalia/help/content/po/ur/index.po | 4 ++--
src/vidalia/help/content/po/ur/links.po | 4 ++--
src/vidalia/help/content/po/ur/log.po | 4 ++--
src/vidalia/help/content/po/ur/running.po | 4 ++--
src/vidalia/help/content/po/ur/server.po | 4 ++--
src/vidalia/help/content/po/ur/services.po | 4 ++--
src/vidalia/help/content/po/ur/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/ve/config.po | 4 ++--
src/vidalia/help/content/po/ve/index.po | 4 ++--
src/vidalia/help/content/po/ve/links.po | 4 ++--
src/vidalia/help/content/po/ve/log.po | 4 ++--
src/vidalia/help/content/po/ve/running.po | 4 ++--
src/vidalia/help/content/po/ve/server.po | 4 ++--
src/vidalia/help/content/po/ve/services.po | 4 ++--
src/vidalia/help/content/po/ve/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/vi/config.po | 4 ++--
src/vidalia/help/content/po/vi/index.po | 4 ++--
src/vidalia/help/content/po/vi/links.po | 4 ++--
src/vidalia/help/content/po/vi/log.po | 4 ++--
src/vidalia/help/content/po/vi/running.po | 4 ++--
src/vidalia/help/content/po/vi/server.po | 4 ++--
src/vidalia/help/content/po/vi/services.po | 4 ++--
src/vidalia/help/content/po/vi/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/wa/config.po | 4 ++--
src/vidalia/help/content/po/wa/index.po | 4 ++--
src/vidalia/help/content/po/wa/links.po | 4 ++--
src/vidalia/help/content/po/wa/log.po | 4 ++--
src/vidalia/help/content/po/wa/running.po | 4 ++--
src/vidalia/help/content/po/wa/server.po | 4 ++--
src/vidalia/help/content/po/wa/services.po | 4 ++--
src/vidalia/help/content/po/wa/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/wo/bridges.po | 4 ++--
src/vidalia/help/content/po/wo/config.po | 4 ++--
src/vidalia/help/content/po/wo/index.po | 4 ++--
src/vidalia/help/content/po/wo/links.po | 4 ++--
src/vidalia/help/content/po/wo/log.po | 4 ++--
src/vidalia/help/content/po/wo/netview.po | 4 ++--
src/vidalia/help/content/po/wo/running.po | 4 ++--
src/vidalia/help/content/po/wo/server.po | 4 ++--
src/vidalia/help/content/po/wo/services.po | 4 ++--
src/vidalia/help/content/po/wo/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/zh_CN/config.po | 4 ++--
src/vidalia/help/content/po/zh_CN/index.po | 4 ++--
src/vidalia/help/content/po/zh_CN/links.po | 4 ++--
src/vidalia/help/content/po/zh_CN/log.po | 4 ++--
src/vidalia/help/content/po/zh_CN/running.po | 4 ++--
src/vidalia/help/content/po/zh_CN/server.po | 4 ++--
src/vidalia/help/content/po/zh_CN/services.po | 4 ++--
.../help/content/po/zh_CN/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/zh_HK/config.po | 4 ++--
src/vidalia/help/content/po/zh_HK/index.po | 4 ++--
src/vidalia/help/content/po/zh_HK/links.po | 4 ++--
src/vidalia/help/content/po/zh_HK/log.po | 4 ++--
src/vidalia/help/content/po/zh_HK/running.po | 4 ++--
src/vidalia/help/content/po/zh_HK/server.po | 4 ++--
src/vidalia/help/content/po/zh_HK/services.po | 4 ++--
.../help/content/po/zh_HK/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/zh_TW/config.po | 4 ++--
src/vidalia/help/content/po/zh_TW/index.po | 4 ++--
src/vidalia/help/content/po/zh_TW/links.po | 4 ++--
src/vidalia/help/content/po/zh_TW/log.po | 4 ++--
src/vidalia/help/content/po/zh_TW/running.po | 4 ++--
src/vidalia/help/content/po/zh_TW/server.po | 4 ++--
src/vidalia/help/content/po/zh_TW/services.po | 4 ++--
.../help/content/po/zh_TW/troubleshooting.po | 4 ++--
src/vidalia/help/content/po/zu/config.po | 4 ++--
src/vidalia/help/content/po/zu/index.po | 4 ++--
src/vidalia/help/content/po/zu/links.po | 4 ++--
src/vidalia/help/content/po/zu/log.po | 4 ++--
src/vidalia/help/content/po/zu/running.po | 4 ++--
src/vidalia/help/content/po/zu/server.po | 4 ++--
src/vidalia/help/content/po/zu/services.po | 4 ++--
src/vidalia/help/content/po/zu/troubleshooting.po | 4 ++--
1005 files changed, 2010 insertions(+), 2010 deletions(-)
diff --git a/src/vidalia/help/content/po/af/config.po b/src/vidalia/help/content/po/af/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/af/config.po
+++ b/src/vidalia/help/content/po/af/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/af/index.po b/src/vidalia/help/content/po/af/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/af/index.po
+++ b/src/vidalia/help/content/po/af/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/af/links.po b/src/vidalia/help/content/po/af/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/af/links.po
+++ b/src/vidalia/help/content/po/af/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/af/log.po b/src/vidalia/help/content/po/af/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/af/log.po
+++ b/src/vidalia/help/content/po/af/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/af/running.po b/src/vidalia/help/content/po/af/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/af/running.po
+++ b/src/vidalia/help/content/po/af/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/af/server.po b/src/vidalia/help/content/po/af/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/af/server.po
+++ b/src/vidalia/help/content/po/af/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/af/services.po b/src/vidalia/help/content/po/af/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/af/services.po
+++ b/src/vidalia/help/content/po/af/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/af/troubleshooting.po b/src/vidalia/help/content/po/af/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/af/troubleshooting.po
+++ b/src/vidalia/help/content/po/af/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ak/config.po b/src/vidalia/help/content/po/ak/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ak/config.po
+++ b/src/vidalia/help/content/po/ak/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ak/index.po b/src/vidalia/help/content/po/ak/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ak/index.po
+++ b/src/vidalia/help/content/po/ak/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ak/links.po b/src/vidalia/help/content/po/ak/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ak/links.po
+++ b/src/vidalia/help/content/po/ak/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ak/log.po b/src/vidalia/help/content/po/ak/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ak/log.po
+++ b/src/vidalia/help/content/po/ak/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ak/running.po b/src/vidalia/help/content/po/ak/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ak/running.po
+++ b/src/vidalia/help/content/po/ak/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ak/server.po b/src/vidalia/help/content/po/ak/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ak/server.po
+++ b/src/vidalia/help/content/po/ak/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ak/services.po b/src/vidalia/help/content/po/ak/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ak/services.po
+++ b/src/vidalia/help/content/po/ak/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ak/troubleshooting.po b/src/vidalia/help/content/po/ak/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ak/troubleshooting.po
+++ b/src/vidalia/help/content/po/ak/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/am/config.po b/src/vidalia/help/content/po/am/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/am/config.po
+++ b/src/vidalia/help/content/po/am/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/am/index.po b/src/vidalia/help/content/po/am/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/am/index.po
+++ b/src/vidalia/help/content/po/am/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/am/links.po b/src/vidalia/help/content/po/am/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/am/links.po
+++ b/src/vidalia/help/content/po/am/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/am/log.po b/src/vidalia/help/content/po/am/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/am/log.po
+++ b/src/vidalia/help/content/po/am/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/am/running.po b/src/vidalia/help/content/po/am/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/am/running.po
+++ b/src/vidalia/help/content/po/am/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/am/server.po b/src/vidalia/help/content/po/am/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/am/server.po
+++ b/src/vidalia/help/content/po/am/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/am/services.po b/src/vidalia/help/content/po/am/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/am/services.po
+++ b/src/vidalia/help/content/po/am/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/am/troubleshooting.po b/src/vidalia/help/content/po/am/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/am/troubleshooting.po
+++ b/src/vidalia/help/content/po/am/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ar/index.po b/src/vidalia/help/content/po/ar/index.po
index f45b54a..934aa12 100644
--- a/src/vidalia/help/content/po/ar/index.po
+++ b/src/vidalia/help/content/po/ar/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ar/links.po b/src/vidalia/help/content/po/ar/links.po
index 97a895e..2e028ae 100644
--- a/src/vidalia/help/content/po/ar/links.po
+++ b/src/vidalia/help/content/po/ar/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ar/log.po b/src/vidalia/help/content/po/ar/log.po
index d3486c2..ca4d354 100644
--- a/src/vidalia/help/content/po/ar/log.po
+++ b/src/vidalia/help/content/po/ar/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ar/netview.po b/src/vidalia/help/content/po/ar/netview.po
index 9c06890..7ff8e18 100644
--- a/src/vidalia/help/content/po/ar/netview.po
+++ b/src/vidalia/help/content/po/ar/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ar/running.po b/src/vidalia/help/content/po/ar/running.po
index c98a05e..9f0cc52 100644
--- a/src/vidalia/help/content/po/ar/running.po
+++ b/src/vidalia/help/content/po/ar/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ar/server.po b/src/vidalia/help/content/po/ar/server.po
index 10110bb..24a82a0 100644
--- a/src/vidalia/help/content/po/ar/server.po
+++ b/src/vidalia/help/content/po/ar/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ar/services.po b/src/vidalia/help/content/po/ar/services.po
index e917c81..b63f2a8 100644
--- a/src/vidalia/help/content/po/ar/services.po
+++ b/src/vidalia/help/content/po/ar/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ar/troubleshooting.po b/src/vidalia/help/content/po/ar/troubleshooting.po
index fcc2278..d4af559 100644
--- a/src/vidalia/help/content/po/ar/troubleshooting.po
+++ b/src/vidalia/help/content/po/ar/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/arn/config.po b/src/vidalia/help/content/po/arn/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/arn/config.po
+++ b/src/vidalia/help/content/po/arn/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/arn/index.po b/src/vidalia/help/content/po/arn/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/arn/index.po
+++ b/src/vidalia/help/content/po/arn/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/arn/links.po b/src/vidalia/help/content/po/arn/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/arn/links.po
+++ b/src/vidalia/help/content/po/arn/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/arn/log.po b/src/vidalia/help/content/po/arn/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/arn/log.po
+++ b/src/vidalia/help/content/po/arn/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/arn/running.po b/src/vidalia/help/content/po/arn/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/arn/running.po
+++ b/src/vidalia/help/content/po/arn/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/arn/server.po b/src/vidalia/help/content/po/arn/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/arn/server.po
+++ b/src/vidalia/help/content/po/arn/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/arn/services.po b/src/vidalia/help/content/po/arn/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/arn/services.po
+++ b/src/vidalia/help/content/po/arn/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/arn/troubleshooting.po b/src/vidalia/help/content/po/arn/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/arn/troubleshooting.po
+++ b/src/vidalia/help/content/po/arn/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ast/config.po b/src/vidalia/help/content/po/ast/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ast/config.po
+++ b/src/vidalia/help/content/po/ast/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ast/index.po b/src/vidalia/help/content/po/ast/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ast/index.po
+++ b/src/vidalia/help/content/po/ast/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ast/links.po b/src/vidalia/help/content/po/ast/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ast/links.po
+++ b/src/vidalia/help/content/po/ast/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ast/log.po b/src/vidalia/help/content/po/ast/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ast/log.po
+++ b/src/vidalia/help/content/po/ast/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ast/running.po b/src/vidalia/help/content/po/ast/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ast/running.po
+++ b/src/vidalia/help/content/po/ast/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ast/server.po b/src/vidalia/help/content/po/ast/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ast/server.po
+++ b/src/vidalia/help/content/po/ast/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ast/services.po b/src/vidalia/help/content/po/ast/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ast/services.po
+++ b/src/vidalia/help/content/po/ast/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ast/troubleshooting.po b/src/vidalia/help/content/po/ast/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ast/troubleshooting.po
+++ b/src/vidalia/help/content/po/ast/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/az/config.po b/src/vidalia/help/content/po/az/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/az/config.po
+++ b/src/vidalia/help/content/po/az/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/az/index.po b/src/vidalia/help/content/po/az/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/az/index.po
+++ b/src/vidalia/help/content/po/az/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/az/links.po b/src/vidalia/help/content/po/az/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/az/links.po
+++ b/src/vidalia/help/content/po/az/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/az/log.po b/src/vidalia/help/content/po/az/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/az/log.po
+++ b/src/vidalia/help/content/po/az/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/az/running.po b/src/vidalia/help/content/po/az/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/az/running.po
+++ b/src/vidalia/help/content/po/az/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/az/server.po b/src/vidalia/help/content/po/az/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/az/server.po
+++ b/src/vidalia/help/content/po/az/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/az/services.po b/src/vidalia/help/content/po/az/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/az/services.po
+++ b/src/vidalia/help/content/po/az/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/az/troubleshooting.po b/src/vidalia/help/content/po/az/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/az/troubleshooting.po
+++ b/src/vidalia/help/content/po/az/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/be/config.po b/src/vidalia/help/content/po/be/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/be/config.po
+++ b/src/vidalia/help/content/po/be/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/be/index.po b/src/vidalia/help/content/po/be/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/be/index.po
+++ b/src/vidalia/help/content/po/be/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/be/links.po b/src/vidalia/help/content/po/be/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/be/links.po
+++ b/src/vidalia/help/content/po/be/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/be/log.po b/src/vidalia/help/content/po/be/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/be/log.po
+++ b/src/vidalia/help/content/po/be/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/be/running.po b/src/vidalia/help/content/po/be/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/be/running.po
+++ b/src/vidalia/help/content/po/be/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/be/server.po b/src/vidalia/help/content/po/be/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/be/server.po
+++ b/src/vidalia/help/content/po/be/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/be/services.po b/src/vidalia/help/content/po/be/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/be/services.po
+++ b/src/vidalia/help/content/po/be/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/be/troubleshooting.po b/src/vidalia/help/content/po/be/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/be/troubleshooting.po
+++ b/src/vidalia/help/content/po/be/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bg/config.po b/src/vidalia/help/content/po/bg/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/bg/config.po
+++ b/src/vidalia/help/content/po/bg/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bg/index.po b/src/vidalia/help/content/po/bg/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/bg/index.po
+++ b/src/vidalia/help/content/po/bg/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bg/links.po b/src/vidalia/help/content/po/bg/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/bg/links.po
+++ b/src/vidalia/help/content/po/bg/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bg/log.po b/src/vidalia/help/content/po/bg/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/bg/log.po
+++ b/src/vidalia/help/content/po/bg/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bg/running.po b/src/vidalia/help/content/po/bg/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/bg/running.po
+++ b/src/vidalia/help/content/po/bg/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bg/server.po b/src/vidalia/help/content/po/bg/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/bg/server.po
+++ b/src/vidalia/help/content/po/bg/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bg/services.po b/src/vidalia/help/content/po/bg/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/bg/services.po
+++ b/src/vidalia/help/content/po/bg/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bg/troubleshooting.po b/src/vidalia/help/content/po/bg/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/bg/troubleshooting.po
+++ b/src/vidalia/help/content/po/bg/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn/config.po b/src/vidalia/help/content/po/bn/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/bn/config.po
+++ b/src/vidalia/help/content/po/bn/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn/index.po b/src/vidalia/help/content/po/bn/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/bn/index.po
+++ b/src/vidalia/help/content/po/bn/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn/links.po b/src/vidalia/help/content/po/bn/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/bn/links.po
+++ b/src/vidalia/help/content/po/bn/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn/log.po b/src/vidalia/help/content/po/bn/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/bn/log.po
+++ b/src/vidalia/help/content/po/bn/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn/running.po b/src/vidalia/help/content/po/bn/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/bn/running.po
+++ b/src/vidalia/help/content/po/bn/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn/server.po b/src/vidalia/help/content/po/bn/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/bn/server.po
+++ b/src/vidalia/help/content/po/bn/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn/services.po b/src/vidalia/help/content/po/bn/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/bn/services.po
+++ b/src/vidalia/help/content/po/bn/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn/troubleshooting.po b/src/vidalia/help/content/po/bn/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/bn/troubleshooting.po
+++ b/src/vidalia/help/content/po/bn/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn_IN/config.po b/src/vidalia/help/content/po/bn_IN/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/bn_IN/config.po
+++ b/src/vidalia/help/content/po/bn_IN/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn_IN/index.po b/src/vidalia/help/content/po/bn_IN/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/bn_IN/index.po
+++ b/src/vidalia/help/content/po/bn_IN/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn_IN/links.po b/src/vidalia/help/content/po/bn_IN/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/bn_IN/links.po
+++ b/src/vidalia/help/content/po/bn_IN/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn_IN/log.po b/src/vidalia/help/content/po/bn_IN/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/bn_IN/log.po
+++ b/src/vidalia/help/content/po/bn_IN/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn_IN/running.po b/src/vidalia/help/content/po/bn_IN/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/bn_IN/running.po
+++ b/src/vidalia/help/content/po/bn_IN/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn_IN/server.po b/src/vidalia/help/content/po/bn_IN/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/bn_IN/server.po
+++ b/src/vidalia/help/content/po/bn_IN/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn_IN/services.po b/src/vidalia/help/content/po/bn_IN/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/bn_IN/services.po
+++ b/src/vidalia/help/content/po/bn_IN/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bn_IN/troubleshooting.po b/src/vidalia/help/content/po/bn_IN/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/bn_IN/troubleshooting.po
+++ b/src/vidalia/help/content/po/bn_IN/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bo/bridges.po b/src/vidalia/help/content/po/bo/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/bo/bridges.po
+++ b/src/vidalia/help/content/po/bo/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/bo/config.po b/src/vidalia/help/content/po/bo/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/bo/config.po
+++ b/src/vidalia/help/content/po/bo/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bo/index.po b/src/vidalia/help/content/po/bo/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/bo/index.po
+++ b/src/vidalia/help/content/po/bo/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bo/links.po b/src/vidalia/help/content/po/bo/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/bo/links.po
+++ b/src/vidalia/help/content/po/bo/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bo/log.po b/src/vidalia/help/content/po/bo/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/bo/log.po
+++ b/src/vidalia/help/content/po/bo/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bo/netview.po b/src/vidalia/help/content/po/bo/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/bo/netview.po
+++ b/src/vidalia/help/content/po/bo/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bo/running.po b/src/vidalia/help/content/po/bo/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/bo/running.po
+++ b/src/vidalia/help/content/po/bo/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bo/server.po b/src/vidalia/help/content/po/bo/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/bo/server.po
+++ b/src/vidalia/help/content/po/bo/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bo/services.po b/src/vidalia/help/content/po/bo/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/bo/services.po
+++ b/src/vidalia/help/content/po/bo/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bo/troubleshooting.po b/src/vidalia/help/content/po/bo/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/bo/troubleshooting.po
+++ b/src/vidalia/help/content/po/bo/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/br/bridges.po b/src/vidalia/help/content/po/br/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/br/bridges.po
+++ b/src/vidalia/help/content/po/br/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/br/config.po b/src/vidalia/help/content/po/br/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/br/config.po
+++ b/src/vidalia/help/content/po/br/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/br/index.po b/src/vidalia/help/content/po/br/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/br/index.po
+++ b/src/vidalia/help/content/po/br/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/br/links.po b/src/vidalia/help/content/po/br/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/br/links.po
+++ b/src/vidalia/help/content/po/br/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/br/log.po b/src/vidalia/help/content/po/br/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/br/log.po
+++ b/src/vidalia/help/content/po/br/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/br/netview.po b/src/vidalia/help/content/po/br/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/br/netview.po
+++ b/src/vidalia/help/content/po/br/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/br/running.po b/src/vidalia/help/content/po/br/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/br/running.po
+++ b/src/vidalia/help/content/po/br/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/br/server.po b/src/vidalia/help/content/po/br/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/br/server.po
+++ b/src/vidalia/help/content/po/br/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/br/services.po b/src/vidalia/help/content/po/br/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/br/services.po
+++ b/src/vidalia/help/content/po/br/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/br/troubleshooting.po b/src/vidalia/help/content/po/br/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/br/troubleshooting.po
+++ b/src/vidalia/help/content/po/br/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bs/bridges.po b/src/vidalia/help/content/po/bs/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/bs/bridges.po
+++ b/src/vidalia/help/content/po/bs/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/bs/config.po b/src/vidalia/help/content/po/bs/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/bs/config.po
+++ b/src/vidalia/help/content/po/bs/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bs/index.po b/src/vidalia/help/content/po/bs/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/bs/index.po
+++ b/src/vidalia/help/content/po/bs/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bs/links.po b/src/vidalia/help/content/po/bs/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/bs/links.po
+++ b/src/vidalia/help/content/po/bs/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bs/log.po b/src/vidalia/help/content/po/bs/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/bs/log.po
+++ b/src/vidalia/help/content/po/bs/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bs/netview.po b/src/vidalia/help/content/po/bs/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/bs/netview.po
+++ b/src/vidalia/help/content/po/bs/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bs/running.po b/src/vidalia/help/content/po/bs/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/bs/running.po
+++ b/src/vidalia/help/content/po/bs/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bs/server.po b/src/vidalia/help/content/po/bs/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/bs/server.po
+++ b/src/vidalia/help/content/po/bs/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bs/services.po b/src/vidalia/help/content/po/bs/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/bs/services.po
+++ b/src/vidalia/help/content/po/bs/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/bs/troubleshooting.po b/src/vidalia/help/content/po/bs/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/bs/troubleshooting.po
+++ b/src/vidalia/help/content/po/bs/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ca/config.po b/src/vidalia/help/content/po/ca/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ca/config.po
+++ b/src/vidalia/help/content/po/ca/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ca/index.po b/src/vidalia/help/content/po/ca/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ca/index.po
+++ b/src/vidalia/help/content/po/ca/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ca/links.po b/src/vidalia/help/content/po/ca/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ca/links.po
+++ b/src/vidalia/help/content/po/ca/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ca/log.po b/src/vidalia/help/content/po/ca/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ca/log.po
+++ b/src/vidalia/help/content/po/ca/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ca/running.po b/src/vidalia/help/content/po/ca/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ca/running.po
+++ b/src/vidalia/help/content/po/ca/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ca/server.po b/src/vidalia/help/content/po/ca/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ca/server.po
+++ b/src/vidalia/help/content/po/ca/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ca/services.po b/src/vidalia/help/content/po/ca/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ca/services.po
+++ b/src/vidalia/help/content/po/ca/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ca/troubleshooting.po b/src/vidalia/help/content/po/ca/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ca/troubleshooting.po
+++ b/src/vidalia/help/content/po/ca/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cs/config.po b/src/vidalia/help/content/po/cs/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/cs/config.po
+++ b/src/vidalia/help/content/po/cs/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cs/index.po b/src/vidalia/help/content/po/cs/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/cs/index.po
+++ b/src/vidalia/help/content/po/cs/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cs/links.po b/src/vidalia/help/content/po/cs/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/cs/links.po
+++ b/src/vidalia/help/content/po/cs/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cs/log.po b/src/vidalia/help/content/po/cs/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/cs/log.po
+++ b/src/vidalia/help/content/po/cs/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cs/running.po b/src/vidalia/help/content/po/cs/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/cs/running.po
+++ b/src/vidalia/help/content/po/cs/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cs/server.po b/src/vidalia/help/content/po/cs/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/cs/server.po
+++ b/src/vidalia/help/content/po/cs/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cs/services.po b/src/vidalia/help/content/po/cs/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/cs/services.po
+++ b/src/vidalia/help/content/po/cs/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cs/troubleshooting.po b/src/vidalia/help/content/po/cs/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/cs/troubleshooting.po
+++ b/src/vidalia/help/content/po/cs/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/csb/config.po b/src/vidalia/help/content/po/csb/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/csb/config.po
+++ b/src/vidalia/help/content/po/csb/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/csb/index.po b/src/vidalia/help/content/po/csb/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/csb/index.po
+++ b/src/vidalia/help/content/po/csb/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/csb/links.po b/src/vidalia/help/content/po/csb/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/csb/links.po
+++ b/src/vidalia/help/content/po/csb/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/csb/log.po b/src/vidalia/help/content/po/csb/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/csb/log.po
+++ b/src/vidalia/help/content/po/csb/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/csb/running.po b/src/vidalia/help/content/po/csb/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/csb/running.po
+++ b/src/vidalia/help/content/po/csb/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/csb/server.po b/src/vidalia/help/content/po/csb/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/csb/server.po
+++ b/src/vidalia/help/content/po/csb/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/csb/services.po b/src/vidalia/help/content/po/csb/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/csb/services.po
+++ b/src/vidalia/help/content/po/csb/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/csb/troubleshooting.po b/src/vidalia/help/content/po/csb/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/csb/troubleshooting.po
+++ b/src/vidalia/help/content/po/csb/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cy/config.po b/src/vidalia/help/content/po/cy/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/cy/config.po
+++ b/src/vidalia/help/content/po/cy/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cy/index.po b/src/vidalia/help/content/po/cy/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/cy/index.po
+++ b/src/vidalia/help/content/po/cy/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cy/links.po b/src/vidalia/help/content/po/cy/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/cy/links.po
+++ b/src/vidalia/help/content/po/cy/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cy/log.po b/src/vidalia/help/content/po/cy/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/cy/log.po
+++ b/src/vidalia/help/content/po/cy/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cy/running.po b/src/vidalia/help/content/po/cy/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/cy/running.po
+++ b/src/vidalia/help/content/po/cy/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cy/server.po b/src/vidalia/help/content/po/cy/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/cy/server.po
+++ b/src/vidalia/help/content/po/cy/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cy/services.po b/src/vidalia/help/content/po/cy/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/cy/services.po
+++ b/src/vidalia/help/content/po/cy/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/cy/troubleshooting.po b/src/vidalia/help/content/po/cy/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/cy/troubleshooting.po
+++ b/src/vidalia/help/content/po/cy/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/da/bridges.po b/src/vidalia/help/content/po/da/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/da/bridges.po
+++ b/src/vidalia/help/content/po/da/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/da/index.po b/src/vidalia/help/content/po/da/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/da/index.po
+++ b/src/vidalia/help/content/po/da/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/da/links.po b/src/vidalia/help/content/po/da/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/da/links.po
+++ b/src/vidalia/help/content/po/da/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/da/log.po b/src/vidalia/help/content/po/da/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/da/log.po
+++ b/src/vidalia/help/content/po/da/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/da/netview.po b/src/vidalia/help/content/po/da/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/da/netview.po
+++ b/src/vidalia/help/content/po/da/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/da/running.po b/src/vidalia/help/content/po/da/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/da/running.po
+++ b/src/vidalia/help/content/po/da/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/da/server.po b/src/vidalia/help/content/po/da/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/da/server.po
+++ b/src/vidalia/help/content/po/da/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/da/services.po b/src/vidalia/help/content/po/da/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/da/services.po
+++ b/src/vidalia/help/content/po/da/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/da/troubleshooting.po b/src/vidalia/help/content/po/da/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/da/troubleshooting.po
+++ b/src/vidalia/help/content/po/da/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/de/bridges.po b/src/vidalia/help/content/po/de/bridges.po
index 11982c8..a3181cb 100644
--- a/src/vidalia/help/content/po/de/bridges.po
+++ b/src/vidalia/help/content/po/de/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/de/config.po b/src/vidalia/help/content/po/de/config.po
index ca7a1bf..645b291 100644
--- a/src/vidalia/help/content/po/de/config.po
+++ b/src/vidalia/help/content/po/de/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/de/index.po b/src/vidalia/help/content/po/de/index.po
index 482a980..8c031bf 100644
--- a/src/vidalia/help/content/po/de/index.po
+++ b/src/vidalia/help/content/po/de/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/de/links.po b/src/vidalia/help/content/po/de/links.po
index f38afd3..553bffb 100644
--- a/src/vidalia/help/content/po/de/links.po
+++ b/src/vidalia/help/content/po/de/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/de/log.po b/src/vidalia/help/content/po/de/log.po
index 8141fba..7e226bc 100644
--- a/src/vidalia/help/content/po/de/log.po
+++ b/src/vidalia/help/content/po/de/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/de/netview.po b/src/vidalia/help/content/po/de/netview.po
index 74f36bb..cabc87b 100644
--- a/src/vidalia/help/content/po/de/netview.po
+++ b/src/vidalia/help/content/po/de/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/de/running.po b/src/vidalia/help/content/po/de/running.po
index 02e80f4..b73d5d3 100644
--- a/src/vidalia/help/content/po/de/running.po
+++ b/src/vidalia/help/content/po/de/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/de/server.po b/src/vidalia/help/content/po/de/server.po
index ac78df7..b5990dc 100644
--- a/src/vidalia/help/content/po/de/server.po
+++ b/src/vidalia/help/content/po/de/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/de/services.po b/src/vidalia/help/content/po/de/services.po
index a57bd57..115e970 100644
--- a/src/vidalia/help/content/po/de/services.po
+++ b/src/vidalia/help/content/po/de/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/de/troubleshooting.po b/src/vidalia/help/content/po/de/troubleshooting.po
index f74392b..b495396 100644
--- a/src/vidalia/help/content/po/de/troubleshooting.po
+++ b/src/vidalia/help/content/po/de/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/dz/config.po b/src/vidalia/help/content/po/dz/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/dz/config.po
+++ b/src/vidalia/help/content/po/dz/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/dz/index.po b/src/vidalia/help/content/po/dz/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/dz/index.po
+++ b/src/vidalia/help/content/po/dz/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/dz/links.po b/src/vidalia/help/content/po/dz/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/dz/links.po
+++ b/src/vidalia/help/content/po/dz/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/dz/log.po b/src/vidalia/help/content/po/dz/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/dz/log.po
+++ b/src/vidalia/help/content/po/dz/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/dz/running.po b/src/vidalia/help/content/po/dz/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/dz/running.po
+++ b/src/vidalia/help/content/po/dz/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/dz/server.po b/src/vidalia/help/content/po/dz/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/dz/server.po
+++ b/src/vidalia/help/content/po/dz/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/dz/services.po b/src/vidalia/help/content/po/dz/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/dz/services.po
+++ b/src/vidalia/help/content/po/dz/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/dz/troubleshooting.po b/src/vidalia/help/content/po/dz/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/dz/troubleshooting.po
+++ b/src/vidalia/help/content/po/dz/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/el/config.po b/src/vidalia/help/content/po/el/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/el/config.po
+++ b/src/vidalia/help/content/po/el/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/el/index.po b/src/vidalia/help/content/po/el/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/el/index.po
+++ b/src/vidalia/help/content/po/el/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/el/links.po b/src/vidalia/help/content/po/el/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/el/links.po
+++ b/src/vidalia/help/content/po/el/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/el/log.po b/src/vidalia/help/content/po/el/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/el/log.po
+++ b/src/vidalia/help/content/po/el/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/el/running.po b/src/vidalia/help/content/po/el/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/el/running.po
+++ b/src/vidalia/help/content/po/el/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/el/server.po b/src/vidalia/help/content/po/el/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/el/server.po
+++ b/src/vidalia/help/content/po/el/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/el/services.po b/src/vidalia/help/content/po/el/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/el/services.po
+++ b/src/vidalia/help/content/po/el/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/el/troubleshooting.po b/src/vidalia/help/content/po/el/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/el/troubleshooting.po
+++ b/src/vidalia/help/content/po/el/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/en/bridges.po b/src/vidalia/help/content/po/en/bridges.po
index 2eaadbb..1ca7993 100644
--- a/src/vidalia/help/content/po/en/bridges.po
+++ b/src/vidalia/help/content/po/en/bridges.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed by
-## the Vidalia Project at http://www.vidalia-project.net/. No part of
-## Vidalia, including this file, may be copied, modified, propagated, or
+## 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.
##
diff --git a/src/vidalia/help/content/po/en/config.po b/src/vidalia/help/content/po/en/config.po
index d40ebf7..38567ae 100644
--- a/src/vidalia/help/content/po/en/config.po
+++ b/src/vidalia/help/content/po/en/config.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
diff --git a/src/vidalia/help/content/po/en/index.po b/src/vidalia/help/content/po/en/index.po
index 22301d3..05eef92 100644
--- a/src/vidalia/help/content/po/en/index.po
+++ b/src/vidalia/help/content/po/en/index.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
diff --git a/src/vidalia/help/content/po/en/links.po b/src/vidalia/help/content/po/en/links.po
index c9580ad..2b863bf 100644
--- a/src/vidalia/help/content/po/en/links.po
+++ b/src/vidalia/help/content/po/en/links.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
diff --git a/src/vidalia/help/content/po/en/log.po b/src/vidalia/help/content/po/en/log.po
index 737b0da..c035e44 100644
--- a/src/vidalia/help/content/po/en/log.po
+++ b/src/vidalia/help/content/po/en/log.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
diff --git a/src/vidalia/help/content/po/en/netview.po b/src/vidalia/help/content/po/en/netview.po
index 7523f08..30df021 100644
--- a/src/vidalia/help/content/po/en/netview.po
+++ b/src/vidalia/help/content/po/en/netview.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
diff --git a/src/vidalia/help/content/po/en/running.po b/src/vidalia/help/content/po/en/running.po
index 7cd5742..3f8e9d6 100644
--- a/src/vidalia/help/content/po/en/running.po
+++ b/src/vidalia/help/content/po/en/running.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
diff --git a/src/vidalia/help/content/po/en/server.po b/src/vidalia/help/content/po/en/server.po
index 7299a3f..5cbbd9d 100644
--- a/src/vidalia/help/content/po/en/server.po
+++ b/src/vidalia/help/content/po/en/server.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
diff --git a/src/vidalia/help/content/po/en/services.po b/src/vidalia/help/content/po/en/services.po
index c2705db..5042798 100644
--- a/src/vidalia/help/content/po/en/services.po
+++ b/src/vidalia/help/content/po/en/services.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
diff --git a/src/vidalia/help/content/po/en/troubleshooting.po b/src/vidalia/help/content/po/en/troubleshooting.po
index a04a965..469ba59 100644
--- a/src/vidalia/help/content/po/en/troubleshooting.po
+++ b/src/vidalia/help/content/po/en/troubleshooting.po
@@ -5,8 +5,8 @@
## the LICENSE file, found in the top level directory of this
## distribution. If you did not receive the LICENSE file with this
## file, you may obtain it from the Vidalia source package distributed
-## by the Vidalia Project at http://www.vidalia-project.net/. No part
-## of Vidalia, including this file, may be copied, modified,
+## by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+No part of Vidalia, including this file, may be copied, modified,
## propagated, or distributed except according to the terms described
## in the LICENSE file.
##
diff --git a/src/vidalia/help/content/po/eo/config.po b/src/vidalia/help/content/po/eo/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/eo/config.po
+++ b/src/vidalia/help/content/po/eo/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eo/index.po b/src/vidalia/help/content/po/eo/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/eo/index.po
+++ b/src/vidalia/help/content/po/eo/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eo/links.po b/src/vidalia/help/content/po/eo/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/eo/links.po
+++ b/src/vidalia/help/content/po/eo/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eo/log.po b/src/vidalia/help/content/po/eo/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/eo/log.po
+++ b/src/vidalia/help/content/po/eo/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eo/running.po b/src/vidalia/help/content/po/eo/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/eo/running.po
+++ b/src/vidalia/help/content/po/eo/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eo/server.po b/src/vidalia/help/content/po/eo/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/eo/server.po
+++ b/src/vidalia/help/content/po/eo/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eo/services.po b/src/vidalia/help/content/po/eo/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/eo/services.po
+++ b/src/vidalia/help/content/po/eo/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eo/troubleshooting.po b/src/vidalia/help/content/po/eo/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/eo/troubleshooting.po
+++ b/src/vidalia/help/content/po/eo/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/es/config.po b/src/vidalia/help/content/po/es/config.po
index abc617b..a3cf8de 100644
--- a/src/vidalia/help/content/po/es/config.po
+++ b/src/vidalia/help/content/po/es/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/es/index.po b/src/vidalia/help/content/po/es/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/es/index.po
+++ b/src/vidalia/help/content/po/es/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/es/links.po b/src/vidalia/help/content/po/es/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/es/links.po
+++ b/src/vidalia/help/content/po/es/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/es/log.po b/src/vidalia/help/content/po/es/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/es/log.po
+++ b/src/vidalia/help/content/po/es/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/es/netview.po b/src/vidalia/help/content/po/es/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/es/netview.po
+++ b/src/vidalia/help/content/po/es/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/es/running.po b/src/vidalia/help/content/po/es/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/es/running.po
+++ b/src/vidalia/help/content/po/es/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/es/server.po b/src/vidalia/help/content/po/es/server.po
index 8bff0c0..4dc4ee9 100644
--- a/src/vidalia/help/content/po/es/server.po
+++ b/src/vidalia/help/content/po/es/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/es/services.po b/src/vidalia/help/content/po/es/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/es/services.po
+++ b/src/vidalia/help/content/po/es/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/es/troubleshooting.po b/src/vidalia/help/content/po/es/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/es/troubleshooting.po
+++ b/src/vidalia/help/content/po/es/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/et/config.po b/src/vidalia/help/content/po/et/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/et/config.po
+++ b/src/vidalia/help/content/po/et/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/et/index.po b/src/vidalia/help/content/po/et/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/et/index.po
+++ b/src/vidalia/help/content/po/et/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/et/links.po b/src/vidalia/help/content/po/et/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/et/links.po
+++ b/src/vidalia/help/content/po/et/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/et/log.po b/src/vidalia/help/content/po/et/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/et/log.po
+++ b/src/vidalia/help/content/po/et/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/et/running.po b/src/vidalia/help/content/po/et/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/et/running.po
+++ b/src/vidalia/help/content/po/et/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/et/server.po b/src/vidalia/help/content/po/et/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/et/server.po
+++ b/src/vidalia/help/content/po/et/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/et/services.po b/src/vidalia/help/content/po/et/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/et/services.po
+++ b/src/vidalia/help/content/po/et/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/et/troubleshooting.po b/src/vidalia/help/content/po/et/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/et/troubleshooting.po
+++ b/src/vidalia/help/content/po/et/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eu/config.po b/src/vidalia/help/content/po/eu/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/eu/config.po
+++ b/src/vidalia/help/content/po/eu/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eu/index.po b/src/vidalia/help/content/po/eu/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/eu/index.po
+++ b/src/vidalia/help/content/po/eu/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eu/links.po b/src/vidalia/help/content/po/eu/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/eu/links.po
+++ b/src/vidalia/help/content/po/eu/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eu/log.po b/src/vidalia/help/content/po/eu/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/eu/log.po
+++ b/src/vidalia/help/content/po/eu/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eu/running.po b/src/vidalia/help/content/po/eu/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/eu/running.po
+++ b/src/vidalia/help/content/po/eu/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eu/server.po b/src/vidalia/help/content/po/eu/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/eu/server.po
+++ b/src/vidalia/help/content/po/eu/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eu/services.po b/src/vidalia/help/content/po/eu/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/eu/services.po
+++ b/src/vidalia/help/content/po/eu/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/eu/troubleshooting.po b/src/vidalia/help/content/po/eu/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/eu/troubleshooting.po
+++ b/src/vidalia/help/content/po/eu/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fa/bridges.po b/src/vidalia/help/content/po/fa/bridges.po
index b8999a7..41259a2 100644
--- a/src/vidalia/help/content/po/fa/bridges.po
+++ b/src/vidalia/help/content/po/fa/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/fa/config.po b/src/vidalia/help/content/po/fa/config.po
index 30ea1cf..cd202ab 100644
--- a/src/vidalia/help/content/po/fa/config.po
+++ b/src/vidalia/help/content/po/fa/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fa/index.po b/src/vidalia/help/content/po/fa/index.po
index 125b9a8..a1b2a45 100644
--- a/src/vidalia/help/content/po/fa/index.po
+++ b/src/vidalia/help/content/po/fa/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fa/links.po b/src/vidalia/help/content/po/fa/links.po
index d434416..d75d432 100644
--- a/src/vidalia/help/content/po/fa/links.po
+++ b/src/vidalia/help/content/po/fa/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fa/log.po b/src/vidalia/help/content/po/fa/log.po
index 4887b71..02ebf3b 100644
--- a/src/vidalia/help/content/po/fa/log.po
+++ b/src/vidalia/help/content/po/fa/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fa/netview.po b/src/vidalia/help/content/po/fa/netview.po
index de480fd..59c2505 100644
--- a/src/vidalia/help/content/po/fa/netview.po
+++ b/src/vidalia/help/content/po/fa/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fa/running.po b/src/vidalia/help/content/po/fa/running.po
index 46556b9..442a62f 100644
--- a/src/vidalia/help/content/po/fa/running.po
+++ b/src/vidalia/help/content/po/fa/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fa/server.po b/src/vidalia/help/content/po/fa/server.po
index bee9a7d..ecb7ca2 100644
--- a/src/vidalia/help/content/po/fa/server.po
+++ b/src/vidalia/help/content/po/fa/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fa/services.po b/src/vidalia/help/content/po/fa/services.po
index 9d9a0c3..ed12243 100644
--- a/src/vidalia/help/content/po/fa/services.po
+++ b/src/vidalia/help/content/po/fa/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fa/troubleshooting.po b/src/vidalia/help/content/po/fa/troubleshooting.po
index 39feae6..33d5753 100644
--- a/src/vidalia/help/content/po/fa/troubleshooting.po
+++ b/src/vidalia/help/content/po/fa/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fi/bridges.po b/src/vidalia/help/content/po/fi/bridges.po
index 11982c8..a3181cb 100644
--- a/src/vidalia/help/content/po/fi/bridges.po
+++ b/src/vidalia/help/content/po/fi/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/fi/config.po b/src/vidalia/help/content/po/fi/config.po
index 633b48c..e9450b3 100644
--- a/src/vidalia/help/content/po/fi/config.po
+++ b/src/vidalia/help/content/po/fi/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fi/index.po b/src/vidalia/help/content/po/fi/index.po
index 9b5c30e..b4a7941 100644
--- a/src/vidalia/help/content/po/fi/index.po
+++ b/src/vidalia/help/content/po/fi/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fi/links.po b/src/vidalia/help/content/po/fi/links.po
index b0a4119..d2efb53 100644
--- a/src/vidalia/help/content/po/fi/links.po
+++ b/src/vidalia/help/content/po/fi/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fi/log.po b/src/vidalia/help/content/po/fi/log.po
index 8141fba..7e226bc 100644
--- a/src/vidalia/help/content/po/fi/log.po
+++ b/src/vidalia/help/content/po/fi/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fi/netview.po b/src/vidalia/help/content/po/fi/netview.po
index 15de0c5..3ab66ec 100644
--- a/src/vidalia/help/content/po/fi/netview.po
+++ b/src/vidalia/help/content/po/fi/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fi/running.po b/src/vidalia/help/content/po/fi/running.po
index 43bbb4e..b503af0 100644
--- a/src/vidalia/help/content/po/fi/running.po
+++ b/src/vidalia/help/content/po/fi/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fi/server.po b/src/vidalia/help/content/po/fi/server.po
index 09da128..3cb445f 100644
--- a/src/vidalia/help/content/po/fi/server.po
+++ b/src/vidalia/help/content/po/fi/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fi/services.po b/src/vidalia/help/content/po/fi/services.po
index db5f9fe..73d206c 100644
--- a/src/vidalia/help/content/po/fi/services.po
+++ b/src/vidalia/help/content/po/fi/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fi/troubleshooting.po b/src/vidalia/help/content/po/fi/troubleshooting.po
index f74392b..b495396 100644
--- a/src/vidalia/help/content/po/fi/troubleshooting.po
+++ b/src/vidalia/help/content/po/fi/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fil/config.po b/src/vidalia/help/content/po/fil/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/fil/config.po
+++ b/src/vidalia/help/content/po/fil/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fil/index.po b/src/vidalia/help/content/po/fil/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/fil/index.po
+++ b/src/vidalia/help/content/po/fil/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fil/links.po b/src/vidalia/help/content/po/fil/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/fil/links.po
+++ b/src/vidalia/help/content/po/fil/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fil/log.po b/src/vidalia/help/content/po/fil/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/fil/log.po
+++ b/src/vidalia/help/content/po/fil/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fil/running.po b/src/vidalia/help/content/po/fil/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/fil/running.po
+++ b/src/vidalia/help/content/po/fil/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fil/server.po b/src/vidalia/help/content/po/fil/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/fil/server.po
+++ b/src/vidalia/help/content/po/fil/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fil/services.po b/src/vidalia/help/content/po/fil/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/fil/services.po
+++ b/src/vidalia/help/content/po/fil/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fil/troubleshooting.po b/src/vidalia/help/content/po/fil/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/fil/troubleshooting.po
+++ b/src/vidalia/help/content/po/fil/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fo/bridges.po b/src/vidalia/help/content/po/fo/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/fo/bridges.po
+++ b/src/vidalia/help/content/po/fo/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/fo/config.po b/src/vidalia/help/content/po/fo/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/fo/config.po
+++ b/src/vidalia/help/content/po/fo/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fo/index.po b/src/vidalia/help/content/po/fo/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/fo/index.po
+++ b/src/vidalia/help/content/po/fo/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fo/links.po b/src/vidalia/help/content/po/fo/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/fo/links.po
+++ b/src/vidalia/help/content/po/fo/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fo/log.po b/src/vidalia/help/content/po/fo/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/fo/log.po
+++ b/src/vidalia/help/content/po/fo/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fo/netview.po b/src/vidalia/help/content/po/fo/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/fo/netview.po
+++ b/src/vidalia/help/content/po/fo/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fo/running.po b/src/vidalia/help/content/po/fo/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/fo/running.po
+++ b/src/vidalia/help/content/po/fo/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fo/server.po b/src/vidalia/help/content/po/fo/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/fo/server.po
+++ b/src/vidalia/help/content/po/fo/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fo/services.po b/src/vidalia/help/content/po/fo/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/fo/services.po
+++ b/src/vidalia/help/content/po/fo/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fo/troubleshooting.po b/src/vidalia/help/content/po/fo/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/fo/troubleshooting.po
+++ b/src/vidalia/help/content/po/fo/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fr/config.po b/src/vidalia/help/content/po/fr/config.po
index da871e2..722a595 100644
--- a/src/vidalia/help/content/po/fr/config.po
+++ b/src/vidalia/help/content/po/fr/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fr/index.po b/src/vidalia/help/content/po/fr/index.po
index ee6855f..d1b99a1 100644
--- a/src/vidalia/help/content/po/fr/index.po
+++ b/src/vidalia/help/content/po/fr/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fr/links.po b/src/vidalia/help/content/po/fr/links.po
index 3b6deab..cc67679 100644
--- a/src/vidalia/help/content/po/fr/links.po
+++ b/src/vidalia/help/content/po/fr/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fr/log.po b/src/vidalia/help/content/po/fr/log.po
index 8c379c1..b18adb4 100644
--- a/src/vidalia/help/content/po/fr/log.po
+++ b/src/vidalia/help/content/po/fr/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/fr/netview.po b/src/vidalia/help/content/po/fr/netview.po
index 200daea..0020086 100644
--- a/src/vidalia/help/content/po/fr/netview.po
+++ b/src/vidalia/help/content/po/fr/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/fr/running.po b/src/vidalia/help/content/po/fr/running.po
index bea6a16..491946b 100644
--- a/src/vidalia/help/content/po/fr/running.po
+++ b/src/vidalia/help/content/po/fr/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fr/server.po b/src/vidalia/help/content/po/fr/server.po
index 6b997a4..3ff8520 100644
--- a/src/vidalia/help/content/po/fr/server.po
+++ b/src/vidalia/help/content/po/fr/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/fr/services.po b/src/vidalia/help/content/po/fr/services.po
index 9f3bd0c..e97907f 100644
--- a/src/vidalia/help/content/po/fr/services.po
+++ b/src/vidalia/help/content/po/fr/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/fr/troubleshooting.po b/src/vidalia/help/content/po/fr/troubleshooting.po
index 62e82fb..d94cc91 100644
--- a/src/vidalia/help/content/po/fr/troubleshooting.po
+++ b/src/vidalia/help/content/po/fr/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fur/config.po b/src/vidalia/help/content/po/fur/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/fur/config.po
+++ b/src/vidalia/help/content/po/fur/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fur/index.po b/src/vidalia/help/content/po/fur/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/fur/index.po
+++ b/src/vidalia/help/content/po/fur/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fur/links.po b/src/vidalia/help/content/po/fur/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/fur/links.po
+++ b/src/vidalia/help/content/po/fur/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fur/log.po b/src/vidalia/help/content/po/fur/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/fur/log.po
+++ b/src/vidalia/help/content/po/fur/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fur/running.po b/src/vidalia/help/content/po/fur/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/fur/running.po
+++ b/src/vidalia/help/content/po/fur/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fur/server.po b/src/vidalia/help/content/po/fur/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/fur/server.po
+++ b/src/vidalia/help/content/po/fur/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fur/services.po b/src/vidalia/help/content/po/fur/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/fur/services.po
+++ b/src/vidalia/help/content/po/fur/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fur/troubleshooting.po b/src/vidalia/help/content/po/fur/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/fur/troubleshooting.po
+++ b/src/vidalia/help/content/po/fur/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fy/bridges.po b/src/vidalia/help/content/po/fy/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/fy/bridges.po
+++ b/src/vidalia/help/content/po/fy/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/fy/config.po b/src/vidalia/help/content/po/fy/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/fy/config.po
+++ b/src/vidalia/help/content/po/fy/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fy/index.po b/src/vidalia/help/content/po/fy/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/fy/index.po
+++ b/src/vidalia/help/content/po/fy/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fy/links.po b/src/vidalia/help/content/po/fy/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/fy/links.po
+++ b/src/vidalia/help/content/po/fy/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fy/log.po b/src/vidalia/help/content/po/fy/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/fy/log.po
+++ b/src/vidalia/help/content/po/fy/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fy/netview.po b/src/vidalia/help/content/po/fy/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/fy/netview.po
+++ b/src/vidalia/help/content/po/fy/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fy/running.po b/src/vidalia/help/content/po/fy/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/fy/running.po
+++ b/src/vidalia/help/content/po/fy/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fy/server.po b/src/vidalia/help/content/po/fy/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/fy/server.po
+++ b/src/vidalia/help/content/po/fy/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fy/services.po b/src/vidalia/help/content/po/fy/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/fy/services.po
+++ b/src/vidalia/help/content/po/fy/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/fy/troubleshooting.po b/src/vidalia/help/content/po/fy/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/fy/troubleshooting.po
+++ b/src/vidalia/help/content/po/fy/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ga/config.po b/src/vidalia/help/content/po/ga/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ga/config.po
+++ b/src/vidalia/help/content/po/ga/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ga/index.po b/src/vidalia/help/content/po/ga/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ga/index.po
+++ b/src/vidalia/help/content/po/ga/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ga/links.po b/src/vidalia/help/content/po/ga/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ga/links.po
+++ b/src/vidalia/help/content/po/ga/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ga/log.po b/src/vidalia/help/content/po/ga/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ga/log.po
+++ b/src/vidalia/help/content/po/ga/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ga/running.po b/src/vidalia/help/content/po/ga/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ga/running.po
+++ b/src/vidalia/help/content/po/ga/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ga/server.po b/src/vidalia/help/content/po/ga/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ga/server.po
+++ b/src/vidalia/help/content/po/ga/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ga/services.po b/src/vidalia/help/content/po/ga/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ga/services.po
+++ b/src/vidalia/help/content/po/ga/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ga/troubleshooting.po b/src/vidalia/help/content/po/ga/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ga/troubleshooting.po
+++ b/src/vidalia/help/content/po/ga/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gl/config.po b/src/vidalia/help/content/po/gl/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/gl/config.po
+++ b/src/vidalia/help/content/po/gl/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gl/index.po b/src/vidalia/help/content/po/gl/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/gl/index.po
+++ b/src/vidalia/help/content/po/gl/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gl/links.po b/src/vidalia/help/content/po/gl/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/gl/links.po
+++ b/src/vidalia/help/content/po/gl/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gl/log.po b/src/vidalia/help/content/po/gl/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/gl/log.po
+++ b/src/vidalia/help/content/po/gl/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gl/running.po b/src/vidalia/help/content/po/gl/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/gl/running.po
+++ b/src/vidalia/help/content/po/gl/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gl/server.po b/src/vidalia/help/content/po/gl/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/gl/server.po
+++ b/src/vidalia/help/content/po/gl/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gl/services.po b/src/vidalia/help/content/po/gl/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/gl/services.po
+++ b/src/vidalia/help/content/po/gl/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gl/troubleshooting.po b/src/vidalia/help/content/po/gl/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/gl/troubleshooting.po
+++ b/src/vidalia/help/content/po/gl/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gu/config.po b/src/vidalia/help/content/po/gu/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/gu/config.po
+++ b/src/vidalia/help/content/po/gu/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gu/index.po b/src/vidalia/help/content/po/gu/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/gu/index.po
+++ b/src/vidalia/help/content/po/gu/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gu/links.po b/src/vidalia/help/content/po/gu/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/gu/links.po
+++ b/src/vidalia/help/content/po/gu/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gu/log.po b/src/vidalia/help/content/po/gu/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/gu/log.po
+++ b/src/vidalia/help/content/po/gu/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gu/running.po b/src/vidalia/help/content/po/gu/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/gu/running.po
+++ b/src/vidalia/help/content/po/gu/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gu/server.po b/src/vidalia/help/content/po/gu/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/gu/server.po
+++ b/src/vidalia/help/content/po/gu/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gu/services.po b/src/vidalia/help/content/po/gu/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/gu/services.po
+++ b/src/vidalia/help/content/po/gu/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gu/troubleshooting.po b/src/vidalia/help/content/po/gu/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/gu/troubleshooting.po
+++ b/src/vidalia/help/content/po/gu/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gun/config.po b/src/vidalia/help/content/po/gun/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/gun/config.po
+++ b/src/vidalia/help/content/po/gun/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gun/index.po b/src/vidalia/help/content/po/gun/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/gun/index.po
+++ b/src/vidalia/help/content/po/gun/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gun/links.po b/src/vidalia/help/content/po/gun/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/gun/links.po
+++ b/src/vidalia/help/content/po/gun/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gun/log.po b/src/vidalia/help/content/po/gun/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/gun/log.po
+++ b/src/vidalia/help/content/po/gun/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gun/running.po b/src/vidalia/help/content/po/gun/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/gun/running.po
+++ b/src/vidalia/help/content/po/gun/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gun/server.po b/src/vidalia/help/content/po/gun/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/gun/server.po
+++ b/src/vidalia/help/content/po/gun/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gun/services.po b/src/vidalia/help/content/po/gun/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/gun/services.po
+++ b/src/vidalia/help/content/po/gun/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/gun/troubleshooting.po b/src/vidalia/help/content/po/gun/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/gun/troubleshooting.po
+++ b/src/vidalia/help/content/po/gun/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ha/config.po b/src/vidalia/help/content/po/ha/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ha/config.po
+++ b/src/vidalia/help/content/po/ha/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ha/index.po b/src/vidalia/help/content/po/ha/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ha/index.po
+++ b/src/vidalia/help/content/po/ha/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ha/links.po b/src/vidalia/help/content/po/ha/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ha/links.po
+++ b/src/vidalia/help/content/po/ha/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ha/log.po b/src/vidalia/help/content/po/ha/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ha/log.po
+++ b/src/vidalia/help/content/po/ha/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ha/running.po b/src/vidalia/help/content/po/ha/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ha/running.po
+++ b/src/vidalia/help/content/po/ha/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ha/server.po b/src/vidalia/help/content/po/ha/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ha/server.po
+++ b/src/vidalia/help/content/po/ha/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ha/services.po b/src/vidalia/help/content/po/ha/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ha/services.po
+++ b/src/vidalia/help/content/po/ha/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ha/troubleshooting.po b/src/vidalia/help/content/po/ha/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ha/troubleshooting.po
+++ b/src/vidalia/help/content/po/ha/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/he/config.po b/src/vidalia/help/content/po/he/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/he/config.po
+++ b/src/vidalia/help/content/po/he/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/he/index.po b/src/vidalia/help/content/po/he/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/he/index.po
+++ b/src/vidalia/help/content/po/he/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/he/links.po b/src/vidalia/help/content/po/he/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/he/links.po
+++ b/src/vidalia/help/content/po/he/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/he/log.po b/src/vidalia/help/content/po/he/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/he/log.po
+++ b/src/vidalia/help/content/po/he/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/he/running.po b/src/vidalia/help/content/po/he/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/he/running.po
+++ b/src/vidalia/help/content/po/he/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/he/server.po b/src/vidalia/help/content/po/he/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/he/server.po
+++ b/src/vidalia/help/content/po/he/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/he/services.po b/src/vidalia/help/content/po/he/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/he/services.po
+++ b/src/vidalia/help/content/po/he/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/he/troubleshooting.po b/src/vidalia/help/content/po/he/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/he/troubleshooting.po
+++ b/src/vidalia/help/content/po/he/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hi/config.po b/src/vidalia/help/content/po/hi/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/hi/config.po
+++ b/src/vidalia/help/content/po/hi/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hi/index.po b/src/vidalia/help/content/po/hi/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/hi/index.po
+++ b/src/vidalia/help/content/po/hi/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hi/links.po b/src/vidalia/help/content/po/hi/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/hi/links.po
+++ b/src/vidalia/help/content/po/hi/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hi/log.po b/src/vidalia/help/content/po/hi/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/hi/log.po
+++ b/src/vidalia/help/content/po/hi/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hi/running.po b/src/vidalia/help/content/po/hi/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/hi/running.po
+++ b/src/vidalia/help/content/po/hi/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hi/server.po b/src/vidalia/help/content/po/hi/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/hi/server.po
+++ b/src/vidalia/help/content/po/hi/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hi/services.po b/src/vidalia/help/content/po/hi/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/hi/services.po
+++ b/src/vidalia/help/content/po/hi/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hi/troubleshooting.po b/src/vidalia/help/content/po/hi/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/hi/troubleshooting.po
+++ b/src/vidalia/help/content/po/hi/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hr/config.po b/src/vidalia/help/content/po/hr/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/hr/config.po
+++ b/src/vidalia/help/content/po/hr/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hr/index.po b/src/vidalia/help/content/po/hr/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/hr/index.po
+++ b/src/vidalia/help/content/po/hr/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hr/links.po b/src/vidalia/help/content/po/hr/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/hr/links.po
+++ b/src/vidalia/help/content/po/hr/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hr/log.po b/src/vidalia/help/content/po/hr/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/hr/log.po
+++ b/src/vidalia/help/content/po/hr/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hr/running.po b/src/vidalia/help/content/po/hr/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/hr/running.po
+++ b/src/vidalia/help/content/po/hr/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hr/server.po b/src/vidalia/help/content/po/hr/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/hr/server.po
+++ b/src/vidalia/help/content/po/hr/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hr/services.po b/src/vidalia/help/content/po/hr/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/hr/services.po
+++ b/src/vidalia/help/content/po/hr/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hr/troubleshooting.po b/src/vidalia/help/content/po/hr/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/hr/troubleshooting.po
+++ b/src/vidalia/help/content/po/hr/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ht/config.po b/src/vidalia/help/content/po/ht/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ht/config.po
+++ b/src/vidalia/help/content/po/ht/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ht/index.po b/src/vidalia/help/content/po/ht/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ht/index.po
+++ b/src/vidalia/help/content/po/ht/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ht/links.po b/src/vidalia/help/content/po/ht/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ht/links.po
+++ b/src/vidalia/help/content/po/ht/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ht/log.po b/src/vidalia/help/content/po/ht/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ht/log.po
+++ b/src/vidalia/help/content/po/ht/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ht/running.po b/src/vidalia/help/content/po/ht/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ht/running.po
+++ b/src/vidalia/help/content/po/ht/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ht/server.po b/src/vidalia/help/content/po/ht/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ht/server.po
+++ b/src/vidalia/help/content/po/ht/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ht/services.po b/src/vidalia/help/content/po/ht/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ht/services.po
+++ b/src/vidalia/help/content/po/ht/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ht/troubleshooting.po b/src/vidalia/help/content/po/ht/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ht/troubleshooting.po
+++ b/src/vidalia/help/content/po/ht/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hu/config.po b/src/vidalia/help/content/po/hu/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/hu/config.po
+++ b/src/vidalia/help/content/po/hu/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hu/index.po b/src/vidalia/help/content/po/hu/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/hu/index.po
+++ b/src/vidalia/help/content/po/hu/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hu/links.po b/src/vidalia/help/content/po/hu/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/hu/links.po
+++ b/src/vidalia/help/content/po/hu/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hu/log.po b/src/vidalia/help/content/po/hu/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/hu/log.po
+++ b/src/vidalia/help/content/po/hu/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hu/running.po b/src/vidalia/help/content/po/hu/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/hu/running.po
+++ b/src/vidalia/help/content/po/hu/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hu/server.po b/src/vidalia/help/content/po/hu/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/hu/server.po
+++ b/src/vidalia/help/content/po/hu/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hu/services.po b/src/vidalia/help/content/po/hu/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/hu/services.po
+++ b/src/vidalia/help/content/po/hu/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hu/troubleshooting.po b/src/vidalia/help/content/po/hu/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/hu/troubleshooting.po
+++ b/src/vidalia/help/content/po/hu/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hy/bridges.po b/src/vidalia/help/content/po/hy/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/hy/bridges.po
+++ b/src/vidalia/help/content/po/hy/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/hy/config.po b/src/vidalia/help/content/po/hy/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/hy/config.po
+++ b/src/vidalia/help/content/po/hy/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hy/index.po b/src/vidalia/help/content/po/hy/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/hy/index.po
+++ b/src/vidalia/help/content/po/hy/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hy/links.po b/src/vidalia/help/content/po/hy/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/hy/links.po
+++ b/src/vidalia/help/content/po/hy/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hy/log.po b/src/vidalia/help/content/po/hy/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/hy/log.po
+++ b/src/vidalia/help/content/po/hy/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hy/netview.po b/src/vidalia/help/content/po/hy/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/hy/netview.po
+++ b/src/vidalia/help/content/po/hy/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hy/running.po b/src/vidalia/help/content/po/hy/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/hy/running.po
+++ b/src/vidalia/help/content/po/hy/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hy/server.po b/src/vidalia/help/content/po/hy/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/hy/server.po
+++ b/src/vidalia/help/content/po/hy/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hy/services.po b/src/vidalia/help/content/po/hy/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/hy/services.po
+++ b/src/vidalia/help/content/po/hy/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/hy/troubleshooting.po b/src/vidalia/help/content/po/hy/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/hy/troubleshooting.po
+++ b/src/vidalia/help/content/po/hy/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/id/config.po b/src/vidalia/help/content/po/id/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/id/config.po
+++ b/src/vidalia/help/content/po/id/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/id/index.po b/src/vidalia/help/content/po/id/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/id/index.po
+++ b/src/vidalia/help/content/po/id/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/id/links.po b/src/vidalia/help/content/po/id/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/id/links.po
+++ b/src/vidalia/help/content/po/id/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/id/log.po b/src/vidalia/help/content/po/id/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/id/log.po
+++ b/src/vidalia/help/content/po/id/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/id/running.po b/src/vidalia/help/content/po/id/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/id/running.po
+++ b/src/vidalia/help/content/po/id/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/id/server.po b/src/vidalia/help/content/po/id/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/id/server.po
+++ b/src/vidalia/help/content/po/id/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/id/services.po b/src/vidalia/help/content/po/id/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/id/services.po
+++ b/src/vidalia/help/content/po/id/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/id/troubleshooting.po b/src/vidalia/help/content/po/id/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/id/troubleshooting.po
+++ b/src/vidalia/help/content/po/id/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/is/config.po b/src/vidalia/help/content/po/is/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/is/config.po
+++ b/src/vidalia/help/content/po/is/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/is/index.po b/src/vidalia/help/content/po/is/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/is/index.po
+++ b/src/vidalia/help/content/po/is/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/is/links.po b/src/vidalia/help/content/po/is/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/is/links.po
+++ b/src/vidalia/help/content/po/is/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/is/log.po b/src/vidalia/help/content/po/is/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/is/log.po
+++ b/src/vidalia/help/content/po/is/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/is/running.po b/src/vidalia/help/content/po/is/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/is/running.po
+++ b/src/vidalia/help/content/po/is/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/is/server.po b/src/vidalia/help/content/po/is/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/is/server.po
+++ b/src/vidalia/help/content/po/is/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/is/services.po b/src/vidalia/help/content/po/is/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/is/services.po
+++ b/src/vidalia/help/content/po/is/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/is/troubleshooting.po b/src/vidalia/help/content/po/is/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/is/troubleshooting.po
+++ b/src/vidalia/help/content/po/is/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/it/config.po b/src/vidalia/help/content/po/it/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/it/config.po
+++ b/src/vidalia/help/content/po/it/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/it/index.po b/src/vidalia/help/content/po/it/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/it/index.po
+++ b/src/vidalia/help/content/po/it/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/it/links.po b/src/vidalia/help/content/po/it/links.po
index 75950bf..cfb2572 100644
--- a/src/vidalia/help/content/po/it/links.po
+++ b/src/vidalia/help/content/po/it/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/it/log.po b/src/vidalia/help/content/po/it/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/it/log.po
+++ b/src/vidalia/help/content/po/it/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/it/netview.po b/src/vidalia/help/content/po/it/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/it/netview.po
+++ b/src/vidalia/help/content/po/it/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/it/running.po b/src/vidalia/help/content/po/it/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/it/running.po
+++ b/src/vidalia/help/content/po/it/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/it/server.po b/src/vidalia/help/content/po/it/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/it/server.po
+++ b/src/vidalia/help/content/po/it/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/it/services.po b/src/vidalia/help/content/po/it/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/it/services.po
+++ b/src/vidalia/help/content/po/it/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/it/troubleshooting.po b/src/vidalia/help/content/po/it/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/it/troubleshooting.po
+++ b/src/vidalia/help/content/po/it/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ja/bridges.po b/src/vidalia/help/content/po/ja/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/ja/bridges.po
+++ b/src/vidalia/help/content/po/ja/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/ja/config.po b/src/vidalia/help/content/po/ja/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ja/config.po
+++ b/src/vidalia/help/content/po/ja/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ja/index.po b/src/vidalia/help/content/po/ja/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ja/index.po
+++ b/src/vidalia/help/content/po/ja/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ja/links.po b/src/vidalia/help/content/po/ja/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ja/links.po
+++ b/src/vidalia/help/content/po/ja/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ja/log.po b/src/vidalia/help/content/po/ja/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ja/log.po
+++ b/src/vidalia/help/content/po/ja/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ja/netview.po b/src/vidalia/help/content/po/ja/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/ja/netview.po
+++ b/src/vidalia/help/content/po/ja/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ja/running.po b/src/vidalia/help/content/po/ja/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ja/running.po
+++ b/src/vidalia/help/content/po/ja/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ja/server.po b/src/vidalia/help/content/po/ja/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ja/server.po
+++ b/src/vidalia/help/content/po/ja/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ja/services.po b/src/vidalia/help/content/po/ja/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ja/services.po
+++ b/src/vidalia/help/content/po/ja/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ja/troubleshooting.po b/src/vidalia/help/content/po/ja/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ja/troubleshooting.po
+++ b/src/vidalia/help/content/po/ja/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/jv/bridges.po b/src/vidalia/help/content/po/jv/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/jv/bridges.po
+++ b/src/vidalia/help/content/po/jv/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/jv/config.po b/src/vidalia/help/content/po/jv/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/jv/config.po
+++ b/src/vidalia/help/content/po/jv/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/jv/index.po b/src/vidalia/help/content/po/jv/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/jv/index.po
+++ b/src/vidalia/help/content/po/jv/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/jv/links.po b/src/vidalia/help/content/po/jv/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/jv/links.po
+++ b/src/vidalia/help/content/po/jv/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/jv/log.po b/src/vidalia/help/content/po/jv/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/jv/log.po
+++ b/src/vidalia/help/content/po/jv/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/jv/netview.po b/src/vidalia/help/content/po/jv/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/jv/netview.po
+++ b/src/vidalia/help/content/po/jv/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/jv/running.po b/src/vidalia/help/content/po/jv/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/jv/running.po
+++ b/src/vidalia/help/content/po/jv/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/jv/server.po b/src/vidalia/help/content/po/jv/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/jv/server.po
+++ b/src/vidalia/help/content/po/jv/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/jv/services.po b/src/vidalia/help/content/po/jv/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/jv/services.po
+++ b/src/vidalia/help/content/po/jv/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/jv/troubleshooting.po b/src/vidalia/help/content/po/jv/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/jv/troubleshooting.po
+++ b/src/vidalia/help/content/po/jv/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ka/bridges.po b/src/vidalia/help/content/po/ka/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/ka/bridges.po
+++ b/src/vidalia/help/content/po/ka/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/ka/config.po b/src/vidalia/help/content/po/ka/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ka/config.po
+++ b/src/vidalia/help/content/po/ka/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ka/index.po b/src/vidalia/help/content/po/ka/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ka/index.po
+++ b/src/vidalia/help/content/po/ka/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ka/links.po b/src/vidalia/help/content/po/ka/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ka/links.po
+++ b/src/vidalia/help/content/po/ka/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ka/log.po b/src/vidalia/help/content/po/ka/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ka/log.po
+++ b/src/vidalia/help/content/po/ka/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ka/netview.po b/src/vidalia/help/content/po/ka/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/ka/netview.po
+++ b/src/vidalia/help/content/po/ka/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ka/running.po b/src/vidalia/help/content/po/ka/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ka/running.po
+++ b/src/vidalia/help/content/po/ka/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ka/server.po b/src/vidalia/help/content/po/ka/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ka/server.po
+++ b/src/vidalia/help/content/po/ka/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ka/services.po b/src/vidalia/help/content/po/ka/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ka/services.po
+++ b/src/vidalia/help/content/po/ka/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ka/troubleshooting.po b/src/vidalia/help/content/po/ka/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ka/troubleshooting.po
+++ b/src/vidalia/help/content/po/ka/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/km/bridges.po b/src/vidalia/help/content/po/km/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/km/bridges.po
+++ b/src/vidalia/help/content/po/km/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/km/config.po b/src/vidalia/help/content/po/km/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/km/config.po
+++ b/src/vidalia/help/content/po/km/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/km/index.po b/src/vidalia/help/content/po/km/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/km/index.po
+++ b/src/vidalia/help/content/po/km/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/km/links.po b/src/vidalia/help/content/po/km/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/km/links.po
+++ b/src/vidalia/help/content/po/km/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/km/log.po b/src/vidalia/help/content/po/km/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/km/log.po
+++ b/src/vidalia/help/content/po/km/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/km/netview.po b/src/vidalia/help/content/po/km/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/km/netview.po
+++ b/src/vidalia/help/content/po/km/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/km/running.po b/src/vidalia/help/content/po/km/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/km/running.po
+++ b/src/vidalia/help/content/po/km/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/km/server.po b/src/vidalia/help/content/po/km/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/km/server.po
+++ b/src/vidalia/help/content/po/km/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/km/services.po b/src/vidalia/help/content/po/km/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/km/services.po
+++ b/src/vidalia/help/content/po/km/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/km/troubleshooting.po b/src/vidalia/help/content/po/km/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/km/troubleshooting.po
+++ b/src/vidalia/help/content/po/km/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kn/config.po b/src/vidalia/help/content/po/kn/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/kn/config.po
+++ b/src/vidalia/help/content/po/kn/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kn/index.po b/src/vidalia/help/content/po/kn/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/kn/index.po
+++ b/src/vidalia/help/content/po/kn/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kn/links.po b/src/vidalia/help/content/po/kn/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/kn/links.po
+++ b/src/vidalia/help/content/po/kn/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kn/log.po b/src/vidalia/help/content/po/kn/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/kn/log.po
+++ b/src/vidalia/help/content/po/kn/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kn/running.po b/src/vidalia/help/content/po/kn/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/kn/running.po
+++ b/src/vidalia/help/content/po/kn/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kn/server.po b/src/vidalia/help/content/po/kn/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/kn/server.po
+++ b/src/vidalia/help/content/po/kn/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kn/services.po b/src/vidalia/help/content/po/kn/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/kn/services.po
+++ b/src/vidalia/help/content/po/kn/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kn/troubleshooting.po b/src/vidalia/help/content/po/kn/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/kn/troubleshooting.po
+++ b/src/vidalia/help/content/po/kn/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ko/bridges.po b/src/vidalia/help/content/po/ko/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/ko/bridges.po
+++ b/src/vidalia/help/content/po/ko/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/ko/config.po b/src/vidalia/help/content/po/ko/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ko/config.po
+++ b/src/vidalia/help/content/po/ko/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ko/index.po b/src/vidalia/help/content/po/ko/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ko/index.po
+++ b/src/vidalia/help/content/po/ko/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ko/links.po b/src/vidalia/help/content/po/ko/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ko/links.po
+++ b/src/vidalia/help/content/po/ko/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ko/log.po b/src/vidalia/help/content/po/ko/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ko/log.po
+++ b/src/vidalia/help/content/po/ko/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ko/netview.po b/src/vidalia/help/content/po/ko/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/ko/netview.po
+++ b/src/vidalia/help/content/po/ko/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ko/running.po b/src/vidalia/help/content/po/ko/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ko/running.po
+++ b/src/vidalia/help/content/po/ko/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ko/server.po b/src/vidalia/help/content/po/ko/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ko/server.po
+++ b/src/vidalia/help/content/po/ko/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ko/services.po b/src/vidalia/help/content/po/ko/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ko/services.po
+++ b/src/vidalia/help/content/po/ko/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ko/troubleshooting.po b/src/vidalia/help/content/po/ko/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ko/troubleshooting.po
+++ b/src/vidalia/help/content/po/ko/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ku/bridges.po b/src/vidalia/help/content/po/ku/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/ku/bridges.po
+++ b/src/vidalia/help/content/po/ku/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/ku/config.po b/src/vidalia/help/content/po/ku/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ku/config.po
+++ b/src/vidalia/help/content/po/ku/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ku/index.po b/src/vidalia/help/content/po/ku/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ku/index.po
+++ b/src/vidalia/help/content/po/ku/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ku/links.po b/src/vidalia/help/content/po/ku/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ku/links.po
+++ b/src/vidalia/help/content/po/ku/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ku/log.po b/src/vidalia/help/content/po/ku/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ku/log.po
+++ b/src/vidalia/help/content/po/ku/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ku/netview.po b/src/vidalia/help/content/po/ku/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/ku/netview.po
+++ b/src/vidalia/help/content/po/ku/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ku/running.po b/src/vidalia/help/content/po/ku/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ku/running.po
+++ b/src/vidalia/help/content/po/ku/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ku/server.po b/src/vidalia/help/content/po/ku/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ku/server.po
+++ b/src/vidalia/help/content/po/ku/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ku/services.po b/src/vidalia/help/content/po/ku/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ku/services.po
+++ b/src/vidalia/help/content/po/ku/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ku/troubleshooting.po b/src/vidalia/help/content/po/ku/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ku/troubleshooting.po
+++ b/src/vidalia/help/content/po/ku/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kw/config.po b/src/vidalia/help/content/po/kw/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/kw/config.po
+++ b/src/vidalia/help/content/po/kw/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kw/index.po b/src/vidalia/help/content/po/kw/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/kw/index.po
+++ b/src/vidalia/help/content/po/kw/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kw/links.po b/src/vidalia/help/content/po/kw/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/kw/links.po
+++ b/src/vidalia/help/content/po/kw/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kw/log.po b/src/vidalia/help/content/po/kw/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/kw/log.po
+++ b/src/vidalia/help/content/po/kw/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kw/running.po b/src/vidalia/help/content/po/kw/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/kw/running.po
+++ b/src/vidalia/help/content/po/kw/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kw/server.po b/src/vidalia/help/content/po/kw/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/kw/server.po
+++ b/src/vidalia/help/content/po/kw/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kw/services.po b/src/vidalia/help/content/po/kw/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/kw/services.po
+++ b/src/vidalia/help/content/po/kw/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/kw/troubleshooting.po b/src/vidalia/help/content/po/kw/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/kw/troubleshooting.po
+++ b/src/vidalia/help/content/po/kw/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ky/bridges.po b/src/vidalia/help/content/po/ky/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/ky/bridges.po
+++ b/src/vidalia/help/content/po/ky/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/ky/config.po b/src/vidalia/help/content/po/ky/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ky/config.po
+++ b/src/vidalia/help/content/po/ky/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ky/index.po b/src/vidalia/help/content/po/ky/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ky/index.po
+++ b/src/vidalia/help/content/po/ky/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ky/links.po b/src/vidalia/help/content/po/ky/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ky/links.po
+++ b/src/vidalia/help/content/po/ky/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ky/log.po b/src/vidalia/help/content/po/ky/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ky/log.po
+++ b/src/vidalia/help/content/po/ky/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ky/netview.po b/src/vidalia/help/content/po/ky/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/ky/netview.po
+++ b/src/vidalia/help/content/po/ky/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ky/running.po b/src/vidalia/help/content/po/ky/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ky/running.po
+++ b/src/vidalia/help/content/po/ky/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ky/server.po b/src/vidalia/help/content/po/ky/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ky/server.po
+++ b/src/vidalia/help/content/po/ky/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ky/services.po b/src/vidalia/help/content/po/ky/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ky/services.po
+++ b/src/vidalia/help/content/po/ky/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ky/troubleshooting.po b/src/vidalia/help/content/po/ky/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ky/troubleshooting.po
+++ b/src/vidalia/help/content/po/ky/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lb/config.po b/src/vidalia/help/content/po/lb/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/lb/config.po
+++ b/src/vidalia/help/content/po/lb/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lb/index.po b/src/vidalia/help/content/po/lb/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/lb/index.po
+++ b/src/vidalia/help/content/po/lb/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lb/links.po b/src/vidalia/help/content/po/lb/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/lb/links.po
+++ b/src/vidalia/help/content/po/lb/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lb/log.po b/src/vidalia/help/content/po/lb/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/lb/log.po
+++ b/src/vidalia/help/content/po/lb/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lb/running.po b/src/vidalia/help/content/po/lb/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/lb/running.po
+++ b/src/vidalia/help/content/po/lb/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lb/server.po b/src/vidalia/help/content/po/lb/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/lb/server.po
+++ b/src/vidalia/help/content/po/lb/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lb/services.po b/src/vidalia/help/content/po/lb/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/lb/services.po
+++ b/src/vidalia/help/content/po/lb/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lb/troubleshooting.po b/src/vidalia/help/content/po/lb/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/lb/troubleshooting.po
+++ b/src/vidalia/help/content/po/lb/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lg/bridges.po b/src/vidalia/help/content/po/lg/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/lg/bridges.po
+++ b/src/vidalia/help/content/po/lg/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/lg/config.po b/src/vidalia/help/content/po/lg/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/lg/config.po
+++ b/src/vidalia/help/content/po/lg/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lg/index.po b/src/vidalia/help/content/po/lg/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/lg/index.po
+++ b/src/vidalia/help/content/po/lg/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lg/links.po b/src/vidalia/help/content/po/lg/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/lg/links.po
+++ b/src/vidalia/help/content/po/lg/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lg/log.po b/src/vidalia/help/content/po/lg/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/lg/log.po
+++ b/src/vidalia/help/content/po/lg/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lg/netview.po b/src/vidalia/help/content/po/lg/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/lg/netview.po
+++ b/src/vidalia/help/content/po/lg/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lg/running.po b/src/vidalia/help/content/po/lg/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/lg/running.po
+++ b/src/vidalia/help/content/po/lg/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lg/server.po b/src/vidalia/help/content/po/lg/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/lg/server.po
+++ b/src/vidalia/help/content/po/lg/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lg/services.po b/src/vidalia/help/content/po/lg/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/lg/services.po
+++ b/src/vidalia/help/content/po/lg/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lg/troubleshooting.po b/src/vidalia/help/content/po/lg/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/lg/troubleshooting.po
+++ b/src/vidalia/help/content/po/lg/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ln/config.po b/src/vidalia/help/content/po/ln/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ln/config.po
+++ b/src/vidalia/help/content/po/ln/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ln/index.po b/src/vidalia/help/content/po/ln/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ln/index.po
+++ b/src/vidalia/help/content/po/ln/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ln/links.po b/src/vidalia/help/content/po/ln/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ln/links.po
+++ b/src/vidalia/help/content/po/ln/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ln/log.po b/src/vidalia/help/content/po/ln/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ln/log.po
+++ b/src/vidalia/help/content/po/ln/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ln/running.po b/src/vidalia/help/content/po/ln/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ln/running.po
+++ b/src/vidalia/help/content/po/ln/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ln/server.po b/src/vidalia/help/content/po/ln/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ln/server.po
+++ b/src/vidalia/help/content/po/ln/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ln/services.po b/src/vidalia/help/content/po/ln/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ln/services.po
+++ b/src/vidalia/help/content/po/ln/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ln/troubleshooting.po b/src/vidalia/help/content/po/ln/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ln/troubleshooting.po
+++ b/src/vidalia/help/content/po/ln/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lo/config.po b/src/vidalia/help/content/po/lo/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/lo/config.po
+++ b/src/vidalia/help/content/po/lo/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lo/index.po b/src/vidalia/help/content/po/lo/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/lo/index.po
+++ b/src/vidalia/help/content/po/lo/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lo/links.po b/src/vidalia/help/content/po/lo/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/lo/links.po
+++ b/src/vidalia/help/content/po/lo/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lo/log.po b/src/vidalia/help/content/po/lo/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/lo/log.po
+++ b/src/vidalia/help/content/po/lo/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lo/running.po b/src/vidalia/help/content/po/lo/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/lo/running.po
+++ b/src/vidalia/help/content/po/lo/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lo/server.po b/src/vidalia/help/content/po/lo/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/lo/server.po
+++ b/src/vidalia/help/content/po/lo/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lo/services.po b/src/vidalia/help/content/po/lo/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/lo/services.po
+++ b/src/vidalia/help/content/po/lo/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lo/troubleshooting.po b/src/vidalia/help/content/po/lo/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/lo/troubleshooting.po
+++ b/src/vidalia/help/content/po/lo/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lt/config.po b/src/vidalia/help/content/po/lt/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/lt/config.po
+++ b/src/vidalia/help/content/po/lt/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lt/index.po b/src/vidalia/help/content/po/lt/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/lt/index.po
+++ b/src/vidalia/help/content/po/lt/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lt/links.po b/src/vidalia/help/content/po/lt/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/lt/links.po
+++ b/src/vidalia/help/content/po/lt/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lt/log.po b/src/vidalia/help/content/po/lt/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/lt/log.po
+++ b/src/vidalia/help/content/po/lt/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lt/running.po b/src/vidalia/help/content/po/lt/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/lt/running.po
+++ b/src/vidalia/help/content/po/lt/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lt/server.po b/src/vidalia/help/content/po/lt/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/lt/server.po
+++ b/src/vidalia/help/content/po/lt/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lt/services.po b/src/vidalia/help/content/po/lt/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/lt/services.po
+++ b/src/vidalia/help/content/po/lt/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lt/troubleshooting.po b/src/vidalia/help/content/po/lt/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/lt/troubleshooting.po
+++ b/src/vidalia/help/content/po/lt/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lv/config.po b/src/vidalia/help/content/po/lv/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/lv/config.po
+++ b/src/vidalia/help/content/po/lv/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lv/index.po b/src/vidalia/help/content/po/lv/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/lv/index.po
+++ b/src/vidalia/help/content/po/lv/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lv/links.po b/src/vidalia/help/content/po/lv/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/lv/links.po
+++ b/src/vidalia/help/content/po/lv/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lv/log.po b/src/vidalia/help/content/po/lv/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/lv/log.po
+++ b/src/vidalia/help/content/po/lv/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lv/running.po b/src/vidalia/help/content/po/lv/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/lv/running.po
+++ b/src/vidalia/help/content/po/lv/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lv/server.po b/src/vidalia/help/content/po/lv/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/lv/server.po
+++ b/src/vidalia/help/content/po/lv/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lv/services.po b/src/vidalia/help/content/po/lv/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/lv/services.po
+++ b/src/vidalia/help/content/po/lv/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/lv/troubleshooting.po b/src/vidalia/help/content/po/lv/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/lv/troubleshooting.po
+++ b/src/vidalia/help/content/po/lv/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mg/config.po b/src/vidalia/help/content/po/mg/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/mg/config.po
+++ b/src/vidalia/help/content/po/mg/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mg/index.po b/src/vidalia/help/content/po/mg/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/mg/index.po
+++ b/src/vidalia/help/content/po/mg/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mg/links.po b/src/vidalia/help/content/po/mg/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/mg/links.po
+++ b/src/vidalia/help/content/po/mg/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mg/log.po b/src/vidalia/help/content/po/mg/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/mg/log.po
+++ b/src/vidalia/help/content/po/mg/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mg/running.po b/src/vidalia/help/content/po/mg/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/mg/running.po
+++ b/src/vidalia/help/content/po/mg/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mg/server.po b/src/vidalia/help/content/po/mg/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/mg/server.po
+++ b/src/vidalia/help/content/po/mg/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mg/services.po b/src/vidalia/help/content/po/mg/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/mg/services.po
+++ b/src/vidalia/help/content/po/mg/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mg/troubleshooting.po b/src/vidalia/help/content/po/mg/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/mg/troubleshooting.po
+++ b/src/vidalia/help/content/po/mg/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mi/config.po b/src/vidalia/help/content/po/mi/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/mi/config.po
+++ b/src/vidalia/help/content/po/mi/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mi/index.po b/src/vidalia/help/content/po/mi/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/mi/index.po
+++ b/src/vidalia/help/content/po/mi/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mi/links.po b/src/vidalia/help/content/po/mi/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/mi/links.po
+++ b/src/vidalia/help/content/po/mi/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mi/log.po b/src/vidalia/help/content/po/mi/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/mi/log.po
+++ b/src/vidalia/help/content/po/mi/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mi/running.po b/src/vidalia/help/content/po/mi/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/mi/running.po
+++ b/src/vidalia/help/content/po/mi/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mi/server.po b/src/vidalia/help/content/po/mi/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/mi/server.po
+++ b/src/vidalia/help/content/po/mi/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mi/services.po b/src/vidalia/help/content/po/mi/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/mi/services.po
+++ b/src/vidalia/help/content/po/mi/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mi/troubleshooting.po b/src/vidalia/help/content/po/mi/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/mi/troubleshooting.po
+++ b/src/vidalia/help/content/po/mi/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mk/config.po b/src/vidalia/help/content/po/mk/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/mk/config.po
+++ b/src/vidalia/help/content/po/mk/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mk/index.po b/src/vidalia/help/content/po/mk/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/mk/index.po
+++ b/src/vidalia/help/content/po/mk/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mk/links.po b/src/vidalia/help/content/po/mk/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/mk/links.po
+++ b/src/vidalia/help/content/po/mk/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mk/log.po b/src/vidalia/help/content/po/mk/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/mk/log.po
+++ b/src/vidalia/help/content/po/mk/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mk/running.po b/src/vidalia/help/content/po/mk/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/mk/running.po
+++ b/src/vidalia/help/content/po/mk/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mk/server.po b/src/vidalia/help/content/po/mk/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/mk/server.po
+++ b/src/vidalia/help/content/po/mk/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mk/services.po b/src/vidalia/help/content/po/mk/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/mk/services.po
+++ b/src/vidalia/help/content/po/mk/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mk/troubleshooting.po b/src/vidalia/help/content/po/mk/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/mk/troubleshooting.po
+++ b/src/vidalia/help/content/po/mk/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ml/config.po b/src/vidalia/help/content/po/ml/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ml/config.po
+++ b/src/vidalia/help/content/po/ml/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ml/index.po b/src/vidalia/help/content/po/ml/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ml/index.po
+++ b/src/vidalia/help/content/po/ml/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ml/links.po b/src/vidalia/help/content/po/ml/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ml/links.po
+++ b/src/vidalia/help/content/po/ml/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ml/log.po b/src/vidalia/help/content/po/ml/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ml/log.po
+++ b/src/vidalia/help/content/po/ml/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ml/running.po b/src/vidalia/help/content/po/ml/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ml/running.po
+++ b/src/vidalia/help/content/po/ml/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ml/server.po b/src/vidalia/help/content/po/ml/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ml/server.po
+++ b/src/vidalia/help/content/po/ml/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ml/services.po b/src/vidalia/help/content/po/ml/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ml/services.po
+++ b/src/vidalia/help/content/po/ml/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ml/troubleshooting.po b/src/vidalia/help/content/po/ml/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ml/troubleshooting.po
+++ b/src/vidalia/help/content/po/ml/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mn/config.po b/src/vidalia/help/content/po/mn/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/mn/config.po
+++ b/src/vidalia/help/content/po/mn/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mn/index.po b/src/vidalia/help/content/po/mn/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/mn/index.po
+++ b/src/vidalia/help/content/po/mn/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mn/links.po b/src/vidalia/help/content/po/mn/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/mn/links.po
+++ b/src/vidalia/help/content/po/mn/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mn/log.po b/src/vidalia/help/content/po/mn/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/mn/log.po
+++ b/src/vidalia/help/content/po/mn/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mn/running.po b/src/vidalia/help/content/po/mn/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/mn/running.po
+++ b/src/vidalia/help/content/po/mn/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mn/server.po b/src/vidalia/help/content/po/mn/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/mn/server.po
+++ b/src/vidalia/help/content/po/mn/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mn/services.po b/src/vidalia/help/content/po/mn/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/mn/services.po
+++ b/src/vidalia/help/content/po/mn/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mn/troubleshooting.po b/src/vidalia/help/content/po/mn/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/mn/troubleshooting.po
+++ b/src/vidalia/help/content/po/mn/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mr/config.po b/src/vidalia/help/content/po/mr/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/mr/config.po
+++ b/src/vidalia/help/content/po/mr/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mr/index.po b/src/vidalia/help/content/po/mr/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/mr/index.po
+++ b/src/vidalia/help/content/po/mr/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mr/links.po b/src/vidalia/help/content/po/mr/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/mr/links.po
+++ b/src/vidalia/help/content/po/mr/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mr/log.po b/src/vidalia/help/content/po/mr/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/mr/log.po
+++ b/src/vidalia/help/content/po/mr/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mr/running.po b/src/vidalia/help/content/po/mr/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/mr/running.po
+++ b/src/vidalia/help/content/po/mr/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mr/server.po b/src/vidalia/help/content/po/mr/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/mr/server.po
+++ b/src/vidalia/help/content/po/mr/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mr/services.po b/src/vidalia/help/content/po/mr/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/mr/services.po
+++ b/src/vidalia/help/content/po/mr/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mr/troubleshooting.po b/src/vidalia/help/content/po/mr/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/mr/troubleshooting.po
+++ b/src/vidalia/help/content/po/mr/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ms/config.po b/src/vidalia/help/content/po/ms/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ms/config.po
+++ b/src/vidalia/help/content/po/ms/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ms/index.po b/src/vidalia/help/content/po/ms/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ms/index.po
+++ b/src/vidalia/help/content/po/ms/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ms/links.po b/src/vidalia/help/content/po/ms/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ms/links.po
+++ b/src/vidalia/help/content/po/ms/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ms/log.po b/src/vidalia/help/content/po/ms/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ms/log.po
+++ b/src/vidalia/help/content/po/ms/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ms/running.po b/src/vidalia/help/content/po/ms/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ms/running.po
+++ b/src/vidalia/help/content/po/ms/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ms/server.po b/src/vidalia/help/content/po/ms/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ms/server.po
+++ b/src/vidalia/help/content/po/ms/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ms/services.po b/src/vidalia/help/content/po/ms/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ms/services.po
+++ b/src/vidalia/help/content/po/ms/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ms/troubleshooting.po b/src/vidalia/help/content/po/ms/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ms/troubleshooting.po
+++ b/src/vidalia/help/content/po/ms/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mt/config.po b/src/vidalia/help/content/po/mt/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/mt/config.po
+++ b/src/vidalia/help/content/po/mt/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mt/index.po b/src/vidalia/help/content/po/mt/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/mt/index.po
+++ b/src/vidalia/help/content/po/mt/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mt/links.po b/src/vidalia/help/content/po/mt/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/mt/links.po
+++ b/src/vidalia/help/content/po/mt/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mt/log.po b/src/vidalia/help/content/po/mt/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/mt/log.po
+++ b/src/vidalia/help/content/po/mt/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mt/running.po b/src/vidalia/help/content/po/mt/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/mt/running.po
+++ b/src/vidalia/help/content/po/mt/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mt/server.po b/src/vidalia/help/content/po/mt/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/mt/server.po
+++ b/src/vidalia/help/content/po/mt/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mt/services.po b/src/vidalia/help/content/po/mt/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/mt/services.po
+++ b/src/vidalia/help/content/po/mt/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/mt/troubleshooting.po b/src/vidalia/help/content/po/mt/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/mt/troubleshooting.po
+++ b/src/vidalia/help/content/po/mt/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/my/config.po b/src/vidalia/help/content/po/my/config.po
index 0b9f703..5abc139 100644
--- a/src/vidalia/help/content/po/my/config.po
+++ b/src/vidalia/help/content/po/my/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/my/index.po b/src/vidalia/help/content/po/my/index.po
index 714d8a0..90e2591 100644
--- a/src/vidalia/help/content/po/my/index.po
+++ b/src/vidalia/help/content/po/my/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/my/links.po b/src/vidalia/help/content/po/my/links.po
index 5dd9d2d..98444fe 100644
--- a/src/vidalia/help/content/po/my/links.po
+++ b/src/vidalia/help/content/po/my/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/my/log.po b/src/vidalia/help/content/po/my/log.po
index d8b9ae5..a1ad413 100644
--- a/src/vidalia/help/content/po/my/log.po
+++ b/src/vidalia/help/content/po/my/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/my/netview.po b/src/vidalia/help/content/po/my/netview.po
index 02b38fd..a412447 100644
--- a/src/vidalia/help/content/po/my/netview.po
+++ b/src/vidalia/help/content/po/my/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/my/running.po b/src/vidalia/help/content/po/my/running.po
index 7876f87..ebc24ce 100644
--- a/src/vidalia/help/content/po/my/running.po
+++ b/src/vidalia/help/content/po/my/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/my/server.po b/src/vidalia/help/content/po/my/server.po
index 0d546b8..2af52d7 100644
--- a/src/vidalia/help/content/po/my/server.po
+++ b/src/vidalia/help/content/po/my/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/my/services.po b/src/vidalia/help/content/po/my/services.po
index 406ae23..c46fe5e 100644
--- a/src/vidalia/help/content/po/my/services.po
+++ b/src/vidalia/help/content/po/my/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/my/troubleshooting.po b/src/vidalia/help/content/po/my/troubleshooting.po
index 119aba0..25679c1 100644
--- a/src/vidalia/help/content/po/my/troubleshooting.po
+++ b/src/vidalia/help/content/po/my/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nah/bridges.po b/src/vidalia/help/content/po/nah/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/nah/bridges.po
+++ b/src/vidalia/help/content/po/nah/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/nah/config.po b/src/vidalia/help/content/po/nah/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/nah/config.po
+++ b/src/vidalia/help/content/po/nah/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nah/index.po b/src/vidalia/help/content/po/nah/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/nah/index.po
+++ b/src/vidalia/help/content/po/nah/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nah/links.po b/src/vidalia/help/content/po/nah/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/nah/links.po
+++ b/src/vidalia/help/content/po/nah/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nah/log.po b/src/vidalia/help/content/po/nah/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/nah/log.po
+++ b/src/vidalia/help/content/po/nah/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nah/netview.po b/src/vidalia/help/content/po/nah/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/nah/netview.po
+++ b/src/vidalia/help/content/po/nah/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nah/running.po b/src/vidalia/help/content/po/nah/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/nah/running.po
+++ b/src/vidalia/help/content/po/nah/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nah/server.po b/src/vidalia/help/content/po/nah/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/nah/server.po
+++ b/src/vidalia/help/content/po/nah/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nah/services.po b/src/vidalia/help/content/po/nah/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/nah/services.po
+++ b/src/vidalia/help/content/po/nah/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nah/troubleshooting.po b/src/vidalia/help/content/po/nah/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/nah/troubleshooting.po
+++ b/src/vidalia/help/content/po/nah/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nap/config.po b/src/vidalia/help/content/po/nap/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/nap/config.po
+++ b/src/vidalia/help/content/po/nap/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nap/index.po b/src/vidalia/help/content/po/nap/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/nap/index.po
+++ b/src/vidalia/help/content/po/nap/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nap/links.po b/src/vidalia/help/content/po/nap/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/nap/links.po
+++ b/src/vidalia/help/content/po/nap/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nap/log.po b/src/vidalia/help/content/po/nap/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/nap/log.po
+++ b/src/vidalia/help/content/po/nap/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nap/running.po b/src/vidalia/help/content/po/nap/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/nap/running.po
+++ b/src/vidalia/help/content/po/nap/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nap/server.po b/src/vidalia/help/content/po/nap/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/nap/server.po
+++ b/src/vidalia/help/content/po/nap/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nap/services.po b/src/vidalia/help/content/po/nap/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/nap/services.po
+++ b/src/vidalia/help/content/po/nap/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nap/troubleshooting.po b/src/vidalia/help/content/po/nap/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/nap/troubleshooting.po
+++ b/src/vidalia/help/content/po/nap/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nb/config.po b/src/vidalia/help/content/po/nb/config.po
index 633b48c..e9450b3 100644
--- a/src/vidalia/help/content/po/nb/config.po
+++ b/src/vidalia/help/content/po/nb/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nb/index.po b/src/vidalia/help/content/po/nb/index.po
index 9b5c30e..b4a7941 100644
--- a/src/vidalia/help/content/po/nb/index.po
+++ b/src/vidalia/help/content/po/nb/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nb/links.po b/src/vidalia/help/content/po/nb/links.po
index b0a4119..d2efb53 100644
--- a/src/vidalia/help/content/po/nb/links.po
+++ b/src/vidalia/help/content/po/nb/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nb/log.po b/src/vidalia/help/content/po/nb/log.po
index 8141fba..7e226bc 100644
--- a/src/vidalia/help/content/po/nb/log.po
+++ b/src/vidalia/help/content/po/nb/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nb/running.po b/src/vidalia/help/content/po/nb/running.po
index 43bbb4e..b503af0 100644
--- a/src/vidalia/help/content/po/nb/running.po
+++ b/src/vidalia/help/content/po/nb/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nb/server.po b/src/vidalia/help/content/po/nb/server.po
index 09da128..3cb445f 100644
--- a/src/vidalia/help/content/po/nb/server.po
+++ b/src/vidalia/help/content/po/nb/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nb/services.po b/src/vidalia/help/content/po/nb/services.po
index db5f9fe..73d206c 100644
--- a/src/vidalia/help/content/po/nb/services.po
+++ b/src/vidalia/help/content/po/nb/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nb/troubleshooting.po b/src/vidalia/help/content/po/nb/troubleshooting.po
index f74392b..b495396 100644
--- a/src/vidalia/help/content/po/nb/troubleshooting.po
+++ b/src/vidalia/help/content/po/nb/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ne/config.po b/src/vidalia/help/content/po/ne/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ne/config.po
+++ b/src/vidalia/help/content/po/ne/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ne/index.po b/src/vidalia/help/content/po/ne/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ne/index.po
+++ b/src/vidalia/help/content/po/ne/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ne/links.po b/src/vidalia/help/content/po/ne/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ne/links.po
+++ b/src/vidalia/help/content/po/ne/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ne/log.po b/src/vidalia/help/content/po/ne/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ne/log.po
+++ b/src/vidalia/help/content/po/ne/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ne/running.po b/src/vidalia/help/content/po/ne/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ne/running.po
+++ b/src/vidalia/help/content/po/ne/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ne/server.po b/src/vidalia/help/content/po/ne/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ne/server.po
+++ b/src/vidalia/help/content/po/ne/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ne/services.po b/src/vidalia/help/content/po/ne/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ne/services.po
+++ b/src/vidalia/help/content/po/ne/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ne/troubleshooting.po b/src/vidalia/help/content/po/ne/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ne/troubleshooting.po
+++ b/src/vidalia/help/content/po/ne/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nl/config.po b/src/vidalia/help/content/po/nl/config.po
index f00de70..c733f14 100644
--- a/src/vidalia/help/content/po/nl/config.po
+++ b/src/vidalia/help/content/po/nl/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nl/index.po b/src/vidalia/help/content/po/nl/index.po
index 22d5a88..5138a21 100644
--- a/src/vidalia/help/content/po/nl/index.po
+++ b/src/vidalia/help/content/po/nl/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nl/links.po b/src/vidalia/help/content/po/nl/links.po
index 421bcfb..f14611b 100644
--- a/src/vidalia/help/content/po/nl/links.po
+++ b/src/vidalia/help/content/po/nl/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nl/log.po b/src/vidalia/help/content/po/nl/log.po
index aaef3ff..828c09c 100644
--- a/src/vidalia/help/content/po/nl/log.po
+++ b/src/vidalia/help/content/po/nl/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nl/running.po b/src/vidalia/help/content/po/nl/running.po
index 282c7b9..3f50dcb 100644
--- a/src/vidalia/help/content/po/nl/running.po
+++ b/src/vidalia/help/content/po/nl/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nl/server.po b/src/vidalia/help/content/po/nl/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/nl/server.po
+++ b/src/vidalia/help/content/po/nl/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nl/services.po b/src/vidalia/help/content/po/nl/services.po
index 4091435..3ea2d7d 100644
--- a/src/vidalia/help/content/po/nl/services.po
+++ b/src/vidalia/help/content/po/nl/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nl/troubleshooting.po b/src/vidalia/help/content/po/nl/troubleshooting.po
index cf0c2e7..6011ec5 100644
--- a/src/vidalia/help/content/po/nl/troubleshooting.po
+++ b/src/vidalia/help/content/po/nl/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nn/config.po b/src/vidalia/help/content/po/nn/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/nn/config.po
+++ b/src/vidalia/help/content/po/nn/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nn/index.po b/src/vidalia/help/content/po/nn/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/nn/index.po
+++ b/src/vidalia/help/content/po/nn/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nn/links.po b/src/vidalia/help/content/po/nn/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/nn/links.po
+++ b/src/vidalia/help/content/po/nn/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nn/log.po b/src/vidalia/help/content/po/nn/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/nn/log.po
+++ b/src/vidalia/help/content/po/nn/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nn/running.po b/src/vidalia/help/content/po/nn/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/nn/running.po
+++ b/src/vidalia/help/content/po/nn/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nn/server.po b/src/vidalia/help/content/po/nn/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/nn/server.po
+++ b/src/vidalia/help/content/po/nn/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nn/services.po b/src/vidalia/help/content/po/nn/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/nn/services.po
+++ b/src/vidalia/help/content/po/nn/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nn/troubleshooting.po b/src/vidalia/help/content/po/nn/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/nn/troubleshooting.po
+++ b/src/vidalia/help/content/po/nn/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nso/config.po b/src/vidalia/help/content/po/nso/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/nso/config.po
+++ b/src/vidalia/help/content/po/nso/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nso/index.po b/src/vidalia/help/content/po/nso/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/nso/index.po
+++ b/src/vidalia/help/content/po/nso/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nso/links.po b/src/vidalia/help/content/po/nso/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/nso/links.po
+++ b/src/vidalia/help/content/po/nso/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nso/log.po b/src/vidalia/help/content/po/nso/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/nso/log.po
+++ b/src/vidalia/help/content/po/nso/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nso/running.po b/src/vidalia/help/content/po/nso/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/nso/running.po
+++ b/src/vidalia/help/content/po/nso/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nso/server.po b/src/vidalia/help/content/po/nso/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/nso/server.po
+++ b/src/vidalia/help/content/po/nso/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nso/services.po b/src/vidalia/help/content/po/nso/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/nso/services.po
+++ b/src/vidalia/help/content/po/nso/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/nso/troubleshooting.po b/src/vidalia/help/content/po/nso/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/nso/troubleshooting.po
+++ b/src/vidalia/help/content/po/nso/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/oc/config.po b/src/vidalia/help/content/po/oc/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/oc/config.po
+++ b/src/vidalia/help/content/po/oc/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/oc/index.po b/src/vidalia/help/content/po/oc/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/oc/index.po
+++ b/src/vidalia/help/content/po/oc/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/oc/links.po b/src/vidalia/help/content/po/oc/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/oc/links.po
+++ b/src/vidalia/help/content/po/oc/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/oc/log.po b/src/vidalia/help/content/po/oc/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/oc/log.po
+++ b/src/vidalia/help/content/po/oc/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/oc/running.po b/src/vidalia/help/content/po/oc/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/oc/running.po
+++ b/src/vidalia/help/content/po/oc/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/oc/server.po b/src/vidalia/help/content/po/oc/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/oc/server.po
+++ b/src/vidalia/help/content/po/oc/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/oc/services.po b/src/vidalia/help/content/po/oc/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/oc/services.po
+++ b/src/vidalia/help/content/po/oc/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/oc/troubleshooting.po b/src/vidalia/help/content/po/oc/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/oc/troubleshooting.po
+++ b/src/vidalia/help/content/po/oc/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/or/bridges.po b/src/vidalia/help/content/po/or/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/or/bridges.po
+++ b/src/vidalia/help/content/po/or/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/or/config.po b/src/vidalia/help/content/po/or/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/or/config.po
+++ b/src/vidalia/help/content/po/or/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/or/index.po b/src/vidalia/help/content/po/or/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/or/index.po
+++ b/src/vidalia/help/content/po/or/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/or/links.po b/src/vidalia/help/content/po/or/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/or/links.po
+++ b/src/vidalia/help/content/po/or/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/or/log.po b/src/vidalia/help/content/po/or/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/or/log.po
+++ b/src/vidalia/help/content/po/or/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/or/netview.po b/src/vidalia/help/content/po/or/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/or/netview.po
+++ b/src/vidalia/help/content/po/or/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/or/running.po b/src/vidalia/help/content/po/or/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/or/running.po
+++ b/src/vidalia/help/content/po/or/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/or/server.po b/src/vidalia/help/content/po/or/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/or/server.po
+++ b/src/vidalia/help/content/po/or/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/or/services.po b/src/vidalia/help/content/po/or/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/or/services.po
+++ b/src/vidalia/help/content/po/or/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/or/troubleshooting.po b/src/vidalia/help/content/po/or/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/or/troubleshooting.po
+++ b/src/vidalia/help/content/po/or/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pa/config.po b/src/vidalia/help/content/po/pa/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/pa/config.po
+++ b/src/vidalia/help/content/po/pa/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pa/index.po b/src/vidalia/help/content/po/pa/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/pa/index.po
+++ b/src/vidalia/help/content/po/pa/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pa/links.po b/src/vidalia/help/content/po/pa/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/pa/links.po
+++ b/src/vidalia/help/content/po/pa/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pa/log.po b/src/vidalia/help/content/po/pa/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/pa/log.po
+++ b/src/vidalia/help/content/po/pa/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pa/running.po b/src/vidalia/help/content/po/pa/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/pa/running.po
+++ b/src/vidalia/help/content/po/pa/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pa/server.po b/src/vidalia/help/content/po/pa/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/pa/server.po
+++ b/src/vidalia/help/content/po/pa/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pa/services.po b/src/vidalia/help/content/po/pa/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/pa/services.po
+++ b/src/vidalia/help/content/po/pa/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pa/troubleshooting.po b/src/vidalia/help/content/po/pa/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/pa/troubleshooting.po
+++ b/src/vidalia/help/content/po/pa/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pap/config.po b/src/vidalia/help/content/po/pap/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/pap/config.po
+++ b/src/vidalia/help/content/po/pap/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pap/index.po b/src/vidalia/help/content/po/pap/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/pap/index.po
+++ b/src/vidalia/help/content/po/pap/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pap/links.po b/src/vidalia/help/content/po/pap/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/pap/links.po
+++ b/src/vidalia/help/content/po/pap/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pap/log.po b/src/vidalia/help/content/po/pap/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/pap/log.po
+++ b/src/vidalia/help/content/po/pap/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pap/running.po b/src/vidalia/help/content/po/pap/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/pap/running.po
+++ b/src/vidalia/help/content/po/pap/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pap/server.po b/src/vidalia/help/content/po/pap/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/pap/server.po
+++ b/src/vidalia/help/content/po/pap/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pap/services.po b/src/vidalia/help/content/po/pap/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/pap/services.po
+++ b/src/vidalia/help/content/po/pap/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pap/troubleshooting.po b/src/vidalia/help/content/po/pap/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/pap/troubleshooting.po
+++ b/src/vidalia/help/content/po/pap/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pl/config.po b/src/vidalia/help/content/po/pl/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/pl/config.po
+++ b/src/vidalia/help/content/po/pl/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pl/index.po b/src/vidalia/help/content/po/pl/index.po
index 8f94bbc..3470bd8 100644
--- a/src/vidalia/help/content/po/pl/index.po
+++ b/src/vidalia/help/content/po/pl/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pl/links.po b/src/vidalia/help/content/po/pl/links.po
index 8d49d61..055b6e9 100644
--- a/src/vidalia/help/content/po/pl/links.po
+++ b/src/vidalia/help/content/po/pl/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pl/log.po b/src/vidalia/help/content/po/pl/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/pl/log.po
+++ b/src/vidalia/help/content/po/pl/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pl/running.po b/src/vidalia/help/content/po/pl/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/pl/running.po
+++ b/src/vidalia/help/content/po/pl/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pl/server.po b/src/vidalia/help/content/po/pl/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/pl/server.po
+++ b/src/vidalia/help/content/po/pl/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pl/services.po b/src/vidalia/help/content/po/pl/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/pl/services.po
+++ b/src/vidalia/help/content/po/pl/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pl/troubleshooting.po b/src/vidalia/help/content/po/pl/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/pl/troubleshooting.po
+++ b/src/vidalia/help/content/po/pl/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pms/config.po b/src/vidalia/help/content/po/pms/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/pms/config.po
+++ b/src/vidalia/help/content/po/pms/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pms/index.po b/src/vidalia/help/content/po/pms/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/pms/index.po
+++ b/src/vidalia/help/content/po/pms/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pms/links.po b/src/vidalia/help/content/po/pms/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/pms/links.po
+++ b/src/vidalia/help/content/po/pms/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pms/log.po b/src/vidalia/help/content/po/pms/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/pms/log.po
+++ b/src/vidalia/help/content/po/pms/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pms/running.po b/src/vidalia/help/content/po/pms/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/pms/running.po
+++ b/src/vidalia/help/content/po/pms/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pms/server.po b/src/vidalia/help/content/po/pms/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/pms/server.po
+++ b/src/vidalia/help/content/po/pms/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pms/services.po b/src/vidalia/help/content/po/pms/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/pms/services.po
+++ b/src/vidalia/help/content/po/pms/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pms/troubleshooting.po b/src/vidalia/help/content/po/pms/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/pms/troubleshooting.po
+++ b/src/vidalia/help/content/po/pms/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ps/config.po b/src/vidalia/help/content/po/ps/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ps/config.po
+++ b/src/vidalia/help/content/po/ps/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ps/index.po b/src/vidalia/help/content/po/ps/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ps/index.po
+++ b/src/vidalia/help/content/po/ps/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ps/links.po b/src/vidalia/help/content/po/ps/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ps/links.po
+++ b/src/vidalia/help/content/po/ps/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ps/log.po b/src/vidalia/help/content/po/ps/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ps/log.po
+++ b/src/vidalia/help/content/po/ps/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ps/running.po b/src/vidalia/help/content/po/ps/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ps/running.po
+++ b/src/vidalia/help/content/po/ps/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ps/server.po b/src/vidalia/help/content/po/ps/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ps/server.po
+++ b/src/vidalia/help/content/po/ps/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ps/services.po b/src/vidalia/help/content/po/ps/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ps/services.po
+++ b/src/vidalia/help/content/po/ps/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ps/troubleshooting.po b/src/vidalia/help/content/po/ps/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ps/troubleshooting.po
+++ b/src/vidalia/help/content/po/ps/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt/config.po b/src/vidalia/help/content/po/pt/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/pt/config.po
+++ b/src/vidalia/help/content/po/pt/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt/index.po b/src/vidalia/help/content/po/pt/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/pt/index.po
+++ b/src/vidalia/help/content/po/pt/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt/links.po b/src/vidalia/help/content/po/pt/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/pt/links.po
+++ b/src/vidalia/help/content/po/pt/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt/log.po b/src/vidalia/help/content/po/pt/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/pt/log.po
+++ b/src/vidalia/help/content/po/pt/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt/running.po b/src/vidalia/help/content/po/pt/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/pt/running.po
+++ b/src/vidalia/help/content/po/pt/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt/server.po b/src/vidalia/help/content/po/pt/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/pt/server.po
+++ b/src/vidalia/help/content/po/pt/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt/services.po b/src/vidalia/help/content/po/pt/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/pt/services.po
+++ b/src/vidalia/help/content/po/pt/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt/troubleshooting.po b/src/vidalia/help/content/po/pt/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/pt/troubleshooting.po
+++ b/src/vidalia/help/content/po/pt/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt_BR/config.po b/src/vidalia/help/content/po/pt_BR/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/pt_BR/config.po
+++ b/src/vidalia/help/content/po/pt_BR/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt_BR/index.po b/src/vidalia/help/content/po/pt_BR/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/pt_BR/index.po
+++ b/src/vidalia/help/content/po/pt_BR/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt_BR/links.po b/src/vidalia/help/content/po/pt_BR/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/pt_BR/links.po
+++ b/src/vidalia/help/content/po/pt_BR/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt_BR/log.po b/src/vidalia/help/content/po/pt_BR/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/pt_BR/log.po
+++ b/src/vidalia/help/content/po/pt_BR/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt_BR/running.po b/src/vidalia/help/content/po/pt_BR/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/pt_BR/running.po
+++ b/src/vidalia/help/content/po/pt_BR/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt_BR/server.po b/src/vidalia/help/content/po/pt_BR/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/pt_BR/server.po
+++ b/src/vidalia/help/content/po/pt_BR/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt_BR/services.po b/src/vidalia/help/content/po/pt_BR/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/pt_BR/services.po
+++ b/src/vidalia/help/content/po/pt_BR/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/pt_BR/troubleshooting.po b/src/vidalia/help/content/po/pt_BR/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/pt_BR/troubleshooting.po
+++ b/src/vidalia/help/content/po/pt_BR/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ro/config.po b/src/vidalia/help/content/po/ro/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ro/config.po
+++ b/src/vidalia/help/content/po/ro/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ro/index.po b/src/vidalia/help/content/po/ro/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ro/index.po
+++ b/src/vidalia/help/content/po/ro/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ro/links.po b/src/vidalia/help/content/po/ro/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ro/links.po
+++ b/src/vidalia/help/content/po/ro/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ro/log.po b/src/vidalia/help/content/po/ro/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ro/log.po
+++ b/src/vidalia/help/content/po/ro/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ro/running.po b/src/vidalia/help/content/po/ro/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ro/running.po
+++ b/src/vidalia/help/content/po/ro/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ro/server.po b/src/vidalia/help/content/po/ro/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ro/server.po
+++ b/src/vidalia/help/content/po/ro/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ro/services.po b/src/vidalia/help/content/po/ro/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ro/services.po
+++ b/src/vidalia/help/content/po/ro/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ro/troubleshooting.po b/src/vidalia/help/content/po/ro/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ro/troubleshooting.po
+++ b/src/vidalia/help/content/po/ro/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ru/config.po b/src/vidalia/help/content/po/ru/config.po
index dfbc753..9d25433 100644
--- a/src/vidalia/help/content/po/ru/config.po
+++ b/src/vidalia/help/content/po/ru/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ru/index.po b/src/vidalia/help/content/po/ru/index.po
index 551a8ae..fe5c186 100644
--- a/src/vidalia/help/content/po/ru/index.po
+++ b/src/vidalia/help/content/po/ru/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ru/links.po b/src/vidalia/help/content/po/ru/links.po
index f2c7887..dee8684 100644
--- a/src/vidalia/help/content/po/ru/links.po
+++ b/src/vidalia/help/content/po/ru/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ru/log.po b/src/vidalia/help/content/po/ru/log.po
index 4340250..48612dc 100644
--- a/src/vidalia/help/content/po/ru/log.po
+++ b/src/vidalia/help/content/po/ru/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ru/netview.po b/src/vidalia/help/content/po/ru/netview.po
index b2f7ba2..81470cb 100644
--- a/src/vidalia/help/content/po/ru/netview.po
+++ b/src/vidalia/help/content/po/ru/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ru/running.po b/src/vidalia/help/content/po/ru/running.po
index 7b4529d..6a386e4 100644
--- a/src/vidalia/help/content/po/ru/running.po
+++ b/src/vidalia/help/content/po/ru/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ru/server.po b/src/vidalia/help/content/po/ru/server.po
index 509c8a6..72d6527 100644
--- a/src/vidalia/help/content/po/ru/server.po
+++ b/src/vidalia/help/content/po/ru/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ru/services.po b/src/vidalia/help/content/po/ru/services.po
index 88aac04..b6f478e 100644
--- a/src/vidalia/help/content/po/ru/services.po
+++ b/src/vidalia/help/content/po/ru/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ru/troubleshooting.po b/src/vidalia/help/content/po/ru/troubleshooting.po
index 743f5d6..cc642a2 100644
--- a/src/vidalia/help/content/po/ru/troubleshooting.po
+++ b/src/vidalia/help/content/po/ru/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sco/config.po b/src/vidalia/help/content/po/sco/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/sco/config.po
+++ b/src/vidalia/help/content/po/sco/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sco/index.po b/src/vidalia/help/content/po/sco/index.po
index 8309490..49d7627 100644
--- a/src/vidalia/help/content/po/sco/index.po
+++ b/src/vidalia/help/content/po/sco/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sco/links.po b/src/vidalia/help/content/po/sco/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/sco/links.po
+++ b/src/vidalia/help/content/po/sco/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sco/log.po b/src/vidalia/help/content/po/sco/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/sco/log.po
+++ b/src/vidalia/help/content/po/sco/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sco/running.po b/src/vidalia/help/content/po/sco/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/sco/running.po
+++ b/src/vidalia/help/content/po/sco/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sco/server.po b/src/vidalia/help/content/po/sco/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/sco/server.po
+++ b/src/vidalia/help/content/po/sco/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sco/services.po b/src/vidalia/help/content/po/sco/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/sco/services.po
+++ b/src/vidalia/help/content/po/sco/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sco/troubleshooting.po b/src/vidalia/help/content/po/sco/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/sco/troubleshooting.po
+++ b/src/vidalia/help/content/po/sco/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sk/bridges.po b/src/vidalia/help/content/po/sk/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/sk/bridges.po
+++ b/src/vidalia/help/content/po/sk/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/sk/config.po b/src/vidalia/help/content/po/sk/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/sk/config.po
+++ b/src/vidalia/help/content/po/sk/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sk/index.po b/src/vidalia/help/content/po/sk/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/sk/index.po
+++ b/src/vidalia/help/content/po/sk/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sk/links.po b/src/vidalia/help/content/po/sk/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/sk/links.po
+++ b/src/vidalia/help/content/po/sk/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sk/log.po b/src/vidalia/help/content/po/sk/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/sk/log.po
+++ b/src/vidalia/help/content/po/sk/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sk/netview.po b/src/vidalia/help/content/po/sk/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/sk/netview.po
+++ b/src/vidalia/help/content/po/sk/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sk/running.po b/src/vidalia/help/content/po/sk/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/sk/running.po
+++ b/src/vidalia/help/content/po/sk/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sk/server.po b/src/vidalia/help/content/po/sk/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/sk/server.po
+++ b/src/vidalia/help/content/po/sk/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sk/services.po b/src/vidalia/help/content/po/sk/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/sk/services.po
+++ b/src/vidalia/help/content/po/sk/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sk/troubleshooting.po b/src/vidalia/help/content/po/sk/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/sk/troubleshooting.po
+++ b/src/vidalia/help/content/po/sk/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sl/bridges.po b/src/vidalia/help/content/po/sl/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/sl/bridges.po
+++ b/src/vidalia/help/content/po/sl/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/sl/config.po b/src/vidalia/help/content/po/sl/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/sl/config.po
+++ b/src/vidalia/help/content/po/sl/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sl/index.po b/src/vidalia/help/content/po/sl/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/sl/index.po
+++ b/src/vidalia/help/content/po/sl/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sl/links.po b/src/vidalia/help/content/po/sl/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/sl/links.po
+++ b/src/vidalia/help/content/po/sl/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sl/log.po b/src/vidalia/help/content/po/sl/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/sl/log.po
+++ b/src/vidalia/help/content/po/sl/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sl/netview.po b/src/vidalia/help/content/po/sl/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/sl/netview.po
+++ b/src/vidalia/help/content/po/sl/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sl/running.po b/src/vidalia/help/content/po/sl/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/sl/running.po
+++ b/src/vidalia/help/content/po/sl/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sl/server.po b/src/vidalia/help/content/po/sl/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/sl/server.po
+++ b/src/vidalia/help/content/po/sl/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sl/services.po b/src/vidalia/help/content/po/sl/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/sl/services.po
+++ b/src/vidalia/help/content/po/sl/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sl/troubleshooting.po b/src/vidalia/help/content/po/sl/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/sl/troubleshooting.po
+++ b/src/vidalia/help/content/po/sl/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/so/bridges.po b/src/vidalia/help/content/po/so/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/so/bridges.po
+++ b/src/vidalia/help/content/po/so/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/so/config.po b/src/vidalia/help/content/po/so/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/so/config.po
+++ b/src/vidalia/help/content/po/so/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/so/index.po b/src/vidalia/help/content/po/so/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/so/index.po
+++ b/src/vidalia/help/content/po/so/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/so/links.po b/src/vidalia/help/content/po/so/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/so/links.po
+++ b/src/vidalia/help/content/po/so/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/so/log.po b/src/vidalia/help/content/po/so/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/so/log.po
+++ b/src/vidalia/help/content/po/so/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/so/netview.po b/src/vidalia/help/content/po/so/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/so/netview.po
+++ b/src/vidalia/help/content/po/so/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/so/running.po b/src/vidalia/help/content/po/so/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/so/running.po
+++ b/src/vidalia/help/content/po/so/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/so/server.po b/src/vidalia/help/content/po/so/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/so/server.po
+++ b/src/vidalia/help/content/po/so/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/so/services.po b/src/vidalia/help/content/po/so/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/so/services.po
+++ b/src/vidalia/help/content/po/so/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/so/troubleshooting.po b/src/vidalia/help/content/po/so/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/so/troubleshooting.po
+++ b/src/vidalia/help/content/po/so/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/son/config.po b/src/vidalia/help/content/po/son/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/son/config.po
+++ b/src/vidalia/help/content/po/son/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/son/index.po b/src/vidalia/help/content/po/son/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/son/index.po
+++ b/src/vidalia/help/content/po/son/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/son/links.po b/src/vidalia/help/content/po/son/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/son/links.po
+++ b/src/vidalia/help/content/po/son/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/son/log.po b/src/vidalia/help/content/po/son/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/son/log.po
+++ b/src/vidalia/help/content/po/son/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/son/running.po b/src/vidalia/help/content/po/son/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/son/running.po
+++ b/src/vidalia/help/content/po/son/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/son/server.po b/src/vidalia/help/content/po/son/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/son/server.po
+++ b/src/vidalia/help/content/po/son/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/son/services.po b/src/vidalia/help/content/po/son/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/son/services.po
+++ b/src/vidalia/help/content/po/son/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/son/troubleshooting.po b/src/vidalia/help/content/po/son/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/son/troubleshooting.po
+++ b/src/vidalia/help/content/po/son/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sq/bridges.po b/src/vidalia/help/content/po/sq/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/sq/bridges.po
+++ b/src/vidalia/help/content/po/sq/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/sq/config.po b/src/vidalia/help/content/po/sq/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/sq/config.po
+++ b/src/vidalia/help/content/po/sq/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sq/index.po b/src/vidalia/help/content/po/sq/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/sq/index.po
+++ b/src/vidalia/help/content/po/sq/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sq/links.po b/src/vidalia/help/content/po/sq/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/sq/links.po
+++ b/src/vidalia/help/content/po/sq/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sq/log.po b/src/vidalia/help/content/po/sq/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/sq/log.po
+++ b/src/vidalia/help/content/po/sq/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sq/netview.po b/src/vidalia/help/content/po/sq/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/sq/netview.po
+++ b/src/vidalia/help/content/po/sq/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sq/running.po b/src/vidalia/help/content/po/sq/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/sq/running.po
+++ b/src/vidalia/help/content/po/sq/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sq/server.po b/src/vidalia/help/content/po/sq/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/sq/server.po
+++ b/src/vidalia/help/content/po/sq/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sq/services.po b/src/vidalia/help/content/po/sq/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/sq/services.po
+++ b/src/vidalia/help/content/po/sq/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sq/troubleshooting.po b/src/vidalia/help/content/po/sq/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/sq/troubleshooting.po
+++ b/src/vidalia/help/content/po/sq/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sr/bridges.po b/src/vidalia/help/content/po/sr/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/sr/bridges.po
+++ b/src/vidalia/help/content/po/sr/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/sr/config.po b/src/vidalia/help/content/po/sr/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/sr/config.po
+++ b/src/vidalia/help/content/po/sr/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sr/index.po b/src/vidalia/help/content/po/sr/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/sr/index.po
+++ b/src/vidalia/help/content/po/sr/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sr/links.po b/src/vidalia/help/content/po/sr/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/sr/links.po
+++ b/src/vidalia/help/content/po/sr/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sr/log.po b/src/vidalia/help/content/po/sr/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/sr/log.po
+++ b/src/vidalia/help/content/po/sr/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sr/netview.po b/src/vidalia/help/content/po/sr/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/sr/netview.po
+++ b/src/vidalia/help/content/po/sr/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sr/running.po b/src/vidalia/help/content/po/sr/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/sr/running.po
+++ b/src/vidalia/help/content/po/sr/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sr/server.po b/src/vidalia/help/content/po/sr/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/sr/server.po
+++ b/src/vidalia/help/content/po/sr/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sr/services.po b/src/vidalia/help/content/po/sr/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/sr/services.po
+++ b/src/vidalia/help/content/po/sr/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sr/troubleshooting.po b/src/vidalia/help/content/po/sr/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/sr/troubleshooting.po
+++ b/src/vidalia/help/content/po/sr/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/st/bridges.po b/src/vidalia/help/content/po/st/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/st/bridges.po
+++ b/src/vidalia/help/content/po/st/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/st/config.po b/src/vidalia/help/content/po/st/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/st/config.po
+++ b/src/vidalia/help/content/po/st/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/st/index.po b/src/vidalia/help/content/po/st/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/st/index.po
+++ b/src/vidalia/help/content/po/st/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/st/links.po b/src/vidalia/help/content/po/st/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/st/links.po
+++ b/src/vidalia/help/content/po/st/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/st/log.po b/src/vidalia/help/content/po/st/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/st/log.po
+++ b/src/vidalia/help/content/po/st/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/st/netview.po b/src/vidalia/help/content/po/st/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/st/netview.po
+++ b/src/vidalia/help/content/po/st/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/st/running.po b/src/vidalia/help/content/po/st/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/st/running.po
+++ b/src/vidalia/help/content/po/st/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/st/server.po b/src/vidalia/help/content/po/st/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/st/server.po
+++ b/src/vidalia/help/content/po/st/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/st/services.po b/src/vidalia/help/content/po/st/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/st/services.po
+++ b/src/vidalia/help/content/po/st/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/st/troubleshooting.po b/src/vidalia/help/content/po/st/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/st/troubleshooting.po
+++ b/src/vidalia/help/content/po/st/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/su/config.po b/src/vidalia/help/content/po/su/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/su/config.po
+++ b/src/vidalia/help/content/po/su/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/su/index.po b/src/vidalia/help/content/po/su/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/su/index.po
+++ b/src/vidalia/help/content/po/su/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/su/links.po b/src/vidalia/help/content/po/su/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/su/links.po
+++ b/src/vidalia/help/content/po/su/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/su/log.po b/src/vidalia/help/content/po/su/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/su/log.po
+++ b/src/vidalia/help/content/po/su/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/su/running.po b/src/vidalia/help/content/po/su/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/su/running.po
+++ b/src/vidalia/help/content/po/su/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/su/server.po b/src/vidalia/help/content/po/su/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/su/server.po
+++ b/src/vidalia/help/content/po/su/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/su/services.po b/src/vidalia/help/content/po/su/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/su/services.po
+++ b/src/vidalia/help/content/po/su/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/su/troubleshooting.po b/src/vidalia/help/content/po/su/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/su/troubleshooting.po
+++ b/src/vidalia/help/content/po/su/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sv/bridges.po b/src/vidalia/help/content/po/sv/bridges.po
index 11982c8..a3181cb 100644
--- a/src/vidalia/help/content/po/sv/bridges.po
+++ b/src/vidalia/help/content/po/sv/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/sv/config.po b/src/vidalia/help/content/po/sv/config.po
index 633b48c..e9450b3 100644
--- a/src/vidalia/help/content/po/sv/config.po
+++ b/src/vidalia/help/content/po/sv/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sv/index.po b/src/vidalia/help/content/po/sv/index.po
index 9b5c30e..b4a7941 100644
--- a/src/vidalia/help/content/po/sv/index.po
+++ b/src/vidalia/help/content/po/sv/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sv/links.po b/src/vidalia/help/content/po/sv/links.po
index d5510f0..0c43d47 100644
--- a/src/vidalia/help/content/po/sv/links.po
+++ b/src/vidalia/help/content/po/sv/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sv/log.po b/src/vidalia/help/content/po/sv/log.po
index 8141fba..7e226bc 100644
--- a/src/vidalia/help/content/po/sv/log.po
+++ b/src/vidalia/help/content/po/sv/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sv/netview.po b/src/vidalia/help/content/po/sv/netview.po
index 15de0c5..3ab66ec 100644
--- a/src/vidalia/help/content/po/sv/netview.po
+++ b/src/vidalia/help/content/po/sv/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sv/running.po b/src/vidalia/help/content/po/sv/running.po
index 43bbb4e..b503af0 100644
--- a/src/vidalia/help/content/po/sv/running.po
+++ b/src/vidalia/help/content/po/sv/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sv/server.po b/src/vidalia/help/content/po/sv/server.po
index 09da128..3cb445f 100644
--- a/src/vidalia/help/content/po/sv/server.po
+++ b/src/vidalia/help/content/po/sv/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sv/services.po b/src/vidalia/help/content/po/sv/services.po
index db5f9fe..73d206c 100644
--- a/src/vidalia/help/content/po/sv/services.po
+++ b/src/vidalia/help/content/po/sv/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sv/troubleshooting.po b/src/vidalia/help/content/po/sv/troubleshooting.po
index f74392b..b495396 100644
--- a/src/vidalia/help/content/po/sv/troubleshooting.po
+++ b/src/vidalia/help/content/po/sv/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sw/config.po b/src/vidalia/help/content/po/sw/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/sw/config.po
+++ b/src/vidalia/help/content/po/sw/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sw/index.po b/src/vidalia/help/content/po/sw/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/sw/index.po
+++ b/src/vidalia/help/content/po/sw/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sw/links.po b/src/vidalia/help/content/po/sw/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/sw/links.po
+++ b/src/vidalia/help/content/po/sw/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sw/log.po b/src/vidalia/help/content/po/sw/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/sw/log.po
+++ b/src/vidalia/help/content/po/sw/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sw/running.po b/src/vidalia/help/content/po/sw/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/sw/running.po
+++ b/src/vidalia/help/content/po/sw/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sw/server.po b/src/vidalia/help/content/po/sw/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/sw/server.po
+++ b/src/vidalia/help/content/po/sw/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sw/services.po b/src/vidalia/help/content/po/sw/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/sw/services.po
+++ b/src/vidalia/help/content/po/sw/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/sw/troubleshooting.po b/src/vidalia/help/content/po/sw/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/sw/troubleshooting.po
+++ b/src/vidalia/help/content/po/sw/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ta/config.po b/src/vidalia/help/content/po/ta/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ta/config.po
+++ b/src/vidalia/help/content/po/ta/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ta/index.po b/src/vidalia/help/content/po/ta/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ta/index.po
+++ b/src/vidalia/help/content/po/ta/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ta/links.po b/src/vidalia/help/content/po/ta/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ta/links.po
+++ b/src/vidalia/help/content/po/ta/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ta/log.po b/src/vidalia/help/content/po/ta/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ta/log.po
+++ b/src/vidalia/help/content/po/ta/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ta/running.po b/src/vidalia/help/content/po/ta/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ta/running.po
+++ b/src/vidalia/help/content/po/ta/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ta/server.po b/src/vidalia/help/content/po/ta/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ta/server.po
+++ b/src/vidalia/help/content/po/ta/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ta/services.po b/src/vidalia/help/content/po/ta/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ta/services.po
+++ b/src/vidalia/help/content/po/ta/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ta/troubleshooting.po b/src/vidalia/help/content/po/ta/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ta/troubleshooting.po
+++ b/src/vidalia/help/content/po/ta/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/te/config.po b/src/vidalia/help/content/po/te/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/te/config.po
+++ b/src/vidalia/help/content/po/te/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/te/index.po b/src/vidalia/help/content/po/te/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/te/index.po
+++ b/src/vidalia/help/content/po/te/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/te/links.po b/src/vidalia/help/content/po/te/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/te/links.po
+++ b/src/vidalia/help/content/po/te/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/te/log.po b/src/vidalia/help/content/po/te/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/te/log.po
+++ b/src/vidalia/help/content/po/te/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/te/running.po b/src/vidalia/help/content/po/te/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/te/running.po
+++ b/src/vidalia/help/content/po/te/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/te/server.po b/src/vidalia/help/content/po/te/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/te/server.po
+++ b/src/vidalia/help/content/po/te/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/te/services.po b/src/vidalia/help/content/po/te/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/te/services.po
+++ b/src/vidalia/help/content/po/te/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/te/troubleshooting.po b/src/vidalia/help/content/po/te/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/te/troubleshooting.po
+++ b/src/vidalia/help/content/po/te/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tg/config.po b/src/vidalia/help/content/po/tg/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/tg/config.po
+++ b/src/vidalia/help/content/po/tg/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tg/index.po b/src/vidalia/help/content/po/tg/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/tg/index.po
+++ b/src/vidalia/help/content/po/tg/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tg/links.po b/src/vidalia/help/content/po/tg/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/tg/links.po
+++ b/src/vidalia/help/content/po/tg/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tg/log.po b/src/vidalia/help/content/po/tg/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/tg/log.po
+++ b/src/vidalia/help/content/po/tg/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tg/running.po b/src/vidalia/help/content/po/tg/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/tg/running.po
+++ b/src/vidalia/help/content/po/tg/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tg/server.po b/src/vidalia/help/content/po/tg/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/tg/server.po
+++ b/src/vidalia/help/content/po/tg/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tg/services.po b/src/vidalia/help/content/po/tg/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/tg/services.po
+++ b/src/vidalia/help/content/po/tg/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tg/troubleshooting.po b/src/vidalia/help/content/po/tg/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/tg/troubleshooting.po
+++ b/src/vidalia/help/content/po/tg/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/th/config.po b/src/vidalia/help/content/po/th/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/th/config.po
+++ b/src/vidalia/help/content/po/th/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/th/index.po b/src/vidalia/help/content/po/th/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/th/index.po
+++ b/src/vidalia/help/content/po/th/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/th/links.po b/src/vidalia/help/content/po/th/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/th/links.po
+++ b/src/vidalia/help/content/po/th/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/th/log.po b/src/vidalia/help/content/po/th/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/th/log.po
+++ b/src/vidalia/help/content/po/th/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/th/running.po b/src/vidalia/help/content/po/th/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/th/running.po
+++ b/src/vidalia/help/content/po/th/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/th/server.po b/src/vidalia/help/content/po/th/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/th/server.po
+++ b/src/vidalia/help/content/po/th/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/th/services.po b/src/vidalia/help/content/po/th/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/th/services.po
+++ b/src/vidalia/help/content/po/th/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/th/troubleshooting.po b/src/vidalia/help/content/po/th/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/th/troubleshooting.po
+++ b/src/vidalia/help/content/po/th/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ti/config.po b/src/vidalia/help/content/po/ti/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ti/config.po
+++ b/src/vidalia/help/content/po/ti/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ti/index.po b/src/vidalia/help/content/po/ti/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ti/index.po
+++ b/src/vidalia/help/content/po/ti/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ti/links.po b/src/vidalia/help/content/po/ti/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ti/links.po
+++ b/src/vidalia/help/content/po/ti/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ti/log.po b/src/vidalia/help/content/po/ti/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ti/log.po
+++ b/src/vidalia/help/content/po/ti/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ti/running.po b/src/vidalia/help/content/po/ti/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ti/running.po
+++ b/src/vidalia/help/content/po/ti/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ti/server.po b/src/vidalia/help/content/po/ti/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ti/server.po
+++ b/src/vidalia/help/content/po/ti/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ti/services.po b/src/vidalia/help/content/po/ti/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ti/services.po
+++ b/src/vidalia/help/content/po/ti/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ti/troubleshooting.po b/src/vidalia/help/content/po/ti/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ti/troubleshooting.po
+++ b/src/vidalia/help/content/po/ti/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tk/config.po b/src/vidalia/help/content/po/tk/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/tk/config.po
+++ b/src/vidalia/help/content/po/tk/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tk/index.po b/src/vidalia/help/content/po/tk/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/tk/index.po
+++ b/src/vidalia/help/content/po/tk/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tk/links.po b/src/vidalia/help/content/po/tk/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/tk/links.po
+++ b/src/vidalia/help/content/po/tk/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tk/log.po b/src/vidalia/help/content/po/tk/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/tk/log.po
+++ b/src/vidalia/help/content/po/tk/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tk/running.po b/src/vidalia/help/content/po/tk/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/tk/running.po
+++ b/src/vidalia/help/content/po/tk/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tk/server.po b/src/vidalia/help/content/po/tk/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/tk/server.po
+++ b/src/vidalia/help/content/po/tk/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tk/services.po b/src/vidalia/help/content/po/tk/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/tk/services.po
+++ b/src/vidalia/help/content/po/tk/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tk/troubleshooting.po b/src/vidalia/help/content/po/tk/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/tk/troubleshooting.po
+++ b/src/vidalia/help/content/po/tk/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tr/index.po b/src/vidalia/help/content/po/tr/index.po
index 711a3c6..66d86cd 100644
--- a/src/vidalia/help/content/po/tr/index.po
+++ b/src/vidalia/help/content/po/tr/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tr/links.po b/src/vidalia/help/content/po/tr/links.po
index 0b57eb2..dd69189 100644
--- a/src/vidalia/help/content/po/tr/links.po
+++ b/src/vidalia/help/content/po/tr/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tr/log.po b/src/vidalia/help/content/po/tr/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/tr/log.po
+++ b/src/vidalia/help/content/po/tr/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tr/running.po b/src/vidalia/help/content/po/tr/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/tr/running.po
+++ b/src/vidalia/help/content/po/tr/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tr/server.po b/src/vidalia/help/content/po/tr/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/tr/server.po
+++ b/src/vidalia/help/content/po/tr/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tr/services.po b/src/vidalia/help/content/po/tr/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/tr/services.po
+++ b/src/vidalia/help/content/po/tr/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/tr/troubleshooting.po b/src/vidalia/help/content/po/tr/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/tr/troubleshooting.po
+++ b/src/vidalia/help/content/po/tr/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/uk/config.po b/src/vidalia/help/content/po/uk/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/uk/config.po
+++ b/src/vidalia/help/content/po/uk/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/uk/index.po b/src/vidalia/help/content/po/uk/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/uk/index.po
+++ b/src/vidalia/help/content/po/uk/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/uk/links.po b/src/vidalia/help/content/po/uk/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/uk/links.po
+++ b/src/vidalia/help/content/po/uk/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/uk/log.po b/src/vidalia/help/content/po/uk/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/uk/log.po
+++ b/src/vidalia/help/content/po/uk/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/uk/running.po b/src/vidalia/help/content/po/uk/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/uk/running.po
+++ b/src/vidalia/help/content/po/uk/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/uk/server.po b/src/vidalia/help/content/po/uk/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/uk/server.po
+++ b/src/vidalia/help/content/po/uk/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/uk/services.po b/src/vidalia/help/content/po/uk/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/uk/services.po
+++ b/src/vidalia/help/content/po/uk/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/uk/troubleshooting.po b/src/vidalia/help/content/po/uk/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/uk/troubleshooting.po
+++ b/src/vidalia/help/content/po/uk/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ur/config.po b/src/vidalia/help/content/po/ur/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ur/config.po
+++ b/src/vidalia/help/content/po/ur/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ur/index.po b/src/vidalia/help/content/po/ur/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ur/index.po
+++ b/src/vidalia/help/content/po/ur/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ur/links.po b/src/vidalia/help/content/po/ur/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ur/links.po
+++ b/src/vidalia/help/content/po/ur/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ur/log.po b/src/vidalia/help/content/po/ur/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ur/log.po
+++ b/src/vidalia/help/content/po/ur/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ur/running.po b/src/vidalia/help/content/po/ur/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ur/running.po
+++ b/src/vidalia/help/content/po/ur/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ur/server.po b/src/vidalia/help/content/po/ur/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ur/server.po
+++ b/src/vidalia/help/content/po/ur/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ur/services.po b/src/vidalia/help/content/po/ur/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ur/services.po
+++ b/src/vidalia/help/content/po/ur/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ur/troubleshooting.po b/src/vidalia/help/content/po/ur/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ur/troubleshooting.po
+++ b/src/vidalia/help/content/po/ur/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ve/config.po b/src/vidalia/help/content/po/ve/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/ve/config.po
+++ b/src/vidalia/help/content/po/ve/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ve/index.po b/src/vidalia/help/content/po/ve/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/ve/index.po
+++ b/src/vidalia/help/content/po/ve/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ve/links.po b/src/vidalia/help/content/po/ve/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/ve/links.po
+++ b/src/vidalia/help/content/po/ve/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ve/log.po b/src/vidalia/help/content/po/ve/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/ve/log.po
+++ b/src/vidalia/help/content/po/ve/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ve/running.po b/src/vidalia/help/content/po/ve/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/ve/running.po
+++ b/src/vidalia/help/content/po/ve/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ve/server.po b/src/vidalia/help/content/po/ve/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/ve/server.po
+++ b/src/vidalia/help/content/po/ve/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ve/services.po b/src/vidalia/help/content/po/ve/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/ve/services.po
+++ b/src/vidalia/help/content/po/ve/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/ve/troubleshooting.po b/src/vidalia/help/content/po/ve/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/ve/troubleshooting.po
+++ b/src/vidalia/help/content/po/ve/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/vi/config.po b/src/vidalia/help/content/po/vi/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/vi/config.po
+++ b/src/vidalia/help/content/po/vi/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/vi/index.po b/src/vidalia/help/content/po/vi/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/vi/index.po
+++ b/src/vidalia/help/content/po/vi/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/vi/links.po b/src/vidalia/help/content/po/vi/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/vi/links.po
+++ b/src/vidalia/help/content/po/vi/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/vi/log.po b/src/vidalia/help/content/po/vi/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/vi/log.po
+++ b/src/vidalia/help/content/po/vi/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/vi/running.po b/src/vidalia/help/content/po/vi/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/vi/running.po
+++ b/src/vidalia/help/content/po/vi/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/vi/server.po b/src/vidalia/help/content/po/vi/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/vi/server.po
+++ b/src/vidalia/help/content/po/vi/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/vi/services.po b/src/vidalia/help/content/po/vi/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/vi/services.po
+++ b/src/vidalia/help/content/po/vi/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/vi/troubleshooting.po b/src/vidalia/help/content/po/vi/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/vi/troubleshooting.po
+++ b/src/vidalia/help/content/po/vi/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wa/config.po b/src/vidalia/help/content/po/wa/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/wa/config.po
+++ b/src/vidalia/help/content/po/wa/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wa/index.po b/src/vidalia/help/content/po/wa/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/wa/index.po
+++ b/src/vidalia/help/content/po/wa/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wa/links.po b/src/vidalia/help/content/po/wa/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/wa/links.po
+++ b/src/vidalia/help/content/po/wa/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wa/log.po b/src/vidalia/help/content/po/wa/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/wa/log.po
+++ b/src/vidalia/help/content/po/wa/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wa/running.po b/src/vidalia/help/content/po/wa/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/wa/running.po
+++ b/src/vidalia/help/content/po/wa/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wa/server.po b/src/vidalia/help/content/po/wa/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/wa/server.po
+++ b/src/vidalia/help/content/po/wa/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wa/services.po b/src/vidalia/help/content/po/wa/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/wa/services.po
+++ b/src/vidalia/help/content/po/wa/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wa/troubleshooting.po b/src/vidalia/help/content/po/wa/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/wa/troubleshooting.po
+++ b/src/vidalia/help/content/po/wa/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wo/bridges.po b/src/vidalia/help/content/po/wo/bridges.po
index 7483735..7e87e97 100644
--- a/src/vidalia/help/content/po/wo/bridges.po
+++ b/src/vidalia/help/content/po/wo/bridges.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed by
-# the Vidalia Project at http://www.vidalia-project.net/. No part of
-# Vidalia, including this file, may be copied, modified, propagated, or
+# 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.
#
diff --git a/src/vidalia/help/content/po/wo/config.po b/src/vidalia/help/content/po/wo/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/wo/config.po
+++ b/src/vidalia/help/content/po/wo/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wo/index.po b/src/vidalia/help/content/po/wo/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/wo/index.po
+++ b/src/vidalia/help/content/po/wo/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wo/links.po b/src/vidalia/help/content/po/wo/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/wo/links.po
+++ b/src/vidalia/help/content/po/wo/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wo/log.po b/src/vidalia/help/content/po/wo/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/wo/log.po
+++ b/src/vidalia/help/content/po/wo/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wo/netview.po b/src/vidalia/help/content/po/wo/netview.po
index 47f3d73..133164f 100644
--- a/src/vidalia/help/content/po/wo/netview.po
+++ b/src/vidalia/help/content/po/wo/netview.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wo/running.po b/src/vidalia/help/content/po/wo/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/wo/running.po
+++ b/src/vidalia/help/content/po/wo/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wo/server.po b/src/vidalia/help/content/po/wo/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/wo/server.po
+++ b/src/vidalia/help/content/po/wo/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wo/services.po b/src/vidalia/help/content/po/wo/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/wo/services.po
+++ b/src/vidalia/help/content/po/wo/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/wo/troubleshooting.po b/src/vidalia/help/content/po/wo/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/wo/troubleshooting.po
+++ b/src/vidalia/help/content/po/wo/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_CN/config.po b/src/vidalia/help/content/po/zh_CN/config.po
index 94dd6aa..4415b33 100644
--- a/src/vidalia/help/content/po/zh_CN/config.po
+++ b/src/vidalia/help/content/po/zh_CN/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_CN/index.po b/src/vidalia/help/content/po/zh_CN/index.po
index a134b39..b94bac8 100644
--- a/src/vidalia/help/content/po/zh_CN/index.po
+++ b/src/vidalia/help/content/po/zh_CN/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_CN/links.po b/src/vidalia/help/content/po/zh_CN/links.po
index 9072f74..38d4a2f 100644
--- a/src/vidalia/help/content/po/zh_CN/links.po
+++ b/src/vidalia/help/content/po/zh_CN/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_CN/log.po b/src/vidalia/help/content/po/zh_CN/log.po
index a4f2831..0a62a83 100644
--- a/src/vidalia/help/content/po/zh_CN/log.po
+++ b/src/vidalia/help/content/po/zh_CN/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_CN/running.po b/src/vidalia/help/content/po/zh_CN/running.po
index 0a1c7a0..66b90cf 100644
--- a/src/vidalia/help/content/po/zh_CN/running.po
+++ b/src/vidalia/help/content/po/zh_CN/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_CN/server.po b/src/vidalia/help/content/po/zh_CN/server.po
index 09da128..3cb445f 100644
--- a/src/vidalia/help/content/po/zh_CN/server.po
+++ b/src/vidalia/help/content/po/zh_CN/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_CN/services.po b/src/vidalia/help/content/po/zh_CN/services.po
index db5f9fe..73d206c 100644
--- a/src/vidalia/help/content/po/zh_CN/services.po
+++ b/src/vidalia/help/content/po/zh_CN/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_CN/troubleshooting.po b/src/vidalia/help/content/po/zh_CN/troubleshooting.po
index 53f153f..92dddad 100644
--- a/src/vidalia/help/content/po/zh_CN/troubleshooting.po
+++ b/src/vidalia/help/content/po/zh_CN/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_HK/config.po b/src/vidalia/help/content/po/zh_HK/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/zh_HK/config.po
+++ b/src/vidalia/help/content/po/zh_HK/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_HK/index.po b/src/vidalia/help/content/po/zh_HK/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/zh_HK/index.po
+++ b/src/vidalia/help/content/po/zh_HK/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_HK/links.po b/src/vidalia/help/content/po/zh_HK/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/zh_HK/links.po
+++ b/src/vidalia/help/content/po/zh_HK/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_HK/log.po b/src/vidalia/help/content/po/zh_HK/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/zh_HK/log.po
+++ b/src/vidalia/help/content/po/zh_HK/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_HK/running.po b/src/vidalia/help/content/po/zh_HK/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/zh_HK/running.po
+++ b/src/vidalia/help/content/po/zh_HK/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_HK/server.po b/src/vidalia/help/content/po/zh_HK/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/zh_HK/server.po
+++ b/src/vidalia/help/content/po/zh_HK/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_HK/services.po b/src/vidalia/help/content/po/zh_HK/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/zh_HK/services.po
+++ b/src/vidalia/help/content/po/zh_HK/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_HK/troubleshooting.po b/src/vidalia/help/content/po/zh_HK/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/zh_HK/troubleshooting.po
+++ b/src/vidalia/help/content/po/zh_HK/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_TW/config.po b/src/vidalia/help/content/po/zh_TW/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/zh_TW/config.po
+++ b/src/vidalia/help/content/po/zh_TW/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_TW/index.po b/src/vidalia/help/content/po/zh_TW/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/zh_TW/index.po
+++ b/src/vidalia/help/content/po/zh_TW/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_TW/links.po b/src/vidalia/help/content/po/zh_TW/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/zh_TW/links.po
+++ b/src/vidalia/help/content/po/zh_TW/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_TW/log.po b/src/vidalia/help/content/po/zh_TW/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/zh_TW/log.po
+++ b/src/vidalia/help/content/po/zh_TW/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_TW/running.po b/src/vidalia/help/content/po/zh_TW/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/zh_TW/running.po
+++ b/src/vidalia/help/content/po/zh_TW/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_TW/server.po b/src/vidalia/help/content/po/zh_TW/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/zh_TW/server.po
+++ b/src/vidalia/help/content/po/zh_TW/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_TW/services.po b/src/vidalia/help/content/po/zh_TW/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/zh_TW/services.po
+++ b/src/vidalia/help/content/po/zh_TW/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zh_TW/troubleshooting.po b/src/vidalia/help/content/po/zh_TW/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/zh_TW/troubleshooting.po
+++ b/src/vidalia/help/content/po/zh_TW/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zu/config.po b/src/vidalia/help/content/po/zu/config.po
index 92f675c..537a346 100644
--- a/src/vidalia/help/content/po/zu/config.po
+++ b/src/vidalia/help/content/po/zu/config.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zu/index.po b/src/vidalia/help/content/po/zu/index.po
index 069f01e..45d25be 100644
--- a/src/vidalia/help/content/po/zu/index.po
+++ b/src/vidalia/help/content/po/zu/index.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zu/links.po b/src/vidalia/help/content/po/zu/links.po
index 3d33249..979d89d 100644
--- a/src/vidalia/help/content/po/zu/links.po
+++ b/src/vidalia/help/content/po/zu/links.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zu/log.po b/src/vidalia/help/content/po/zu/log.po
index e222391..b5d3761 100644
--- a/src/vidalia/help/content/po/zu/log.po
+++ b/src/vidalia/help/content/po/zu/log.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zu/running.po b/src/vidalia/help/content/po/zu/running.po
index 6efb482..e28fa1b 100644
--- a/src/vidalia/help/content/po/zu/running.po
+++ b/src/vidalia/help/content/po/zu/running.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zu/server.po b/src/vidalia/help/content/po/zu/server.po
index b1d2c57..bbd257f 100644
--- a/src/vidalia/help/content/po/zu/server.po
+++ b/src/vidalia/help/content/po/zu/server.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zu/services.po b/src/vidalia/help/content/po/zu/services.po
index e4c3cc1..1090190 100644
--- a/src/vidalia/help/content/po/zu/services.po
+++ b/src/vidalia/help/content/po/zu/services.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
diff --git a/src/vidalia/help/content/po/zu/troubleshooting.po b/src/vidalia/help/content/po/zu/troubleshooting.po
index 128dce8..5214888 100644
--- a/src/vidalia/help/content/po/zu/troubleshooting.po
+++ b/src/vidalia/help/content/po/zu/troubleshooting.po
@@ -5,8 +5,8 @@
# the LICENSE file, found in the top level directory of this
# distribution. If you did not receive the LICENSE file with this
# file, you may obtain it from the Vidalia source package distributed
-# by the Vidalia Project at http://www.vidalia-project.net/. No part
-# of Vidalia, including this file, may be copied, modified,
+# by the Vidalia Project at http://www.torproject.org/projects/vidalia.html.
+# No part of Vidalia, including this file, may be copied, modified,
# propagated, or distributed except according to the terms described
# in the LICENSE file.
#
1
0

05 May '11
commit ad14401883aaf0139fe6e16ffb9600efdd4e318b
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Sat Apr 30 01:42:55 2011 -0300
Change Vidalia's URL on most code headers
Also in a couple of the help/contents/ files.
---
doc/vidalia.1.in | 2 +-
src/common/Log.cpp | 6 +++---
src/common/Log.h | 6 +++---
src/common/TorSocket.cpp | 6 +++---
src/common/TorSocket.h | 6 +++---
src/common/ZlibByteArray.cpp | 6 +++---
src/common/ZlibByteArray.h | 6 +++---
src/common/crypto.cpp | 6 +++---
src/common/crypto.h | 6 +++---
src/common/file.cpp | 6 +++---
src/common/file.h | 6 +++---
src/common/html.cpp | 6 +++---
src/common/html.h | 6 +++---
src/common/net.cpp | 6 +++---
src/common/net.h | 6 +++---
src/common/procutil.cpp | 6 +++---
src/common/procutil.h | 6 +++---
src/common/stringutil.cpp | 6 +++---
src/common/stringutil.h | 6 +++---
src/common/win32.cpp | 6 +++---
src/common/win32.h | 6 +++---
src/crashreporter/CrashReportDialog.cpp | 6 +++---
src/crashreporter/CrashReportDialog.h | 6 +++---
src/crashreporter/CrashReportUploader.cpp | 6 +++---
src/crashreporter/CrashReportUploader.h | 6 +++---
src/crashreporter/UploadProgressDialog.cpp | 6 +++---
src/crashreporter/UploadProgressDialog.h | 6 +++---
src/crashreporter/main.cpp | 6 +++---
src/tools/nsh2po/nsh2po.cpp | 6 +++---
src/tools/po2nsh/po2nsh.cpp | 6 +++---
src/tools/po2ts/po2ts.cpp | 6 +++---
src/tools/po2wxl/po2wxl.cpp | 6 +++---
src/tools/ts2po/ts2po.cpp | 6 +++---
src/torcontrol/AddressMap.cpp | 6 +++---
src/torcontrol/AddressMap.h | 6 +++---
src/torcontrol/BootstrapStatus.cpp | 6 +++---
src/torcontrol/BootstrapStatus.h | 6 +++---
src/torcontrol/Circuit.cpp | 6 +++---
src/torcontrol/Circuit.h | 6 +++---
src/torcontrol/ControlCommand.cpp | 6 +++---
src/torcontrol/ControlCommand.h | 6 +++---
src/torcontrol/ControlConnection.cpp | 6 +++---
src/torcontrol/ControlConnection.h | 6 +++---
src/torcontrol/ControlMethod.cpp | 6 +++---
src/torcontrol/ControlMethod.h | 6 +++---
src/torcontrol/ControlReply.cpp | 6 +++---
src/torcontrol/ControlReply.h | 6 +++---
src/torcontrol/ControlSocket.cpp | 6 +++---
src/torcontrol/ControlSocket.h | 6 +++---
src/torcontrol/LogEvent.cpp | 6 +++---
src/torcontrol/LogEvent.h | 6 +++---
src/torcontrol/ProtocolInfo.cpp | 6 +++---
src/torcontrol/ProtocolInfo.h | 6 +++---
src/torcontrol/ReplyLine.cpp | 6 +++---
src/torcontrol/ReplyLine.h | 6 +++---
src/torcontrol/RouterDescriptor.cpp | 6 +++---
src/torcontrol/RouterDescriptor.h | 6 +++---
src/torcontrol/RouterStatus.cpp | 6 +++---
src/torcontrol/RouterStatus.h | 6 +++---
src/torcontrol/SendCommandEvent.cpp | 6 +++---
src/torcontrol/SendCommandEvent.h | 6 +++---
src/torcontrol/Stream.cpp | 6 +++---
src/torcontrol/Stream.h | 6 +++---
src/torcontrol/TorControl.cpp | 6 +++---
src/torcontrol/TorControl.h | 6 +++---
src/torcontrol/TorEvents.cpp | 6 +++---
src/torcontrol/TorEvents.h | 6 +++---
src/torcontrol/TorProcess.cpp | 6 +++---
src/torcontrol/TorProcess.h | 6 +++---
src/torcontrol/TorService.cpp | 6 +++---
src/torcontrol/TorService.h | 6 +++---
src/torcontrol/TorSignal.cpp | 6 +++---
src/torcontrol/TorSignal.h | 6 +++---
src/torcontrol/tcglobal.cpp | 6 +++---
src/torcontrol/tcglobal.h | 6 +++---
src/vidalia/ControlPasswordInputDialog.cpp | 6 +++---
src/vidalia/ControlPasswordInputDialog.h | 6 +++---
src/vidalia/CrashReporter.cpp | 6 +++---
src/vidalia/CrashReporter.h | 6 +++---
src/vidalia/HelperProcess.cpp | 6 +++---
src/vidalia/HelperProcess.h | 6 +++---
src/vidalia/LanguageSupport.cpp | 6 +++---
src/vidalia/LanguageSupport.h | 6 +++---
src/vidalia/MainWindow.cpp | 6 +++---
src/vidalia/MainWindow.h | 6 +++---
src/vidalia/PackageInfo.cpp | 6 +++---
src/vidalia/PackageInfo.h | 6 +++---
src/vidalia/UpdateProcess.cpp | 6 +++---
src/vidalia/UpdateProcess.h | 6 +++---
src/vidalia/UpdateProgressDialog.cpp | 6 +++---
src/vidalia/UpdateProgressDialog.h | 6 +++---
src/vidalia/UpdatesAvailableDialog.cpp | 6 +++---
src/vidalia/UpdatesAvailableDialog.h | 6 +++---
src/vidalia/VClickLabel.cpp | 6 +++---
src/vidalia/VClickLabel.h | 6 +++---
src/vidalia/VMessageBox.cpp | 6 +++---
src/vidalia/VMessageBox.h | 6 +++---
src/vidalia/Vidalia.cpp | 6 +++---
src/vidalia/Vidalia.h | 6 +++---
src/vidalia/VidaliaWindow.cpp | 6 +++---
src/vidalia/VidaliaWindow.h | 6 +++---
src/vidalia/about/AboutDialog.cpp | 6 +++---
src/vidalia/about/AboutDialog.h | 6 +++---
src/vidalia/about/LicenseDialog.cpp | 6 +++---
src/vidalia/about/LicenseDialog.h | 6 +++---
src/vidalia/bwgraph/BandwidthGraph.cpp | 6 +++---
src/vidalia/bwgraph/BandwidthGraph.h | 6 +++---
src/vidalia/bwgraph/GraphFrame.cpp | 6 +++---
src/vidalia/bwgraph/GraphFrame.h | 6 +++---
src/vidalia/config/AbstractTorSettings.cpp | 6 +++---
src/vidalia/config/AbstractTorSettings.h | 6 +++---
src/vidalia/config/AdvancedPage.cpp | 6 +++---
src/vidalia/config/AdvancedPage.h | 6 +++---
src/vidalia/config/AppearancePage.cpp | 6 +++---
src/vidalia/config/AppearancePage.h | 6 +++---
src/vidalia/config/BridgeDownloader.cpp | 6 +++---
src/vidalia/config/BridgeDownloader.h | 6 +++---
.../config/BridgeDownloaderProgressDialog.cpp | 6 +++---
.../config/BridgeDownloaderProgressDialog.h | 6 +++---
src/vidalia/config/BridgeUsageDialog.cpp | 6 +++---
src/vidalia/config/BridgeUsageDialog.h | 6 +++---
src/vidalia/config/ConfigDialog.cpp | 6 +++---
src/vidalia/config/ConfigDialog.h | 6 +++---
src/vidalia/config/ConfigPage.h | 6 +++---
src/vidalia/config/ConfigPageStack.cpp | 6 +++---
src/vidalia/config/ConfigPageStack.h | 6 +++---
src/vidalia/config/DomainValidator.cpp | 6 +++---
src/vidalia/config/DomainValidator.h | 6 +++---
src/vidalia/config/ExitPolicy.cpp | 6 +++---
src/vidalia/config/ExitPolicy.h | 6 +++---
src/vidalia/config/GeneralPage.cpp | 6 +++---
src/vidalia/config/GeneralPage.h | 6 +++---
src/vidalia/config/IpValidator.cpp | 6 +++---
src/vidalia/config/IpValidator.h | 6 +++---
src/vidalia/config/Local8BitStringValidator.cpp | 6 +++---
src/vidalia/config/Local8BitStringValidator.h | 6 +++---
src/vidalia/config/NetworkPage.cpp | 6 +++---
src/vidalia/config/NetworkPage.h | 6 +++---
src/vidalia/config/NetworkSettings.cpp | 6 +++---
src/vidalia/config/NetworkSettings.h | 6 +++---
src/vidalia/config/NicknameValidator.cpp | 6 +++---
src/vidalia/config/NicknameValidator.h | 6 +++---
src/vidalia/config/Policy.cpp | 6 +++---
src/vidalia/config/Policy.h | 6 +++---
src/vidalia/config/PortValidator.cpp | 6 +++---
src/vidalia/config/PortValidator.h | 6 +++---
src/vidalia/config/ServerPage.cpp | 6 +++---
src/vidalia/config/ServerPage.h | 6 +++---
src/vidalia/config/ServerSettings.cpp | 6 +++---
src/vidalia/config/ServerSettings.h | 6 +++---
src/vidalia/config/Service.cpp | 6 +++---
src/vidalia/config/Service.h | 6 +++---
src/vidalia/config/ServiceList.cpp | 6 +++---
src/vidalia/config/ServiceList.h | 6 +++---
src/vidalia/config/ServicePage.cpp | 6 +++---
src/vidalia/config/ServicePage.h | 6 +++---
src/vidalia/config/ServiceSettings.cpp | 6 +++---
src/vidalia/config/ServiceSettings.h | 6 +++---
src/vidalia/config/TorSettings.cpp | 6 +++---
src/vidalia/config/TorSettings.h | 6 +++---
src/vidalia/config/TorrcDialog.cpp | 6 +++---
src/vidalia/config/TorrcDialog.h | 6 +++---
src/vidalia/config/UPNPControl.cpp | 6 +++---
src/vidalia/config/UPNPControl.h | 6 +++---
src/vidalia/config/UPNPControlThread.cpp | 6 +++---
src/vidalia/config/UPNPControlThread.h | 6 +++---
src/vidalia/config/UPNPTestDialog.cpp | 6 +++---
src/vidalia/config/UPNPTestDialog.h | 6 +++---
src/vidalia/config/VSettings.cpp | 6 +++---
src/vidalia/config/VSettings.h | 6 +++---
src/vidalia/config/VidaliaSettings.cpp | 6 +++---
src/vidalia/config/VidaliaSettings.h | 6 +++---
src/vidalia/help/browser/HelpBrowser.cpp | 6 +++---
src/vidalia/help/browser/HelpBrowser.h | 6 +++---
src/vidalia/help/browser/HelpTextBrowser.cpp | 6 +++---
src/vidalia/help/browser/HelpTextBrowser.h | 6 +++---
src/vidalia/help/content/ar/bridges.html | 6 +++---
src/vidalia/help/content/ar/config.html | 6 +++---
src/vidalia/help/content/ar/index.html | 6 +++---
src/vidalia/help/content/ar/links.html | 6 +++---
src/vidalia/help/content/ar/log.html | 6 +++---
src/vidalia/help/content/ar/netview.html | 6 +++---
src/vidalia/help/content/ar/running.html | 6 +++---
src/vidalia/help/content/ar/server.html | 6 +++---
src/vidalia/help/content/ar/services.html | 6 +++---
src/vidalia/help/content/ar/troubleshooting.html | 6 +++---
src/vidalia/help/content/bms/bridges.html | 6 +++---
src/vidalia/help/content/bms/config.html | 6 +++---
src/vidalia/help/content/bms/index.html | 6 +++---
src/vidalia/help/content/bms/links.html | 6 +++---
src/vidalia/help/content/bms/log.html | 6 +++---
src/vidalia/help/content/bms/netview.html | 6 +++---
src/vidalia/help/content/bms/running.html | 6 +++---
src/vidalia/help/content/bms/server.html | 6 +++---
src/vidalia/help/content/bms/services.html | 6 +++---
src/vidalia/help/content/bms/troubleshooting.html | 6 +++---
src/vidalia/help/content/de/config.html | 6 +++---
src/vidalia/help/content/de/index.html | 6 +++---
src/vidalia/help/content/de/links.html | 6 +++---
src/vidalia/help/content/de/log.html | 6 +++---
src/vidalia/help/content/de/netview.html | 6 +++---
src/vidalia/help/content/de/running.html | 6 +++---
src/vidalia/help/content/de/server.html | 6 +++---
src/vidalia/help/content/de/troubleshooting.html | 6 +++---
src/vidalia/help/content/en/bridges.html | 6 +++---
src/vidalia/help/content/en/config.html | 6 +++---
src/vidalia/help/content/en/index.html | 6 +++---
src/vidalia/help/content/en/links.html | 6 +++---
src/vidalia/help/content/en/log.html | 6 +++---
src/vidalia/help/content/en/netview.html | 6 +++---
src/vidalia/help/content/en/running.html | 6 +++---
src/vidalia/help/content/en/server.html | 6 +++---
src/vidalia/help/content/en/services.html | 6 +++---
src/vidalia/help/content/en/troubleshooting.html | 6 +++---
src/vidalia/help/content/es/bridges.html | 6 +++---
src/vidalia/help/content/fa/bridges.html | 6 +++---
src/vidalia/help/content/fa/config.html | 6 +++---
src/vidalia/help/content/fa/index.html | 6 +++---
src/vidalia/help/content/fa/links.html | 6 +++---
src/vidalia/help/content/fa/log.html | 6 +++---
src/vidalia/help/content/fa/netview.html | 6 +++---
src/vidalia/help/content/fa/running.html | 6 +++---
src/vidalia/help/content/fa/server.html | 6 +++---
src/vidalia/help/content/fa/services.html | 6 +++---
src/vidalia/help/content/fa/troubleshooting.html | 6 +++---
src/vidalia/help/content/fi/bridges.html | 6 +++---
src/vidalia/help/content/fi/config.html | 6 +++---
src/vidalia/help/content/fi/index.html | 6 +++---
src/vidalia/help/content/fi/links.html | 6 +++---
src/vidalia/help/content/fi/log.html | 6 +++---
src/vidalia/help/content/fi/netview.html | 6 +++---
src/vidalia/help/content/fi/running.html | 6 +++---
src/vidalia/help/content/fi/server.html | 6 +++---
src/vidalia/help/content/fi/troubleshooting.html | 6 +++---
src/vidalia/help/content/fr/bridges.html | 6 +++---
src/vidalia/help/content/fr/config.html | 6 +++---
src/vidalia/help/content/fr/index.html | 6 +++---
src/vidalia/help/content/fr/links.html | 6 +++---
src/vidalia/help/content/fr/log.html | 6 +++---
src/vidalia/help/content/fr/netview.html | 6 +++---
src/vidalia/help/content/fr/running.html | 6 +++---
src/vidalia/help/content/fr/server.html | 6 +++---
src/vidalia/help/content/fr/services.html | 6 +++---
src/vidalia/help/content/fr/troubleshooting.html | 6 +++---
src/vidalia/help/content/it/links.html | 6 +++---
src/vidalia/help/content/my/bridges.html | 6 +++---
src/vidalia/help/content/my/config.html | 6 +++---
src/vidalia/help/content/my/index.html | 6 +++---
src/vidalia/help/content/my/links.html | 6 +++---
src/vidalia/help/content/my/log.html | 6 +++---
src/vidalia/help/content/my/netview.html | 6 +++---
src/vidalia/help/content/my/running.html | 6 +++---
src/vidalia/help/content/my/server.html | 6 +++---
src/vidalia/help/content/my/services.html | 6 +++---
src/vidalia/help/content/my/troubleshooting.html | 6 +++---
src/vidalia/help/content/nl/index.html | 6 +++---
src/vidalia/help/content/nl/links.html | 6 +++---
src/vidalia/help/content/nl/running.html | 6 +++---
src/vidalia/help/content/pl/bridges.html | 6 +++---
src/vidalia/help/content/pl/index.html | 6 +++---
src/vidalia/help/content/pl/links.html | 6 +++---
src/vidalia/help/content/pt_BR/bridges.html | 6 +++---
src/vidalia/help/content/ru/bridges.html | 6 +++---
src/vidalia/help/content/ru/config.html | 6 +++---
src/vidalia/help/content/ru/index.html | 6 +++---
src/vidalia/help/content/ru/links.html | 6 +++---
src/vidalia/help/content/ru/log.html | 6 +++---
src/vidalia/help/content/ru/netview.html | 6 +++---
src/vidalia/help/content/ru/running.html | 6 +++---
src/vidalia/help/content/ru/server.html | 6 +++---
src/vidalia/help/content/ru/services.html | 6 +++---
src/vidalia/help/content/ru/troubleshooting.html | 6 +++---
src/vidalia/help/content/sv/bridges.html | 6 +++---
src/vidalia/help/content/sv/config.html | 6 +++---
src/vidalia/help/content/sv/index.html | 6 +++---
src/vidalia/help/content/sv/links.html | 6 +++---
src/vidalia/help/content/sv/log.html | 6 +++---
src/vidalia/help/content/sv/netview.html | 6 +++---
src/vidalia/help/content/sv/running.html | 6 +++---
src/vidalia/help/content/sv/server.html | 6 +++---
src/vidalia/help/content/sv/services.html | 6 +++---
src/vidalia/help/content/sv/troubleshooting.html | 6 +++---
src/vidalia/help/content/tr/links.html | 6 +++---
src/vidalia/help/content/zh_CN/bridges.html | 6 +++---
src/vidalia/help/content/zh_CN/config.html | 6 +++---
src/vidalia/help/content/zh_CN/index.html | 6 +++---
src/vidalia/help/content/zh_CN/links.html | 6 +++---
src/vidalia/help/content/zh_CN/log.html | 6 +++---
src/vidalia/help/content/zh_CN/netview.html | 6 +++---
src/vidalia/help/content/zh_CN/running.html | 6 +++---
src/vidalia/help/content/zh_CN/server.html | 6 +++---
.../help/content/zh_CN/troubleshooting.html | 6 +++---
src/vidalia/log/LogFile.cpp | 6 +++---
src/vidalia/log/LogFile.h | 6 +++---
src/vidalia/log/LogHeaderView.cpp | 6 +++---
src/vidalia/log/LogHeaderView.h | 6 +++---
src/vidalia/log/LogMessageColumnDelegate.cpp | 6 +++---
src/vidalia/log/LogMessageColumnDelegate.h | 6 +++---
src/vidalia/log/LogTreeItem.cpp | 6 +++---
src/vidalia/log/LogTreeItem.h | 6 +++---
src/vidalia/log/LogTreeWidget.cpp | 6 +++---
src/vidalia/log/LogTreeWidget.h | 6 +++---
src/vidalia/log/MessageLog.cpp | 6 +++---
src/vidalia/log/MessageLog.h | 6 +++---
src/vidalia/log/StatusEventItem.cpp | 6 +++---
src/vidalia/log/StatusEventItem.h | 6 +++---
src/vidalia/log/StatusEventItemDelegate.cpp | 6 +++---
src/vidalia/log/StatusEventItemDelegate.h | 6 +++---
src/vidalia/log/StatusEventWidget.cpp | 6 +++---
src/vidalia/log/StatusEventWidget.h | 6 +++---
src/vidalia/main.cpp | 6 +++---
src/vidalia/network/CircuitItem.cpp | 6 +++---
src/vidalia/network/CircuitItem.h | 6 +++---
src/vidalia/network/CircuitListWidget.cpp | 6 +++---
src/vidalia/network/CircuitListWidget.h | 6 +++---
src/vidalia/network/CountryInfo.cpp | 6 +++---
src/vidalia/network/CountryInfo.h | 6 +++---
src/vidalia/network/GeoIpDatabase.cpp | 6 +++---
src/vidalia/network/GeoIpDatabase.h | 6 +++---
src/vidalia/network/GeoIpRecord.cpp | 6 +++---
src/vidalia/network/GeoIpRecord.h | 6 +++---
src/vidalia/network/GeoIpResolver.cpp | 6 +++---
src/vidalia/network/GeoIpResolver.h | 6 +++---
src/vidalia/network/NetViewer.cpp | 6 +++---
src/vidalia/network/NetViewer.h | 6 +++---
src/vidalia/network/RouterDescriptorView.cpp | 6 +++---
src/vidalia/network/RouterDescriptorView.h | 6 +++---
src/vidalia/network/RouterInfoDialog.cpp | 6 +++---
src/vidalia/network/RouterInfoDialog.h | 6 +++---
src/vidalia/network/RouterListItem.cpp | 6 +++---
src/vidalia/network/RouterListItem.h | 6 +++---
src/vidalia/network/RouterListWidget.cpp | 6 +++---
src/vidalia/network/RouterListWidget.h | 6 +++---
src/vidalia/network/StreamItem.cpp | 6 +++---
src/vidalia/network/StreamItem.h | 6 +++---
src/vidalia/network/TorMapImageView.cpp | 6 +++---
src/vidalia/network/TorMapImageView.h | 6 +++---
src/vidalia/network/TorMapWidget.cpp | 6 +++---
src/vidalia/network/TorMapWidget.h | 6 +++---
src/vidalia/network/TorMapWidgetInputHandler.cpp | 6 +++---
src/vidalia/network/TorMapWidgetInputHandler.h | 6 +++---
src/vidalia/network/TorMapWidgetPopupMenu.cpp | 6 +++---
src/vidalia/network/TorMapWidgetPopupMenu.h | 6 +++---
src/vidalia/network/ZImageView.cpp | 6 +++---
src/vidalia/network/ZImageView.h | 6 +++---
345 files changed, 1033 insertions(+), 1033 deletions(-)
diff --git a/doc/vidalia.1.in b/doc/vidalia.1.in
index ff17542..8b2b692 100644
--- a/doc/vidalia.1.in
+++ b/doc/vidalia.1.in
@@ -45,7 +45,7 @@ of available language codes.
.SH SEE ALSO
.BR tor (1)
-.BR http://www.vidalia-project.net/
+.BR http://www.torproject.org/projects/vidalia.html
.SH AUTHORS
Matt Edman <edmanm(a)vidalia-project.net>
diff --git a/src/common/Log.cpp b/src/common/Log.cpp
index d38cb9e..8f1d4db 100644
--- a/src/common/Log.cpp
+++ b/src/common/Log.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/Log.h b/src/common/Log.h
index 592b597..89fc529 100644
--- a/src/common/Log.h
+++ b/src/common/Log.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/TorSocket.cpp b/src/common/TorSocket.cpp
index 10651a1..4d37a2d 100644
--- a/src/common/TorSocket.cpp
+++ b/src/common/TorSocket.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/TorSocket.h b/src/common/TorSocket.h
index 46c2581..2b724f8 100644
--- a/src/common/TorSocket.h
+++ b/src/common/TorSocket.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/ZlibByteArray.cpp b/src/common/ZlibByteArray.cpp
index fc6cada..e851dd4 100644
--- a/src/common/ZlibByteArray.cpp
+++ b/src/common/ZlibByteArray.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
**
** * * *
**
diff --git a/src/common/ZlibByteArray.h b/src/common/ZlibByteArray.h
index bd6f6fe..85f6dde 100644
--- a/src/common/ZlibByteArray.h
+++ b/src/common/ZlibByteArray.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
**
** * * *
**
diff --git a/src/common/crypto.cpp b/src/common/crypto.cpp
index 4c2eb99..73c1e44 100644
--- a/src/common/crypto.cpp
+++ b/src/common/crypto.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
**
** * * *
**
diff --git a/src/common/crypto.h b/src/common/crypto.h
index bea1d80..39a4b90 100644
--- a/src/common/crypto.h
+++ b/src/common/crypto.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
**
** * * *
**
diff --git a/src/common/file.cpp b/src/common/file.cpp
index cc8e1c2..a91c06a 100644
--- a/src/common/file.cpp
+++ b/src/common/file.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/file.h b/src/common/file.h
index 3086701..bc0acf3 100644
--- a/src/common/file.h
+++ b/src/common/file.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/html.cpp b/src/common/html.cpp
index 01a7c70..f1a4563 100644
--- a/src/common/html.cpp
+++ b/src/common/html.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/html.h b/src/common/html.h
index 6242158..aa84561 100644
--- a/src/common/html.h
+++ b/src/common/html.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/net.cpp b/src/common/net.cpp
index 2b0690d..c4c68c8 100644
--- a/src/common/net.cpp
+++ b/src/common/net.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/net.h b/src/common/net.h
index 1cf122a..4ab5790 100644
--- a/src/common/net.h
+++ b/src/common/net.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/procutil.cpp b/src/common/procutil.cpp
index c2fbbc4..59b22fa 100644
--- a/src/common/procutil.cpp
+++ b/src/common/procutil.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/procutil.h b/src/common/procutil.h
index 7e9b7dc..843174c 100644
--- a/src/common/procutil.h
+++ b/src/common/procutil.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/stringutil.cpp b/src/common/stringutil.cpp
index 91398f3..404261a 100644
--- a/src/common/stringutil.cpp
+++ b/src/common/stringutil.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/stringutil.h b/src/common/stringutil.h
index 7bf124d..5feb392 100644
--- a/src/common/stringutil.h
+++ b/src/common/stringutil.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/win32.cpp b/src/common/win32.cpp
index e245c3c..814b5a1 100644
--- a/src/common/win32.cpp
+++ b/src/common/win32.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/common/win32.h b/src/common/win32.h
index b1ae9d5..b555d43 100644
--- a/src/common/win32.h
+++ b/src/common/win32.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/crashreporter/CrashReportDialog.cpp b/src/crashreporter/CrashReportDialog.cpp
index f3acc68..4bd0e50 100644
--- a/src/crashreporter/CrashReportDialog.cpp
+++ b/src/crashreporter/CrashReportDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/crashreporter/CrashReportDialog.h b/src/crashreporter/CrashReportDialog.h
index bc05892..4351ddc 100644
--- a/src/crashreporter/CrashReportDialog.h
+++ b/src/crashreporter/CrashReportDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/crashreporter/CrashReportUploader.cpp b/src/crashreporter/CrashReportUploader.cpp
index cd59ee3..aa263c5 100644
--- a/src/crashreporter/CrashReportUploader.cpp
+++ b/src/crashreporter/CrashReportUploader.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/crashreporter/CrashReportUploader.h b/src/crashreporter/CrashReportUploader.h
index dd97954..f5dbe48 100644
--- a/src/crashreporter/CrashReportUploader.h
+++ b/src/crashreporter/CrashReportUploader.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/crashreporter/UploadProgressDialog.cpp b/src/crashreporter/UploadProgressDialog.cpp
index 4030e10..7e5a2d5 100644
--- a/src/crashreporter/UploadProgressDialog.cpp
+++ b/src/crashreporter/UploadProgressDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/crashreporter/UploadProgressDialog.h b/src/crashreporter/UploadProgressDialog.h
index e2cfcec..c41620f 100644
--- a/src/crashreporter/UploadProgressDialog.h
+++ b/src/crashreporter/UploadProgressDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/crashreporter/main.cpp b/src/crashreporter/main.cpp
index 9d77dfd..82ea6f8 100644
--- a/src/crashreporter/main.cpp
+++ b/src/crashreporter/main.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/tools/nsh2po/nsh2po.cpp b/src/tools/nsh2po/nsh2po.cpp
index 9e6ddf4..3f129b2 100644
--- a/src/tools/nsh2po/nsh2po.cpp
+++ b/src/tools/nsh2po/nsh2po.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include <QHash>
diff --git a/src/tools/po2nsh/po2nsh.cpp b/src/tools/po2nsh/po2nsh.cpp
index 979d00a..c83a738 100644
--- a/src/tools/po2nsh/po2nsh.cpp
+++ b/src/tools/po2nsh/po2nsh.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include <QHash>
diff --git a/src/tools/po2ts/po2ts.cpp b/src/tools/po2ts/po2ts.cpp
index 6d401eb..844d348 100644
--- a/src/tools/po2ts/po2ts.cpp
+++ b/src/tools/po2ts/po2ts.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include <QHash>
diff --git a/src/tools/po2wxl/po2wxl.cpp b/src/tools/po2wxl/po2wxl.cpp
index b62ea52..51edcf5 100644
--- a/src/tools/po2wxl/po2wxl.cpp
+++ b/src/tools/po2wxl/po2wxl.cpp
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include <QFile>
diff --git a/src/tools/ts2po/ts2po.cpp b/src/tools/ts2po/ts2po.cpp
index f225dac..02719c3 100644
--- a/src/tools/ts2po/ts2po.cpp
+++ b/src/tools/ts2po/ts2po.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include <QFile>
diff --git a/src/torcontrol/AddressMap.cpp b/src/torcontrol/AddressMap.cpp
index 802d3f3..69d0d62 100644
--- a/src/torcontrol/AddressMap.cpp
+++ b/src/torcontrol/AddressMap.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/AddressMap.h b/src/torcontrol/AddressMap.h
index 10a7b87..791e964 100644
--- a/src/torcontrol/AddressMap.h
+++ b/src/torcontrol/AddressMap.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/BootstrapStatus.cpp b/src/torcontrol/BootstrapStatus.cpp
index 32adaea..8184ffe 100644
--- a/src/torcontrol/BootstrapStatus.cpp
+++ b/src/torcontrol/BootstrapStatus.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/BootstrapStatus.h b/src/torcontrol/BootstrapStatus.h
index 4123def..7526fdb 100644
--- a/src/torcontrol/BootstrapStatus.h
+++ b/src/torcontrol/BootstrapStatus.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/Circuit.cpp b/src/torcontrol/Circuit.cpp
index 4855290..3b6cb80 100644
--- a/src/torcontrol/Circuit.cpp
+++ b/src/torcontrol/Circuit.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/Circuit.h b/src/torcontrol/Circuit.h
index cb6e41a..33f12ef 100644
--- a/src/torcontrol/Circuit.h
+++ b/src/torcontrol/Circuit.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlCommand.cpp b/src/torcontrol/ControlCommand.cpp
index 6dd8ae0..953ee95 100644
--- a/src/torcontrol/ControlCommand.cpp
+++ b/src/torcontrol/ControlCommand.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlCommand.h b/src/torcontrol/ControlCommand.h
index b3bb974..42aba88 100644
--- a/src/torcontrol/ControlCommand.h
+++ b/src/torcontrol/ControlCommand.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlConnection.cpp b/src/torcontrol/ControlConnection.cpp
index 17d32b1..365da32 100644
--- a/src/torcontrol/ControlConnection.cpp
+++ b/src/torcontrol/ControlConnection.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlConnection.h b/src/torcontrol/ControlConnection.h
index 2fa9fc9..5a56ced 100644
--- a/src/torcontrol/ControlConnection.h
+++ b/src/torcontrol/ControlConnection.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlMethod.cpp b/src/torcontrol/ControlMethod.cpp
index c23dace..dbfd948 100644
--- a/src/torcontrol/ControlMethod.cpp
+++ b/src/torcontrol/ControlMethod.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlMethod.h b/src/torcontrol/ControlMethod.h
index 8a593df..3a9fee4 100644
--- a/src/torcontrol/ControlMethod.h
+++ b/src/torcontrol/ControlMethod.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlReply.cpp b/src/torcontrol/ControlReply.cpp
index 296a8a5..c0eaf1d 100644
--- a/src/torcontrol/ControlReply.cpp
+++ b/src/torcontrol/ControlReply.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlReply.h b/src/torcontrol/ControlReply.h
index 421b128..c7400f3 100644
--- a/src/torcontrol/ControlReply.h
+++ b/src/torcontrol/ControlReply.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlSocket.cpp b/src/torcontrol/ControlSocket.cpp
index 8ba8e86..6a4d729 100644
--- a/src/torcontrol/ControlSocket.cpp
+++ b/src/torcontrol/ControlSocket.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ControlSocket.h b/src/torcontrol/ControlSocket.h
index 3dcc36b..995efeb 100644
--- a/src/torcontrol/ControlSocket.h
+++ b/src/torcontrol/ControlSocket.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/LogEvent.cpp b/src/torcontrol/LogEvent.cpp
index f735f5c..ad4dee4 100644
--- a/src/torcontrol/LogEvent.cpp
+++ b/src/torcontrol/LogEvent.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/LogEvent.h b/src/torcontrol/LogEvent.h
index 8a6c019..7f422e5 100644
--- a/src/torcontrol/LogEvent.h
+++ b/src/torcontrol/LogEvent.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ProtocolInfo.cpp b/src/torcontrol/ProtocolInfo.cpp
index 45ebe4a..07acaeb 100644
--- a/src/torcontrol/ProtocolInfo.cpp
+++ b/src/torcontrol/ProtocolInfo.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ProtocolInfo.h b/src/torcontrol/ProtocolInfo.h
index c523db4..1b69589 100644
--- a/src/torcontrol/ProtocolInfo.h
+++ b/src/torcontrol/ProtocolInfo.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ReplyLine.cpp b/src/torcontrol/ReplyLine.cpp
index 093ab39..2973b9d 100644
--- a/src/torcontrol/ReplyLine.cpp
+++ b/src/torcontrol/ReplyLine.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/ReplyLine.h b/src/torcontrol/ReplyLine.h
index 4cc9438..c3fec8d 100644
--- a/src/torcontrol/ReplyLine.h
+++ b/src/torcontrol/ReplyLine.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/RouterDescriptor.cpp b/src/torcontrol/RouterDescriptor.cpp
index 8bae277..e63ca20 100644
--- a/src/torcontrol/RouterDescriptor.cpp
+++ b/src/torcontrol/RouterDescriptor.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/RouterDescriptor.h b/src/torcontrol/RouterDescriptor.h
index 6dbf33d..d4ff868 100644
--- a/src/torcontrol/RouterDescriptor.h
+++ b/src/torcontrol/RouterDescriptor.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/RouterStatus.cpp b/src/torcontrol/RouterStatus.cpp
index b2644ee..9ee795b 100644
--- a/src/torcontrol/RouterStatus.cpp
+++ b/src/torcontrol/RouterStatus.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/RouterStatus.h b/src/torcontrol/RouterStatus.h
index 4315978..c71e548 100644
--- a/src/torcontrol/RouterStatus.h
+++ b/src/torcontrol/RouterStatus.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/SendCommandEvent.cpp b/src/torcontrol/SendCommandEvent.cpp
index 2e88927..8472324 100644
--- a/src/torcontrol/SendCommandEvent.cpp
+++ b/src/torcontrol/SendCommandEvent.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/SendCommandEvent.h b/src/torcontrol/SendCommandEvent.h
index 356ab14..89499f4 100644
--- a/src/torcontrol/SendCommandEvent.h
+++ b/src/torcontrol/SendCommandEvent.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/Stream.cpp b/src/torcontrol/Stream.cpp
index 258638e..e8c2d18 100644
--- a/src/torcontrol/Stream.cpp
+++ b/src/torcontrol/Stream.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/Stream.h b/src/torcontrol/Stream.h
index 860a04b..3a8d9a6 100644
--- a/src/torcontrol/Stream.h
+++ b/src/torcontrol/Stream.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorControl.cpp b/src/torcontrol/TorControl.cpp
index ea09724..57abeb1 100644
--- a/src/torcontrol/TorControl.cpp
+++ b/src/torcontrol/TorControl.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorControl.h b/src/torcontrol/TorControl.h
index 61313ae..589fa23 100644
--- a/src/torcontrol/TorControl.h
+++ b/src/torcontrol/TorControl.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorEvents.cpp b/src/torcontrol/TorEvents.cpp
index 41f85b7..588a093 100644
--- a/src/torcontrol/TorEvents.cpp
+++ b/src/torcontrol/TorEvents.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorEvents.h b/src/torcontrol/TorEvents.h
index 2c5b7f1..58584ee 100644
--- a/src/torcontrol/TorEvents.h
+++ b/src/torcontrol/TorEvents.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorProcess.cpp b/src/torcontrol/TorProcess.cpp
index 00786bd..7275f7a 100644
--- a/src/torcontrol/TorProcess.cpp
+++ b/src/torcontrol/TorProcess.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorProcess.h b/src/torcontrol/TorProcess.h
index 884d039..8438173 100644
--- a/src/torcontrol/TorProcess.h
+++ b/src/torcontrol/TorProcess.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorService.cpp b/src/torcontrol/TorService.cpp
index bcf782f..7214183 100644
--- a/src/torcontrol/TorService.cpp
+++ b/src/torcontrol/TorService.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorService.h b/src/torcontrol/TorService.h
index b7b4bc0..8c4fad0 100644
--- a/src/torcontrol/TorService.h
+++ b/src/torcontrol/TorService.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorSignal.cpp b/src/torcontrol/TorSignal.cpp
index a9bac4b..bdf10ad 100644
--- a/src/torcontrol/TorSignal.cpp
+++ b/src/torcontrol/TorSignal.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/TorSignal.h b/src/torcontrol/TorSignal.h
index cd8bf26..af0769f 100644
--- a/src/torcontrol/TorSignal.h
+++ b/src/torcontrol/TorSignal.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/tcglobal.cpp b/src/torcontrol/tcglobal.cpp
index 6b2b54f..ffbbbfc 100644
--- a/src/torcontrol/tcglobal.cpp
+++ b/src/torcontrol/tcglobal.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/torcontrol/tcglobal.h b/src/torcontrol/tcglobal.h
index 949647d..6c12019 100644
--- a/src/torcontrol/tcglobal.h
+++ b/src/torcontrol/tcglobal.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/ControlPasswordInputDialog.cpp b/src/vidalia/ControlPasswordInputDialog.cpp
index 5cc4dec..554b668 100644
--- a/src/vidalia/ControlPasswordInputDialog.cpp
+++ b/src/vidalia/ControlPasswordInputDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/ControlPasswordInputDialog.h b/src/vidalia/ControlPasswordInputDialog.h
index 9722062..193027b 100644
--- a/src/vidalia/ControlPasswordInputDialog.h
+++ b/src/vidalia/ControlPasswordInputDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/CrashReporter.cpp b/src/vidalia/CrashReporter.cpp
index b3a06fe..82a722f 100644
--- a/src/vidalia/CrashReporter.cpp
+++ b/src/vidalia/CrashReporter.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
** The append_string() function in this file is derived from the implementation
diff --git a/src/vidalia/CrashReporter.h b/src/vidalia/CrashReporter.h
index 3ad3ffb..fbbea94 100644
--- a/src/vidalia/CrashReporter.h
+++ b/src/vidalia/CrashReporter.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/HelperProcess.cpp b/src/vidalia/HelperProcess.cpp
index 07fa733..0abc848 100644
--- a/src/vidalia/HelperProcess.cpp
+++ b/src/vidalia/HelperProcess.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
** This file was originally written by Steven J. Murdoch, and
diff --git a/src/vidalia/HelperProcess.h b/src/vidalia/HelperProcess.h
index 795d077..cf2b234 100644
--- a/src/vidalia/HelperProcess.h
+++ b/src/vidalia/HelperProcess.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
** This file was originally written by Steven J. Murdoch, and
diff --git a/src/vidalia/LanguageSupport.cpp b/src/vidalia/LanguageSupport.cpp
index b9959ae..7433514 100644
--- a/src/vidalia/LanguageSupport.cpp
+++ b/src/vidalia/LanguageSupport.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/LanguageSupport.h b/src/vidalia/LanguageSupport.h
index 4abc6dc..7953314 100644
--- a/src/vidalia/LanguageSupport.h
+++ b/src/vidalia/LanguageSupport.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/MainWindow.cpp b/src/vidalia/MainWindow.cpp
index 3c5c789..411aa69 100644
--- a/src/vidalia/MainWindow.cpp
+++ b/src/vidalia/MainWindow.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/MainWindow.h b/src/vidalia/MainWindow.h
index 1d913d0..6bdfec0 100644
--- a/src/vidalia/MainWindow.h
+++ b/src/vidalia/MainWindow.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/PackageInfo.cpp b/src/vidalia/PackageInfo.cpp
index 59ef18f..d99d701 100644
--- a/src/vidalia/PackageInfo.cpp
+++ b/src/vidalia/PackageInfo.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/PackageInfo.h b/src/vidalia/PackageInfo.h
index e1dc692..41a98d3 100644
--- a/src/vidalia/PackageInfo.h
+++ b/src/vidalia/PackageInfo.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/UpdateProcess.cpp b/src/vidalia/UpdateProcess.cpp
index cc4be98..e930ac4 100644
--- a/src/vidalia/UpdateProcess.cpp
+++ b/src/vidalia/UpdateProcess.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include "UpdateProcess.h"
diff --git a/src/vidalia/UpdateProcess.h b/src/vidalia/UpdateProcess.h
index b92b17e..0224d55 100644
--- a/src/vidalia/UpdateProcess.h
+++ b/src/vidalia/UpdateProcess.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#ifndef _UPDATEPROCESS_H
diff --git a/src/vidalia/UpdateProgressDialog.cpp b/src/vidalia/UpdateProgressDialog.cpp
index 420cbdd..e7b1753 100644
--- a/src/vidalia/UpdateProgressDialog.cpp
+++ b/src/vidalia/UpdateProgressDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include "UpdateProgressDialog.h"
diff --git a/src/vidalia/UpdateProgressDialog.h b/src/vidalia/UpdateProgressDialog.h
index 542bb7d..67a169a 100644
--- a/src/vidalia/UpdateProgressDialog.h
+++ b/src/vidalia/UpdateProgressDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#ifndef _UPDATEPROGRESSDIALOG_H
diff --git a/src/vidalia/UpdatesAvailableDialog.cpp b/src/vidalia/UpdatesAvailableDialog.cpp
index 65249ce..90456d3 100644
--- a/src/vidalia/UpdatesAvailableDialog.cpp
+++ b/src/vidalia/UpdatesAvailableDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/UpdatesAvailableDialog.h b/src/vidalia/UpdatesAvailableDialog.h
index e90a3de..6bf049f 100644
--- a/src/vidalia/UpdatesAvailableDialog.h
+++ b/src/vidalia/UpdatesAvailableDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/VClickLabel.cpp b/src/vidalia/VClickLabel.cpp
index 61e11fe..9691a52 100644
--- a/src/vidalia/VClickLabel.cpp
+++ b/src/vidalia/VClickLabel.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/VClickLabel.h b/src/vidalia/VClickLabel.h
index ae4ec5a..daa7559 100644
--- a/src/vidalia/VClickLabel.h
+++ b/src/vidalia/VClickLabel.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/VMessageBox.cpp b/src/vidalia/VMessageBox.cpp
index 99d8a74..0dbf927 100644
--- a/src/vidalia/VMessageBox.cpp
+++ b/src/vidalia/VMessageBox.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/VMessageBox.h b/src/vidalia/VMessageBox.h
index a4b7f3b..fc96405 100644
--- a/src/vidalia/VMessageBox.h
+++ b/src/vidalia/VMessageBox.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/Vidalia.cpp b/src/vidalia/Vidalia.cpp
index f88c94f..285bde7 100644
--- a/src/vidalia/Vidalia.cpp
+++ b/src/vidalia/Vidalia.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/Vidalia.h b/src/vidalia/Vidalia.h
index bc5d124..421ae68 100644
--- a/src/vidalia/Vidalia.h
+++ b/src/vidalia/Vidalia.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/VidaliaWindow.cpp b/src/vidalia/VidaliaWindow.cpp
index 4bec2bd..446802c 100644
--- a/src/vidalia/VidaliaWindow.cpp
+++ b/src/vidalia/VidaliaWindow.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/VidaliaWindow.h b/src/vidalia/VidaliaWindow.h
index 30b44da..b844afc 100644
--- a/src/vidalia/VidaliaWindow.h
+++ b/src/vidalia/VidaliaWindow.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/about/AboutDialog.cpp b/src/vidalia/about/AboutDialog.cpp
index 56723ef..8188ec1 100644
--- a/src/vidalia/about/AboutDialog.cpp
+++ b/src/vidalia/about/AboutDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/about/AboutDialog.h b/src/vidalia/about/AboutDialog.h
index 1d654e4..d3e3f4e 100644
--- a/src/vidalia/about/AboutDialog.h
+++ b/src/vidalia/about/AboutDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/about/LicenseDialog.cpp b/src/vidalia/about/LicenseDialog.cpp
index ce8b98d..01653cf 100644
--- a/src/vidalia/about/LicenseDialog.cpp
+++ b/src/vidalia/about/LicenseDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/about/LicenseDialog.h b/src/vidalia/about/LicenseDialog.h
index d462c40..c090ba1 100644
--- a/src/vidalia/about/LicenseDialog.h
+++ b/src/vidalia/about/LicenseDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/bwgraph/BandwidthGraph.cpp b/src/vidalia/bwgraph/BandwidthGraph.cpp
index 938f54e..c6c896a 100644
--- a/src/vidalia/bwgraph/BandwidthGraph.cpp
+++ b/src/vidalia/bwgraph/BandwidthGraph.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/bwgraph/BandwidthGraph.h b/src/vidalia/bwgraph/BandwidthGraph.h
index 4de9d22..35989fb 100644
--- a/src/vidalia/bwgraph/BandwidthGraph.h
+++ b/src/vidalia/bwgraph/BandwidthGraph.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/bwgraph/GraphFrame.cpp b/src/vidalia/bwgraph/GraphFrame.cpp
index 1f182c1..c9537a0 100644
--- a/src/vidalia/bwgraph/GraphFrame.cpp
+++ b/src/vidalia/bwgraph/GraphFrame.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/bwgraph/GraphFrame.h b/src/vidalia/bwgraph/GraphFrame.h
index 17367ba..4819396 100644
--- a/src/vidalia/bwgraph/GraphFrame.h
+++ b/src/vidalia/bwgraph/GraphFrame.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/AbstractTorSettings.cpp b/src/vidalia/config/AbstractTorSettings.cpp
index 462eef7..5f1b8aa 100644
--- a/src/vidalia/config/AbstractTorSettings.cpp
+++ b/src/vidalia/config/AbstractTorSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/AbstractTorSettings.h b/src/vidalia/config/AbstractTorSettings.h
index 15770ef..4c5d1b7 100644
--- a/src/vidalia/config/AbstractTorSettings.h
+++ b/src/vidalia/config/AbstractTorSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/AdvancedPage.cpp b/src/vidalia/config/AdvancedPage.cpp
index 94c0308..e07fc51 100644
--- a/src/vidalia/config/AdvancedPage.cpp
+++ b/src/vidalia/config/AdvancedPage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/AdvancedPage.h b/src/vidalia/config/AdvancedPage.h
index de64cbe..4ba26cc 100644
--- a/src/vidalia/config/AdvancedPage.h
+++ b/src/vidalia/config/AdvancedPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/AppearancePage.cpp b/src/vidalia/config/AppearancePage.cpp
index b4a3099..11939c3 100644
--- a/src/vidalia/config/AppearancePage.cpp
+++ b/src/vidalia/config/AppearancePage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/AppearancePage.h b/src/vidalia/config/AppearancePage.h
index b7262a3..9dd94af 100644
--- a/src/vidalia/config/AppearancePage.h
+++ b/src/vidalia/config/AppearancePage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/BridgeDownloader.cpp b/src/vidalia/config/BridgeDownloader.cpp
index d70034d..e3a4f96 100644
--- a/src/vidalia/config/BridgeDownloader.cpp
+++ b/src/vidalia/config/BridgeDownloader.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/BridgeDownloader.h b/src/vidalia/config/BridgeDownloader.h
index 0cb87f4..86d2f25 100644
--- a/src/vidalia/config/BridgeDownloader.h
+++ b/src/vidalia/config/BridgeDownloader.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/BridgeDownloaderProgressDialog.cpp b/src/vidalia/config/BridgeDownloaderProgressDialog.cpp
index b4d8e28..89fcc9a 100644
--- a/src/vidalia/config/BridgeDownloaderProgressDialog.cpp
+++ b/src/vidalia/config/BridgeDownloaderProgressDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/BridgeDownloaderProgressDialog.h b/src/vidalia/config/BridgeDownloaderProgressDialog.h
index 86fb0d3..b935a16 100644
--- a/src/vidalia/config/BridgeDownloaderProgressDialog.h
+++ b/src/vidalia/config/BridgeDownloaderProgressDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/BridgeUsageDialog.cpp b/src/vidalia/config/BridgeUsageDialog.cpp
index a120fe1..ce29d3f 100644
--- a/src/vidalia/config/BridgeUsageDialog.cpp
+++ b/src/vidalia/config/BridgeUsageDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/BridgeUsageDialog.h b/src/vidalia/config/BridgeUsageDialog.h
index 5177254..0f82de5 100644
--- a/src/vidalia/config/BridgeUsageDialog.h
+++ b/src/vidalia/config/BridgeUsageDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ConfigDialog.cpp b/src/vidalia/config/ConfigDialog.cpp
index d147ab8..bb711dc 100644
--- a/src/vidalia/config/ConfigDialog.cpp
+++ b/src/vidalia/config/ConfigDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ConfigDialog.h b/src/vidalia/config/ConfigDialog.h
index 1362038..499a9ae 100644
--- a/src/vidalia/config/ConfigDialog.h
+++ b/src/vidalia/config/ConfigDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ConfigPage.h b/src/vidalia/config/ConfigPage.h
index 1e8eea8..2a237c1 100644
--- a/src/vidalia/config/ConfigPage.h
+++ b/src/vidalia/config/ConfigPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ConfigPageStack.cpp b/src/vidalia/config/ConfigPageStack.cpp
index c8302c5..d7bd5c6 100644
--- a/src/vidalia/config/ConfigPageStack.cpp
+++ b/src/vidalia/config/ConfigPageStack.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ConfigPageStack.h b/src/vidalia/config/ConfigPageStack.h
index 00af77b..377bfd2 100644
--- a/src/vidalia/config/ConfigPageStack.h
+++ b/src/vidalia/config/ConfigPageStack.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/DomainValidator.cpp b/src/vidalia/config/DomainValidator.cpp
index 2ee67cb..ff16e0d 100644
--- a/src/vidalia/config/DomainValidator.cpp
+++ b/src/vidalia/config/DomainValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/DomainValidator.h b/src/vidalia/config/DomainValidator.h
index 996f7f4..8b06880 100644
--- a/src/vidalia/config/DomainValidator.h
+++ b/src/vidalia/config/DomainValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ExitPolicy.cpp b/src/vidalia/config/ExitPolicy.cpp
index 831b4d8..467ed27 100644
--- a/src/vidalia/config/ExitPolicy.cpp
+++ b/src/vidalia/config/ExitPolicy.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ExitPolicy.h b/src/vidalia/config/ExitPolicy.h
index 80f8e88..420cccb 100644
--- a/src/vidalia/config/ExitPolicy.h
+++ b/src/vidalia/config/ExitPolicy.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/GeneralPage.cpp b/src/vidalia/config/GeneralPage.cpp
index eef0d90..0faca19 100644
--- a/src/vidalia/config/GeneralPage.cpp
+++ b/src/vidalia/config/GeneralPage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/GeneralPage.h b/src/vidalia/config/GeneralPage.h
index ac43f71..44077e1 100644
--- a/src/vidalia/config/GeneralPage.h
+++ b/src/vidalia/config/GeneralPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/IpValidator.cpp b/src/vidalia/config/IpValidator.cpp
index 87594f9..839caa8 100644
--- a/src/vidalia/config/IpValidator.cpp
+++ b/src/vidalia/config/IpValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/IpValidator.h b/src/vidalia/config/IpValidator.h
index d757eb9..b52c134 100644
--- a/src/vidalia/config/IpValidator.h
+++ b/src/vidalia/config/IpValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/Local8BitStringValidator.cpp b/src/vidalia/config/Local8BitStringValidator.cpp
index 7d1e0dc..ac960e2 100644
--- a/src/vidalia/config/Local8BitStringValidator.cpp
+++ b/src/vidalia/config/Local8BitStringValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/Local8BitStringValidator.h b/src/vidalia/config/Local8BitStringValidator.h
index ee796aa..ee07703 100644
--- a/src/vidalia/config/Local8BitStringValidator.h
+++ b/src/vidalia/config/Local8BitStringValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/NetworkPage.cpp b/src/vidalia/config/NetworkPage.cpp
index f5bbc72..85be25f 100644
--- a/src/vidalia/config/NetworkPage.cpp
+++ b/src/vidalia/config/NetworkPage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/NetworkPage.h b/src/vidalia/config/NetworkPage.h
index 04b06ab..c198573 100644
--- a/src/vidalia/config/NetworkPage.h
+++ b/src/vidalia/config/NetworkPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/NetworkSettings.cpp b/src/vidalia/config/NetworkSettings.cpp
index ff2e7d3..de818f4 100644
--- a/src/vidalia/config/NetworkSettings.cpp
+++ b/src/vidalia/config/NetworkSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/NetworkSettings.h b/src/vidalia/config/NetworkSettings.h
index e610224..fe555e3 100644
--- a/src/vidalia/config/NetworkSettings.h
+++ b/src/vidalia/config/NetworkSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/NicknameValidator.cpp b/src/vidalia/config/NicknameValidator.cpp
index e960481..76a9aed 100644
--- a/src/vidalia/config/NicknameValidator.cpp
+++ b/src/vidalia/config/NicknameValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/NicknameValidator.h b/src/vidalia/config/NicknameValidator.h
index c8192e5..ca6c562 100644
--- a/src/vidalia/config/NicknameValidator.h
+++ b/src/vidalia/config/NicknameValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/Policy.cpp b/src/vidalia/config/Policy.cpp
index 0c73e04..94579fd 100644
--- a/src/vidalia/config/Policy.cpp
+++ b/src/vidalia/config/Policy.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/Policy.h b/src/vidalia/config/Policy.h
index 28f5871..2d73533 100644
--- a/src/vidalia/config/Policy.h
+++ b/src/vidalia/config/Policy.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/PortValidator.cpp b/src/vidalia/config/PortValidator.cpp
index c328963..b5f4e2b 100644
--- a/src/vidalia/config/PortValidator.cpp
+++ b/src/vidalia/config/PortValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/PortValidator.h b/src/vidalia/config/PortValidator.h
index 062ed7b..1e4aa4d 100644
--- a/src/vidalia/config/PortValidator.h
+++ b/src/vidalia/config/PortValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ServerPage.cpp b/src/vidalia/config/ServerPage.cpp
index d42fb70..aaadbfc 100644
--- a/src/vidalia/config/ServerPage.cpp
+++ b/src/vidalia/config/ServerPage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ServerPage.h b/src/vidalia/config/ServerPage.h
index d40e605..03e4938 100644
--- a/src/vidalia/config/ServerPage.h
+++ b/src/vidalia/config/ServerPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ServerSettings.cpp b/src/vidalia/config/ServerSettings.cpp
index 22de6d6..91f8600 100644
--- a/src/vidalia/config/ServerSettings.cpp
+++ b/src/vidalia/config/ServerSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/ServerSettings.h b/src/vidalia/config/ServerSettings.h
index 79a5db9..775c92d 100644
--- a/src/vidalia/config/ServerSettings.h
+++ b/src/vidalia/config/ServerSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/Service.cpp b/src/vidalia/config/Service.cpp
index 3e9b7f8..c880529 100644
--- a/src/vidalia/config/Service.cpp
+++ b/src/vidalia/config/Service.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include "Service.h"
diff --git a/src/vidalia/config/Service.h b/src/vidalia/config/Service.h
index 8218774..6c6a790 100644
--- a/src/vidalia/config/Service.h
+++ b/src/vidalia/config/Service.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#ifndef _SERVICE_H
diff --git a/src/vidalia/config/ServiceList.cpp b/src/vidalia/config/ServiceList.cpp
index 7ce8c24..fd644f0 100644
--- a/src/vidalia/config/ServiceList.cpp
+++ b/src/vidalia/config/ServiceList.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include "ServiceList.h"
diff --git a/src/vidalia/config/ServiceList.h b/src/vidalia/config/ServiceList.h
index fb35f9c..a5c216d 100644
--- a/src/vidalia/config/ServiceList.h
+++ b/src/vidalia/config/ServiceList.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#ifndef _SERVICELIST_H
diff --git a/src/vidalia/config/ServicePage.cpp b/src/vidalia/config/ServicePage.cpp
index 91c29da..ac412f9 100644
--- a/src/vidalia/config/ServicePage.cpp
+++ b/src/vidalia/config/ServicePage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include "ServicePage.h"
diff --git a/src/vidalia/config/ServicePage.h b/src/vidalia/config/ServicePage.h
index bdb0c51..70c53cf 100644
--- a/src/vidalia/config/ServicePage.h
+++ b/src/vidalia/config/ServicePage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#ifndef _SERVICEPAGE_H
diff --git a/src/vidalia/config/ServiceSettings.cpp b/src/vidalia/config/ServiceSettings.cpp
index d74ab43..3c6fa91 100644
--- a/src/vidalia/config/ServiceSettings.cpp
+++ b/src/vidalia/config/ServiceSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include "ServiceSettings.h"
diff --git a/src/vidalia/config/ServiceSettings.h b/src/vidalia/config/ServiceSettings.h
index dc2d677..946dc62 100644
--- a/src/vidalia/config/ServiceSettings.h
+++ b/src/vidalia/config/ServiceSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#ifndef _SERVICESETTINGS_H
diff --git a/src/vidalia/config/TorSettings.cpp b/src/vidalia/config/TorSettings.cpp
index 046ff72..106938a 100644
--- a/src/vidalia/config/TorSettings.cpp
+++ b/src/vidalia/config/TorSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/TorSettings.h b/src/vidalia/config/TorSettings.h
index a116c61..e5679a7 100644
--- a/src/vidalia/config/TorSettings.h
+++ b/src/vidalia/config/TorSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/TorrcDialog.cpp b/src/vidalia/config/TorrcDialog.cpp
index 81d1a4a..08dd6a0 100644
--- a/src/vidalia/config/TorrcDialog.cpp
+++ b/src/vidalia/config/TorrcDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/TorrcDialog.h b/src/vidalia/config/TorrcDialog.h
index b5eadcc..0d60804 100644
--- a/src/vidalia/config/TorrcDialog.h
+++ b/src/vidalia/config/TorrcDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/UPNPControl.cpp b/src/vidalia/config/UPNPControl.cpp
index a87f785..f1003c9 100644
--- a/src/vidalia/config/UPNPControl.cpp
+++ b/src/vidalia/config/UPNPControl.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/UPNPControl.h b/src/vidalia/config/UPNPControl.h
index 2e7006a..17d462d 100644
--- a/src/vidalia/config/UPNPControl.h
+++ b/src/vidalia/config/UPNPControl.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/UPNPControlThread.cpp b/src/vidalia/config/UPNPControlThread.cpp
index d92ff46..25f5649 100644
--- a/src/vidalia/config/UPNPControlThread.cpp
+++ b/src/vidalia/config/UPNPControlThread.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/UPNPControlThread.h b/src/vidalia/config/UPNPControlThread.h
index 4a183f1..8b366ab 100644
--- a/src/vidalia/config/UPNPControlThread.h
+++ b/src/vidalia/config/UPNPControlThread.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/UPNPTestDialog.cpp b/src/vidalia/config/UPNPTestDialog.cpp
index 7c28cd8..9652027 100644
--- a/src/vidalia/config/UPNPTestDialog.cpp
+++ b/src/vidalia/config/UPNPTestDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/UPNPTestDialog.h b/src/vidalia/config/UPNPTestDialog.h
index 1c26212..2204e26 100644
--- a/src/vidalia/config/UPNPTestDialog.h
+++ b/src/vidalia/config/UPNPTestDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/VSettings.cpp b/src/vidalia/config/VSettings.cpp
index 168392c..aab0f9b 100644
--- a/src/vidalia/config/VSettings.cpp
+++ b/src/vidalia/config/VSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/VSettings.h b/src/vidalia/config/VSettings.h
index d921b97..ed31255 100644
--- a/src/vidalia/config/VSettings.h
+++ b/src/vidalia/config/VSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/VidaliaSettings.cpp b/src/vidalia/config/VidaliaSettings.cpp
index f16e456..0812b03 100644
--- a/src/vidalia/config/VidaliaSettings.cpp
+++ b/src/vidalia/config/VidaliaSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/config/VidaliaSettings.h b/src/vidalia/config/VidaliaSettings.h
index dbcc860..2667b12 100644
--- a/src/vidalia/config/VidaliaSettings.h
+++ b/src/vidalia/config/VidaliaSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/help/browser/HelpBrowser.cpp b/src/vidalia/help/browser/HelpBrowser.cpp
index 94d77c3..34ee1b0 100644
--- a/src/vidalia/help/browser/HelpBrowser.cpp
+++ b/src/vidalia/help/browser/HelpBrowser.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/help/browser/HelpBrowser.h b/src/vidalia/help/browser/HelpBrowser.h
index 2170822..2b9bdd5 100644
--- a/src/vidalia/help/browser/HelpBrowser.h
+++ b/src/vidalia/help/browser/HelpBrowser.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/help/browser/HelpTextBrowser.cpp b/src/vidalia/help/browser/HelpTextBrowser.cpp
index cb525ab..d580825 100644
--- a/src/vidalia/help/browser/HelpTextBrowser.cpp
+++ b/src/vidalia/help/browser/HelpTextBrowser.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/help/browser/HelpTextBrowser.h b/src/vidalia/help/browser/HelpTextBrowser.h
index 5ca8700..c222eee 100644
--- a/src/vidalia/help/browser/HelpTextBrowser.h
+++ b/src/vidalia/help/browser/HelpTextBrowser.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/help/content/ar/bridges.html b/src/vidalia/help/content/ar/bridges.html
index 8bf082a..9559708 100644
--- a/src/vidalia/help/content/ar/bridges.html
+++ b/src/vidalia/help/content/ar/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/config.html b/src/vidalia/help/content/ar/config.html
index 1131faa..1c5fa66 100644
--- a/src/vidalia/help/content/ar/config.html
+++ b/src/vidalia/help/content/ar/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/index.html b/src/vidalia/help/content/ar/index.html
index 6ac88a6..44adde7 100644
--- a/src/vidalia/help/content/ar/index.html
+++ b/src/vidalia/help/content/ar/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/links.html b/src/vidalia/help/content/ar/links.html
index e2754c4..3238a53 100644
--- a/src/vidalia/help/content/ar/links.html
+++ b/src/vidalia/help/content/ar/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/log.html b/src/vidalia/help/content/ar/log.html
index b0ba06c..27273dd 100644
--- a/src/vidalia/help/content/ar/log.html
+++ b/src/vidalia/help/content/ar/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/netview.html b/src/vidalia/help/content/ar/netview.html
index 3d065f0..f73f684 100644
--- a/src/vidalia/help/content/ar/netview.html
+++ b/src/vidalia/help/content/ar/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/running.html b/src/vidalia/help/content/ar/running.html
index 4f66c60..bfb03df 100644
--- a/src/vidalia/help/content/ar/running.html
+++ b/src/vidalia/help/content/ar/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/server.html b/src/vidalia/help/content/ar/server.html
index 05d03a9..75c91dd 100644
--- a/src/vidalia/help/content/ar/server.html
+++ b/src/vidalia/help/content/ar/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/services.html b/src/vidalia/help/content/ar/services.html
index 97d57bc..cc60e58 100644
--- a/src/vidalia/help/content/ar/services.html
+++ b/src/vidalia/help/content/ar/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/troubleshooting.html b/src/vidalia/help/content/ar/troubleshooting.html
index 04426f4..7420f5d 100644
--- a/src/vidalia/help/content/ar/troubleshooting.html
+++ b/src/vidalia/help/content/ar/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/bridges.html b/src/vidalia/help/content/bms/bridges.html
index 5b2567c..26b850c 100644
--- a/src/vidalia/help/content/bms/bridges.html
+++ b/src/vidalia/help/content/bms/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/config.html b/src/vidalia/help/content/bms/config.html
index 693c1d2..a6f510c 100644
--- a/src/vidalia/help/content/bms/config.html
+++ b/src/vidalia/help/content/bms/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/index.html b/src/vidalia/help/content/bms/index.html
index 1704fa3..853ddfc 100644
--- a/src/vidalia/help/content/bms/index.html
+++ b/src/vidalia/help/content/bms/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/links.html b/src/vidalia/help/content/bms/links.html
index 0f5678d..ac2c75d 100644
--- a/src/vidalia/help/content/bms/links.html
+++ b/src/vidalia/help/content/bms/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/log.html b/src/vidalia/help/content/bms/log.html
index 2ea865d..1f17b37 100644
--- a/src/vidalia/help/content/bms/log.html
+++ b/src/vidalia/help/content/bms/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/netview.html b/src/vidalia/help/content/bms/netview.html
index 9f504ed..8916aad 100644
--- a/src/vidalia/help/content/bms/netview.html
+++ b/src/vidalia/help/content/bms/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/running.html b/src/vidalia/help/content/bms/running.html
index fb3a058..8307fd0 100644
--- a/src/vidalia/help/content/bms/running.html
+++ b/src/vidalia/help/content/bms/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/server.html b/src/vidalia/help/content/bms/server.html
index 6dae358..ddebdeb 100644
--- a/src/vidalia/help/content/bms/server.html
+++ b/src/vidalia/help/content/bms/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/services.html b/src/vidalia/help/content/bms/services.html
index b13f598..9d1c92c 100644
--- a/src/vidalia/help/content/bms/services.html
+++ b/src/vidalia/help/content/bms/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/troubleshooting.html b/src/vidalia/help/content/bms/troubleshooting.html
index 112d41d..ad93d22 100644
--- a/src/vidalia/help/content/bms/troubleshooting.html
+++ b/src/vidalia/help/content/bms/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/config.html b/src/vidalia/help/content/de/config.html
index bb47085..876f04b 100644
--- a/src/vidalia/help/content/de/config.html
+++ b/src/vidalia/help/content/de/config.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/de/index.html b/src/vidalia/help/content/de/index.html
index d8d9c02..836ac3e 100644
--- a/src/vidalia/help/content/de/index.html
+++ b/src/vidalia/help/content/de/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/links.html b/src/vidalia/help/content/de/links.html
index 0d73e07..3a2a64b 100644
--- a/src/vidalia/help/content/de/links.html
+++ b/src/vidalia/help/content/de/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/log.html b/src/vidalia/help/content/de/log.html
index 6c9d9fb..04a3213 100644
--- a/src/vidalia/help/content/de/log.html
+++ b/src/vidalia/help/content/de/log.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/de/netview.html b/src/vidalia/help/content/de/netview.html
index 1e0adc4..9cc77c1 100644
--- a/src/vidalia/help/content/de/netview.html
+++ b/src/vidalia/help/content/de/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/running.html b/src/vidalia/help/content/de/running.html
index 3dc8f48..068c113 100644
--- a/src/vidalia/help/content/de/running.html
+++ b/src/vidalia/help/content/de/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/server.html b/src/vidalia/help/content/de/server.html
index 8d0c365..da7a72b 100644
--- a/src/vidalia/help/content/de/server.html
+++ b/src/vidalia/help/content/de/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/de/troubleshooting.html b/src/vidalia/help/content/de/troubleshooting.html
index 12e0a19..3855400 100644
--- a/src/vidalia/help/content/de/troubleshooting.html
+++ b/src/vidalia/help/content/de/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/bridges.html b/src/vidalia/help/content/en/bridges.html
index 8f99cd3..24a0c27 100644
--- a/src/vidalia/help/content/en/bridges.html
+++ b/src/vidalia/help/content/en/bridges.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/config.html b/src/vidalia/help/content/en/config.html
index 889a402..b1c25c0 100644
--- a/src/vidalia/help/content/en/config.html
+++ b/src/vidalia/help/content/en/config.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/index.html b/src/vidalia/help/content/en/index.html
index d9710d7..8ea83d3 100644
--- a/src/vidalia/help/content/en/index.html
+++ b/src/vidalia/help/content/en/index.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/links.html b/src/vidalia/help/content/en/links.html
index 20eafd3..479dd4e 100644
--- a/src/vidalia/help/content/en/links.html
+++ b/src/vidalia/help/content/en/links.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/log.html b/src/vidalia/help/content/en/log.html
index 5731710..966b4ba 100644
--- a/src/vidalia/help/content/en/log.html
+++ b/src/vidalia/help/content/en/log.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/netview.html b/src/vidalia/help/content/en/netview.html
index e34aa0d..5e887be 100644
--- a/src/vidalia/help/content/en/netview.html
+++ b/src/vidalia/help/content/en/netview.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/running.html b/src/vidalia/help/content/en/running.html
index b6561c9..38dbfa1 100644
--- a/src/vidalia/help/content/en/running.html
+++ b/src/vidalia/help/content/en/running.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/server.html b/src/vidalia/help/content/en/server.html
index 924991d..ccfedd8 100644
--- a/src/vidalia/help/content/en/server.html
+++ b/src/vidalia/help/content/en/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/services.html b/src/vidalia/help/content/en/services.html
index 4ad627c..4e636bd 100644
--- a/src/vidalia/help/content/en/services.html
+++ b/src/vidalia/help/content/en/services.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/en/troubleshooting.html b/src/vidalia/help/content/en/troubleshooting.html
index 3e76582..751920a 100644
--- a/src/vidalia/help/content/en/troubleshooting.html
+++ b/src/vidalia/help/content/en/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/es/bridges.html b/src/vidalia/help/content/es/bridges.html
index 153b1af..0cbcd39 100644
--- a/src/vidalia/help/content/es/bridges.html
+++ b/src/vidalia/help/content/es/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/bridges.html b/src/vidalia/help/content/fa/bridges.html
index 698b6b3..43daff8 100644
--- a/src/vidalia/help/content/fa/bridges.html
+++ b/src/vidalia/help/content/fa/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/config.html b/src/vidalia/help/content/fa/config.html
index 2753d47..67cc5df 100644
--- a/src/vidalia/help/content/fa/config.html
+++ b/src/vidalia/help/content/fa/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/index.html b/src/vidalia/help/content/fa/index.html
index ef8cdb7..0c14592 100644
--- a/src/vidalia/help/content/fa/index.html
+++ b/src/vidalia/help/content/fa/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/links.html b/src/vidalia/help/content/fa/links.html
index fc63768..a6c8bab 100644
--- a/src/vidalia/help/content/fa/links.html
+++ b/src/vidalia/help/content/fa/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/log.html b/src/vidalia/help/content/fa/log.html
index 4d91b32..cd838b7 100644
--- a/src/vidalia/help/content/fa/log.html
+++ b/src/vidalia/help/content/fa/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/netview.html b/src/vidalia/help/content/fa/netview.html
index f487973..7e21870 100644
--- a/src/vidalia/help/content/fa/netview.html
+++ b/src/vidalia/help/content/fa/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/running.html b/src/vidalia/help/content/fa/running.html
index cf9fd94..771d2ee 100644
--- a/src/vidalia/help/content/fa/running.html
+++ b/src/vidalia/help/content/fa/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/server.html b/src/vidalia/help/content/fa/server.html
index 264e5f7..1748015 100644
--- a/src/vidalia/help/content/fa/server.html
+++ b/src/vidalia/help/content/fa/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/services.html b/src/vidalia/help/content/fa/services.html
index 8fe1f4d..75bc53c 100644
--- a/src/vidalia/help/content/fa/services.html
+++ b/src/vidalia/help/content/fa/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/troubleshooting.html b/src/vidalia/help/content/fa/troubleshooting.html
index 8bc6e8a..212d7a1 100644
--- a/src/vidalia/help/content/fa/troubleshooting.html
+++ b/src/vidalia/help/content/fa/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fi/bridges.html b/src/vidalia/help/content/fi/bridges.html
index 4951e93..b441f05 100644
--- a/src/vidalia/help/content/fi/bridges.html
+++ b/src/vidalia/help/content/fi/bridges.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/fi/config.html b/src/vidalia/help/content/fi/config.html
index d9760a1..1145a9f 100644
--- a/src/vidalia/help/content/fi/config.html
+++ b/src/vidalia/help/content/fi/config.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/fi/index.html b/src/vidalia/help/content/fi/index.html
index 9d7075a..c2c5ab6 100644
--- a/src/vidalia/help/content/fi/index.html
+++ b/src/vidalia/help/content/fi/index.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/fi/links.html b/src/vidalia/help/content/fi/links.html
index 397da6a..6e5a0f6 100644
--- a/src/vidalia/help/content/fi/links.html
+++ b/src/vidalia/help/content/fi/links.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/fi/log.html b/src/vidalia/help/content/fi/log.html
index facc03e..4339d26 100644
--- a/src/vidalia/help/content/fi/log.html
+++ b/src/vidalia/help/content/fi/log.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/fi/netview.html b/src/vidalia/help/content/fi/netview.html
index f379387..d03ab22 100644
--- a/src/vidalia/help/content/fi/netview.html
+++ b/src/vidalia/help/content/fi/netview.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/fi/running.html b/src/vidalia/help/content/fi/running.html
index 6a237cc..b7082db 100644
--- a/src/vidalia/help/content/fi/running.html
+++ b/src/vidalia/help/content/fi/running.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/fi/server.html b/src/vidalia/help/content/fi/server.html
index 36c22b6..7b2e30e 100644
--- a/src/vidalia/help/content/fi/server.html
+++ b/src/vidalia/help/content/fi/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/fi/troubleshooting.html b/src/vidalia/help/content/fi/troubleshooting.html
index 014c5c0..e56ac58 100644
--- a/src/vidalia/help/content/fi/troubleshooting.html
+++ b/src/vidalia/help/content/fi/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/fr/bridges.html b/src/vidalia/help/content/fr/bridges.html
index 1e488af..b362ba5 100644
--- a/src/vidalia/help/content/fr/bridges.html
+++ b/src/vidalia/help/content/fr/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/config.html b/src/vidalia/help/content/fr/config.html
index 4985cde..730acac 100644
--- a/src/vidalia/help/content/fr/config.html
+++ b/src/vidalia/help/content/fr/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/index.html b/src/vidalia/help/content/fr/index.html
index b21b355..fdc40ad 100644
--- a/src/vidalia/help/content/fr/index.html
+++ b/src/vidalia/help/content/fr/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/links.html b/src/vidalia/help/content/fr/links.html
index 512c41b..f7771a4 100644
--- a/src/vidalia/help/content/fr/links.html
+++ b/src/vidalia/help/content/fr/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/log.html b/src/vidalia/help/content/fr/log.html
index e83b992..c29f95f 100644
--- a/src/vidalia/help/content/fr/log.html
+++ b/src/vidalia/help/content/fr/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/netview.html b/src/vidalia/help/content/fr/netview.html
index 1b744af..0343ccc 100644
--- a/src/vidalia/help/content/fr/netview.html
+++ b/src/vidalia/help/content/fr/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/running.html b/src/vidalia/help/content/fr/running.html
index 54c0115..ab0f2da 100644
--- a/src/vidalia/help/content/fr/running.html
+++ b/src/vidalia/help/content/fr/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/server.html b/src/vidalia/help/content/fr/server.html
index d02e09a..1ed055b 100644
--- a/src/vidalia/help/content/fr/server.html
+++ b/src/vidalia/help/content/fr/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/services.html b/src/vidalia/help/content/fr/services.html
index 7f4265d..dff8776 100644
--- a/src/vidalia/help/content/fr/services.html
+++ b/src/vidalia/help/content/fr/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/troubleshooting.html b/src/vidalia/help/content/fr/troubleshooting.html
index 5f37a32..79873fd 100644
--- a/src/vidalia/help/content/fr/troubleshooting.html
+++ b/src/vidalia/help/content/fr/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/it/links.html b/src/vidalia/help/content/it/links.html
index 82e63c7..68e8cff 100644
--- a/src/vidalia/help/content/it/links.html
+++ b/src/vidalia/help/content/it/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/bridges.html b/src/vidalia/help/content/my/bridges.html
index a7901da..9a59daf 100644
--- a/src/vidalia/help/content/my/bridges.html
+++ b/src/vidalia/help/content/my/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/config.html b/src/vidalia/help/content/my/config.html
index de05c88..e3ae08d 100644
--- a/src/vidalia/help/content/my/config.html
+++ b/src/vidalia/help/content/my/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/index.html b/src/vidalia/help/content/my/index.html
index 71bb9bc..7782308 100644
--- a/src/vidalia/help/content/my/index.html
+++ b/src/vidalia/help/content/my/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/links.html b/src/vidalia/help/content/my/links.html
index 81224ee..5f92f10 100644
--- a/src/vidalia/help/content/my/links.html
+++ b/src/vidalia/help/content/my/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/log.html b/src/vidalia/help/content/my/log.html
index b8e592d..862fbc5 100644
--- a/src/vidalia/help/content/my/log.html
+++ b/src/vidalia/help/content/my/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/netview.html b/src/vidalia/help/content/my/netview.html
index 7d91627..bd1fab2 100644
--- a/src/vidalia/help/content/my/netview.html
+++ b/src/vidalia/help/content/my/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/running.html b/src/vidalia/help/content/my/running.html
index b259d4d..e42f841 100644
--- a/src/vidalia/help/content/my/running.html
+++ b/src/vidalia/help/content/my/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/server.html b/src/vidalia/help/content/my/server.html
index fe01454..8823957 100644
--- a/src/vidalia/help/content/my/server.html
+++ b/src/vidalia/help/content/my/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/services.html b/src/vidalia/help/content/my/services.html
index b13f598..9d1c92c 100644
--- a/src/vidalia/help/content/my/services.html
+++ b/src/vidalia/help/content/my/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/troubleshooting.html b/src/vidalia/help/content/my/troubleshooting.html
index 522167c..5bfd4e0 100644
--- a/src/vidalia/help/content/my/troubleshooting.html
+++ b/src/vidalia/help/content/my/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/nl/index.html b/src/vidalia/help/content/nl/index.html
index 3ab483b..2289b41 100644
--- a/src/vidalia/help/content/nl/index.html
+++ b/src/vidalia/help/content/nl/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/nl/links.html b/src/vidalia/help/content/nl/links.html
index e1501dd..a1d021e 100644
--- a/src/vidalia/help/content/nl/links.html
+++ b/src/vidalia/help/content/nl/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/nl/running.html b/src/vidalia/help/content/nl/running.html
index 2d0d1ee..82173cb 100644
--- a/src/vidalia/help/content/nl/running.html
+++ b/src/vidalia/help/content/nl/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/pl/bridges.html b/src/vidalia/help/content/pl/bridges.html
index 0f2ece2..40a8e93 100644
--- a/src/vidalia/help/content/pl/bridges.html
+++ b/src/vidalia/help/content/pl/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/pl/index.html b/src/vidalia/help/content/pl/index.html
index 5472351..a37c481 100644
--- a/src/vidalia/help/content/pl/index.html
+++ b/src/vidalia/help/content/pl/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/pl/links.html b/src/vidalia/help/content/pl/links.html
index 495b55f..50514ae 100644
--- a/src/vidalia/help/content/pl/links.html
+++ b/src/vidalia/help/content/pl/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/pt_BR/bridges.html b/src/vidalia/help/content/pt_BR/bridges.html
index dd49383..a09ff9b 100644
--- a/src/vidalia/help/content/pt_BR/bridges.html
+++ b/src/vidalia/help/content/pt_BR/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/bridges.html b/src/vidalia/help/content/ru/bridges.html
index 2d34421..550f6fa 100644
--- a/src/vidalia/help/content/ru/bridges.html
+++ b/src/vidalia/help/content/ru/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/config.html b/src/vidalia/help/content/ru/config.html
index 0f5921f..fff08a1 100644
--- a/src/vidalia/help/content/ru/config.html
+++ b/src/vidalia/help/content/ru/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/index.html b/src/vidalia/help/content/ru/index.html
index 1247453..17aec54 100644
--- a/src/vidalia/help/content/ru/index.html
+++ b/src/vidalia/help/content/ru/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/links.html b/src/vidalia/help/content/ru/links.html
index fd0b216..12926b4 100644
--- a/src/vidalia/help/content/ru/links.html
+++ b/src/vidalia/help/content/ru/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/log.html b/src/vidalia/help/content/ru/log.html
index a84201f..d44904c 100644
--- a/src/vidalia/help/content/ru/log.html
+++ b/src/vidalia/help/content/ru/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/netview.html b/src/vidalia/help/content/ru/netview.html
index 214f01b..3c7c3e0 100644
--- a/src/vidalia/help/content/ru/netview.html
+++ b/src/vidalia/help/content/ru/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/running.html b/src/vidalia/help/content/ru/running.html
index 867a636..5544447 100644
--- a/src/vidalia/help/content/ru/running.html
+++ b/src/vidalia/help/content/ru/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/server.html b/src/vidalia/help/content/ru/server.html
index 83cff3f..57d23dd 100644
--- a/src/vidalia/help/content/ru/server.html
+++ b/src/vidalia/help/content/ru/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/services.html b/src/vidalia/help/content/ru/services.html
index 971101d..ce80bcc 100644
--- a/src/vidalia/help/content/ru/services.html
+++ b/src/vidalia/help/content/ru/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/troubleshooting.html b/src/vidalia/help/content/ru/troubleshooting.html
index 8feb976..33284bb 100644
--- a/src/vidalia/help/content/ru/troubleshooting.html
+++ b/src/vidalia/help/content/ru/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/sv/bridges.html b/src/vidalia/help/content/sv/bridges.html
index 99f20cb..f04b99e 100644
--- a/src/vidalia/help/content/sv/bridges.html
+++ b/src/vidalia/help/content/sv/bridges.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/sv/config.html b/src/vidalia/help/content/sv/config.html
index 6caf6d0..7124058 100644
--- a/src/vidalia/help/content/sv/config.html
+++ b/src/vidalia/help/content/sv/config.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/sv/index.html b/src/vidalia/help/content/sv/index.html
index be2b53b..d9adb3f 100644
--- a/src/vidalia/help/content/sv/index.html
+++ b/src/vidalia/help/content/sv/index.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/sv/links.html b/src/vidalia/help/content/sv/links.html
index 4bbe6af..1a1ecf6 100644
--- a/src/vidalia/help/content/sv/links.html
+++ b/src/vidalia/help/content/sv/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/sv/log.html b/src/vidalia/help/content/sv/log.html
index eefe508..2ecf5b0 100644
--- a/src/vidalia/help/content/sv/log.html
+++ b/src/vidalia/help/content/sv/log.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/sv/netview.html b/src/vidalia/help/content/sv/netview.html
index 737b064..98f337c 100644
--- a/src/vidalia/help/content/sv/netview.html
+++ b/src/vidalia/help/content/sv/netview.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/sv/running.html b/src/vidalia/help/content/sv/running.html
index fbda086..dc1f21d 100644
--- a/src/vidalia/help/content/sv/running.html
+++ b/src/vidalia/help/content/sv/running.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/sv/server.html b/src/vidalia/help/content/sv/server.html
index fc4a252..e487601 100644
--- a/src/vidalia/help/content/sv/server.html
+++ b/src/vidalia/help/content/sv/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/sv/services.html b/src/vidalia/help/content/sv/services.html
index 11f5a95..ef3aaf8 100644
--- a/src/vidalia/help/content/sv/services.html
+++ b/src/vidalia/help/content/sv/services.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/sv/troubleshooting.html b/src/vidalia/help/content/sv/troubleshooting.html
index c56a2bf..f1bd43b 100644
--- a/src/vidalia/help/content/sv/troubleshooting.html
+++ b/src/vidalia/help/content/sv/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/tr/links.html b/src/vidalia/help/content/tr/links.html
index cdddfff..b785f22 100644
--- a/src/vidalia/help/content/tr/links.html
+++ b/src/vidalia/help/content/tr/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/bridges.html b/src/vidalia/help/content/zh_CN/bridges.html
index 87e683c..fa17ecc 100644
--- a/src/vidalia/help/content/zh_CN/bridges.html
+++ b/src/vidalia/help/content/zh_CN/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/config.html b/src/vidalia/help/content/zh_CN/config.html
index 95eea5f..bab870d 100644
--- a/src/vidalia/help/content/zh_CN/config.html
+++ b/src/vidalia/help/content/zh_CN/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/index.html b/src/vidalia/help/content/zh_CN/index.html
index 62ac9c8..ba76667 100644
--- a/src/vidalia/help/content/zh_CN/index.html
+++ b/src/vidalia/help/content/zh_CN/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/links.html b/src/vidalia/help/content/zh_CN/links.html
index 7f1472f..bae5d99 100644
--- a/src/vidalia/help/content/zh_CN/links.html
+++ b/src/vidalia/help/content/zh_CN/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/log.html b/src/vidalia/help/content/zh_CN/log.html
index 83a4ac1..3febf66 100644
--- a/src/vidalia/help/content/zh_CN/log.html
+++ b/src/vidalia/help/content/zh_CN/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/netview.html b/src/vidalia/help/content/zh_CN/netview.html
index 3cabda1..2641fa7 100644
--- a/src/vidalia/help/content/zh_CN/netview.html
+++ b/src/vidalia/help/content/zh_CN/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/running.html b/src/vidalia/help/content/zh_CN/running.html
index d1ac3af..0b7dd70 100644
--- a/src/vidalia/help/content/zh_CN/running.html
+++ b/src/vidalia/help/content/zh_CN/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/server.html b/src/vidalia/help/content/zh_CN/server.html
index 2c06f43..b7f33f6 100644
--- a/src/vidalia/help/content/zh_CN/server.html
+++ b/src/vidalia/help/content/zh_CN/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/help/content/zh_CN/troubleshooting.html b/src/vidalia/help/content/zh_CN/troubleshooting.html
index 928cc65..577737e 100644
--- a/src/vidalia/help/content/zh_CN/troubleshooting.html
+++ b/src/vidalia/help/content/zh_CN/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** 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.
-->
<html>
diff --git a/src/vidalia/log/LogFile.cpp b/src/vidalia/log/LogFile.cpp
index 310294f..a4ec760 100644
--- a/src/vidalia/log/LogFile.cpp
+++ b/src/vidalia/log/LogFile.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/LogFile.h b/src/vidalia/log/LogFile.h
index d01f9d7..6e46522 100644
--- a/src/vidalia/log/LogFile.h
+++ b/src/vidalia/log/LogFile.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/LogHeaderView.cpp b/src/vidalia/log/LogHeaderView.cpp
index c62b7a1..1b04d3a 100644
--- a/src/vidalia/log/LogHeaderView.cpp
+++ b/src/vidalia/log/LogHeaderView.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/LogHeaderView.h b/src/vidalia/log/LogHeaderView.h
index 6223d73..96491ef 100644
--- a/src/vidalia/log/LogHeaderView.h
+++ b/src/vidalia/log/LogHeaderView.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/LogMessageColumnDelegate.cpp b/src/vidalia/log/LogMessageColumnDelegate.cpp
index 8821438..3baa749 100644
--- a/src/vidalia/log/LogMessageColumnDelegate.cpp
+++ b/src/vidalia/log/LogMessageColumnDelegate.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/LogMessageColumnDelegate.h b/src/vidalia/log/LogMessageColumnDelegate.h
index dbf9ca6..6f16b38 100644
--- a/src/vidalia/log/LogMessageColumnDelegate.h
+++ b/src/vidalia/log/LogMessageColumnDelegate.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/LogTreeItem.cpp b/src/vidalia/log/LogTreeItem.cpp
index e7b6598..e8842bc 100644
--- a/src/vidalia/log/LogTreeItem.cpp
+++ b/src/vidalia/log/LogTreeItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/LogTreeItem.h b/src/vidalia/log/LogTreeItem.h
index a402011..48426b6 100644
--- a/src/vidalia/log/LogTreeItem.h
+++ b/src/vidalia/log/LogTreeItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/LogTreeWidget.cpp b/src/vidalia/log/LogTreeWidget.cpp
index 0124a63..0936b78 100644
--- a/src/vidalia/log/LogTreeWidget.cpp
+++ b/src/vidalia/log/LogTreeWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/LogTreeWidget.h b/src/vidalia/log/LogTreeWidget.h
index ad1dd91..2d9ada8 100644
--- a/src/vidalia/log/LogTreeWidget.h
+++ b/src/vidalia/log/LogTreeWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/MessageLog.cpp b/src/vidalia/log/MessageLog.cpp
index e15799e..7e3e9c2 100644
--- a/src/vidalia/log/MessageLog.cpp
+++ b/src/vidalia/log/MessageLog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/MessageLog.h b/src/vidalia/log/MessageLog.h
index 3462ae1..f9905e1 100644
--- a/src/vidalia/log/MessageLog.h
+++ b/src/vidalia/log/MessageLog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/StatusEventItem.cpp b/src/vidalia/log/StatusEventItem.cpp
index d42823f..ef62360 100644
--- a/src/vidalia/log/StatusEventItem.cpp
+++ b/src/vidalia/log/StatusEventItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/StatusEventItem.h b/src/vidalia/log/StatusEventItem.h
index f70f711..8e599a2 100644
--- a/src/vidalia/log/StatusEventItem.h
+++ b/src/vidalia/log/StatusEventItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/StatusEventItemDelegate.cpp b/src/vidalia/log/StatusEventItemDelegate.cpp
index b8852eb..32bbcfa 100644
--- a/src/vidalia/log/StatusEventItemDelegate.cpp
+++ b/src/vidalia/log/StatusEventItemDelegate.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/StatusEventItemDelegate.h b/src/vidalia/log/StatusEventItemDelegate.h
index c4eb244..bd24c48 100644
--- a/src/vidalia/log/StatusEventItemDelegate.h
+++ b/src/vidalia/log/StatusEventItemDelegate.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/StatusEventWidget.cpp b/src/vidalia/log/StatusEventWidget.cpp
index 9fd4dbc..4bd11d0 100644
--- a/src/vidalia/log/StatusEventWidget.cpp
+++ b/src/vidalia/log/StatusEventWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/log/StatusEventWidget.h b/src/vidalia/log/StatusEventWidget.h
index ee0130f..da12c13 100644
--- a/src/vidalia/log/StatusEventWidget.h
+++ b/src/vidalia/log/StatusEventWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/main.cpp b/src/vidalia/main.cpp
index acb9d66..7abc708 100644
--- a/src/vidalia/main.cpp
+++ b/src/vidalia/main.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/CircuitItem.cpp b/src/vidalia/network/CircuitItem.cpp
index bca061e..d74254d 100644
--- a/src/vidalia/network/CircuitItem.cpp
+++ b/src/vidalia/network/CircuitItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/CircuitItem.h b/src/vidalia/network/CircuitItem.h
index b188098..c2c1b7e 100644
--- a/src/vidalia/network/CircuitItem.h
+++ b/src/vidalia/network/CircuitItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/CircuitListWidget.cpp b/src/vidalia/network/CircuitListWidget.cpp
index a0af5e7..5e01c9a 100644
--- a/src/vidalia/network/CircuitListWidget.cpp
+++ b/src/vidalia/network/CircuitListWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/CircuitListWidget.h b/src/vidalia/network/CircuitListWidget.h
index 9bfdfec..a6d92c2 100644
--- a/src/vidalia/network/CircuitListWidget.h
+++ b/src/vidalia/network/CircuitListWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/CountryInfo.cpp b/src/vidalia/network/CountryInfo.cpp
index dd6b998..c7d749a 100644
--- a/src/vidalia/network/CountryInfo.cpp
+++ b/src/vidalia/network/CountryInfo.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/CountryInfo.h b/src/vidalia/network/CountryInfo.h
index 30a8207..f660a12 100644
--- a/src/vidalia/network/CountryInfo.h
+++ b/src/vidalia/network/CountryInfo.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/GeoIpDatabase.cpp b/src/vidalia/network/GeoIpDatabase.cpp
index 3f496c7..c1e6d40 100644
--- a/src/vidalia/network/GeoIpDatabase.cpp
+++ b/src/vidalia/network/GeoIpDatabase.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/GeoIpDatabase.h b/src/vidalia/network/GeoIpDatabase.h
index 5b8a6db..48697ca 100644
--- a/src/vidalia/network/GeoIpDatabase.h
+++ b/src/vidalia/network/GeoIpDatabase.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/GeoIpRecord.cpp b/src/vidalia/network/GeoIpRecord.cpp
index 8a37813..25d11c1 100644
--- a/src/vidalia/network/GeoIpRecord.cpp
+++ b/src/vidalia/network/GeoIpRecord.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/GeoIpRecord.h b/src/vidalia/network/GeoIpRecord.h
index bf254e9..002085f 100644
--- a/src/vidalia/network/GeoIpRecord.h
+++ b/src/vidalia/network/GeoIpRecord.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/GeoIpResolver.cpp b/src/vidalia/network/GeoIpResolver.cpp
index 45e09e6..f2c5100 100644
--- a/src/vidalia/network/GeoIpResolver.cpp
+++ b/src/vidalia/network/GeoIpResolver.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/GeoIpResolver.h b/src/vidalia/network/GeoIpResolver.h
index b0bbab9..cf39153 100644
--- a/src/vidalia/network/GeoIpResolver.h
+++ b/src/vidalia/network/GeoIpResolver.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/NetViewer.cpp b/src/vidalia/network/NetViewer.cpp
index 2501537..6a67d57 100644
--- a/src/vidalia/network/NetViewer.cpp
+++ b/src/vidalia/network/NetViewer.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/NetViewer.h b/src/vidalia/network/NetViewer.h
index e5c7208..1d1f85f 100644
--- a/src/vidalia/network/NetViewer.h
+++ b/src/vidalia/network/NetViewer.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/RouterDescriptorView.cpp b/src/vidalia/network/RouterDescriptorView.cpp
index 63c3102..367ad82 100644
--- a/src/vidalia/network/RouterDescriptorView.cpp
+++ b/src/vidalia/network/RouterDescriptorView.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/RouterDescriptorView.h b/src/vidalia/network/RouterDescriptorView.h
index 1a77412..94af97a 100644
--- a/src/vidalia/network/RouterDescriptorView.h
+++ b/src/vidalia/network/RouterDescriptorView.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/RouterInfoDialog.cpp b/src/vidalia/network/RouterInfoDialog.cpp
index 935a1e3..806d3e9 100644
--- a/src/vidalia/network/RouterInfoDialog.cpp
+++ b/src/vidalia/network/RouterInfoDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/RouterInfoDialog.h b/src/vidalia/network/RouterInfoDialog.h
index ac09ea3..96f3117 100644
--- a/src/vidalia/network/RouterInfoDialog.h
+++ b/src/vidalia/network/RouterInfoDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/RouterListItem.cpp b/src/vidalia/network/RouterListItem.cpp
index 904a3f7..6750103 100644
--- a/src/vidalia/network/RouterListItem.cpp
+++ b/src/vidalia/network/RouterListItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/RouterListItem.h b/src/vidalia/network/RouterListItem.h
index ea423a3..f50f53a 100644
--- a/src/vidalia/network/RouterListItem.h
+++ b/src/vidalia/network/RouterListItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/RouterListWidget.cpp b/src/vidalia/network/RouterListWidget.cpp
index ce34355..e35bc22 100644
--- a/src/vidalia/network/RouterListWidget.cpp
+++ b/src/vidalia/network/RouterListWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/RouterListWidget.h b/src/vidalia/network/RouterListWidget.h
index 34dfd95..04d7263 100644
--- a/src/vidalia/network/RouterListWidget.h
+++ b/src/vidalia/network/RouterListWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/StreamItem.cpp b/src/vidalia/network/StreamItem.cpp
index 5c9fff9..27823f4 100644
--- a/src/vidalia/network/StreamItem.cpp
+++ b/src/vidalia/network/StreamItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/StreamItem.h b/src/vidalia/network/StreamItem.h
index 9390469..2842423 100644
--- a/src/vidalia/network/StreamItem.h
+++ b/src/vidalia/network/StreamItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/TorMapImageView.cpp b/src/vidalia/network/TorMapImageView.cpp
index dbcf634..6c04d89 100644
--- a/src/vidalia/network/TorMapImageView.cpp
+++ b/src/vidalia/network/TorMapImageView.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/TorMapImageView.h b/src/vidalia/network/TorMapImageView.h
index 47f08d8..ca26c94 100644
--- a/src/vidalia/network/TorMapImageView.h
+++ b/src/vidalia/network/TorMapImageView.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/TorMapWidget.cpp b/src/vidalia/network/TorMapWidget.cpp
index 226ee17..e222218 100644
--- a/src/vidalia/network/TorMapWidget.cpp
+++ b/src/vidalia/network/TorMapWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/TorMapWidget.h b/src/vidalia/network/TorMapWidget.h
index 0671874..f371198 100644
--- a/src/vidalia/network/TorMapWidget.h
+++ b/src/vidalia/network/TorMapWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/TorMapWidgetInputHandler.cpp b/src/vidalia/network/TorMapWidgetInputHandler.cpp
index 3344d83..467594b 100644
--- a/src/vidalia/network/TorMapWidgetInputHandler.cpp
+++ b/src/vidalia/network/TorMapWidgetInputHandler.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#include "TorMapWidgetInputHandler.h"
diff --git a/src/vidalia/network/TorMapWidgetInputHandler.h b/src/vidalia/network/TorMapWidgetInputHandler.h
index 8265944..066a4dc 100644
--- a/src/vidalia/network/TorMapWidgetInputHandler.h
+++ b/src/vidalia/network/TorMapWidgetInputHandler.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
#ifndef _TORMAPWIDGETINPUTHANDLER_H
diff --git a/src/vidalia/network/TorMapWidgetPopupMenu.cpp b/src/vidalia/network/TorMapWidgetPopupMenu.cpp
index 2bc9ae5..a98c7e6 100644
--- a/src/vidalia/network/TorMapWidgetPopupMenu.cpp
+++ b/src/vidalia/network/TorMapWidgetPopupMenu.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/TorMapWidgetPopupMenu.h b/src/vidalia/network/TorMapWidgetPopupMenu.h
index b892a1e..c83ded3 100644
--- a/src/vidalia/network/TorMapWidgetPopupMenu.h
+++ b/src/vidalia/network/TorMapWidgetPopupMenu.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/ZImageView.cpp b/src/vidalia/network/ZImageView.cpp
index cf712a7..c0cad4f 100644
--- a/src/vidalia/network/ZImageView.cpp
+++ b/src/vidalia/network/ZImageView.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
diff --git a/src/vidalia/network/ZImageView.h b/src/vidalia/network/ZImageView.h
index 37b53ea..436b3d9 100644
--- a/src/vidalia/network/ZImageView.h
+++ b/src/vidalia/network/ZImageView.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** 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.
*/
/*
1
0
commit 32e4b2eb6d891e6462808dd421329d7e366b1c2e
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Sat Apr 30 01:05:54 2011 -0300
Fixes wrong label naming
---
src/crashreporter/CrashReportDialog.ui | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/crashreporter/CrashReportDialog.ui b/src/crashreporter/CrashReportDialog.ui
index ae3faac..a4be3e5 100644
--- a/src/crashreporter/CrashReportDialog.ui
+++ b/src/crashreporter/CrashReportDialog.ui
@@ -49,7 +49,7 @@
</widget>
</item>
<item row="7" column="0" colspan="2">
- <widget class="QLabel" name="label">
+ <widget class="QLabel" name="lblLink">
<property name="text">
<string><a href="https://trac.torproject.org/projects/tor/newticket">http…</string>
</property>
1
0
commit bc3a5180f4585270673b7a31ce7248d57e7e9b7e
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Sat Apr 30 01:02:14 2011 -0300
Update the crashreporter
Removes everything related to the upload since we are not setting
anything up for now. Just informs the user what he/she should do
with the dumps.
---
src/crashreporter/CMakeLists.txt | 5 -
src/crashreporter/CrashReportDialog.cpp | 61 +-----------
src/crashreporter/CrashReportDialog.h | 28 +----
src/crashreporter/CrashReportDialog.ui | 115 +++++++++++++---------
src/crashreporter/CrashReportUploader.cpp | 152 ----------------------------
src/crashreporter/CrashReportUploader.h | 109 --------------------
src/crashreporter/UploadProgressDialog.cpp | 60 -----------
src/crashreporter/UploadProgressDialog.h | 62 -----------
src/crashreporter/UploadProgressDialog.ui | 106 -------------------
src/crashreporter/main.cpp | 43 +-------
10 files changed, 81 insertions(+), 660 deletions(-)
diff --git a/src/crashreporter/CMakeLists.txt b/src/crashreporter/CMakeLists.txt
index 8fa72bf..11d68c2 100644
--- a/src/crashreporter/CMakeLists.txt
+++ b/src/crashreporter/CMakeLists.txt
@@ -19,17 +19,12 @@ include_directories(
set(crashreporter_SRCS
main.cpp
CrashReportDialog.cpp
- CrashReportUploader.cpp
- UploadProgressDialog.cpp
)
qt4_wrap_cpp(crashreporter_SRCS
CrashReportDialog.h
- CrashReportUploader.h
- UploadProgressDialog.h
)
qt4_wrap_ui(crashreporter_SRCS
CrashReportDialog.ui
- UploadProgressDialog.ui
)
qt4_add_resources(crashreporter_SRCS
res/CrashReporter.qrc
diff --git a/src/crashreporter/CrashReportDialog.cpp b/src/crashreporter/CrashReportDialog.cpp
index f3acc68..c133706 100644
--- a/src/crashreporter/CrashReportDialog.cpp
+++ b/src/crashreporter/CrashReportDialog.cpp
@@ -16,8 +16,6 @@
*/
#include "CrashReportDialog.h"
-#include "CrashReportUploader.h"
-#include "UploadProgressDialog.h"
#include "stringutil.h"
@@ -48,57 +46,17 @@ CrashReportDialog::setCrashAnnotations(const QHash<QString,QString> &annotations
}
void
-CrashReportDialog::setMinidump(const QString &id, const QByteArray &minidump)
+CrashReportDialog::setMinidumpFiles(const QString &minidump, const QString &annotations)
{
- _minidump = minidump;
- _minidumpId = id;
-}
-
-void
-CrashReportDialog::submitCrashReport()
-{
- CrashReportUploader *uploader = new CrashReportUploader();
- UploadProgressDialog *progressDialog = new UploadProgressDialog(this);
- QMap<QString,QString> parameters;
-
- connect(uploader, SIGNAL(statusChanged(QString)),
- progressDialog, SLOT(setStatus(QString)));
- connect(uploader, SIGNAL(uploadProgress(int, int)),
- progressDialog, SLOT(setUploadProgress(int, int)));
- connect(uploader, SIGNAL(uploadFinished()),
- progressDialog, SLOT(accept()));
- connect(uploader, SIGNAL(uploadFailed(QString)),
- progressDialog, SLOT(uploadFailed(QString)));
-
- /* Set up the form fields that will be uploaded with the minidump */
- QString comments = ui.textDetails->toPlainText();
- if (! comments.isEmpty())
- parameters.insert("Comments", comments);
- parameters.insert("ProductName", "Vidalia");
- parameters.insert("Vendor", "Vidalia");
- parameters.insert("Version", _annotations.value("BuildVersion"));
- parameters.insert("CrashTime", _annotations.value("CrashTime"));
- parameters.insert("StartupTime", _annotations.value("StartupTime"));
-
- /* Start the upload (returns immediately) */
- uploader->uploadMinidump(QUrl("https://crashes.vidalia-project.net/submit"),
- _minidumpId, _minidump, parameters);
+ _minidumpPath = minidump;
+ _annotationsPath = annotations;
- /* Displays a modal progress dialog showing the progress of the upload. This
- * will return when either the upload completes or the user hits "Cancel". */
- if (progressDialog->exec() == QDialog::Rejected)
- uploader->cancel(); /* User clicked "Cancel" */
-
- delete uploader;
+ ui.textDetails->setPlainText(QString("%1\n%2\n").arg(_minidumpPath).arg(_annotationsPath));
}
void
CrashReportDialog::accept()
{
- /* Upload the crash report, unless the user opted out */
- if (ui.chkSubmitCrashReport->isChecked())
- submitCrashReport();
-
/* Attempt to restart Vidalia with the saved arguments */
QString exe = _annotations.value("RestartExecutable");
QString args = _annotations.value("RestartExecutableArgs");
@@ -115,14 +73,3 @@ CrashReportDialog::accept()
QDialog::accept();
}
-void
-CrashReportDialog::reject()
-{
- /* Upload the crash report, unless the user opted out */
- if (ui.chkSubmitCrashReport->isChecked())
- submitCrashReport();
-
- /* Close this dialog without restarting Vidalia */
- QDialog::reject();
-}
-
diff --git a/src/crashreporter/CrashReportDialog.h b/src/crashreporter/CrashReportDialog.h
index bc05892..b3fd533 100644
--- a/src/crashreporter/CrashReportDialog.h
+++ b/src/crashreporter/CrashReportDialog.h
@@ -40,15 +40,7 @@ public:
/** Sets the <b>minidump</b> contents generated by the crashed
* applications exception handler.
*/
- void setMinidump(const QString &id, const QByteArray &minidump);
-
- /** Uploads the generated minidump, user comments, and any additional
- * crash annotations generated by the exception handler to the crash
- * reporting server.
- * \sa setMinidump()
- * \sa setCrashAnnotations()
- */
- void submitCrashReport();
+ void setMinidumpFiles(const QString &minidump, const QString &annotations);
public slots:
/** Called when the user clicks the "Restart Vidalia" button on the
@@ -60,24 +52,14 @@ public slots:
*/
virtual void accept();
- /** Called when the user clicks the "Don't Restart" button on the
- * dialog. If the "Submit my crash report.." checkbox is checked, it
- * will attempt to submit the crash report and then exit without
- * restarting Vidalia.
- */
- virtual void reject();
-
private:
- /** Each minidump is given a randomly-generated GUID when it is created,
- * which is used to form the minidump filename. This ID is also used by
- * the crash reporting server when accepting and processing uploaded
- * minidumps.
+ /** Minidump path
*/
- QString _minidumpId;
+ QString _minidumpPath;
- /** Contents of the generated minidump.
+ /** Minidump info path
*/
- QByteArray _minidump;
+ QString _annotationsPath;
/** Set of parsed key-value pairs generated by the crashed application's
* exception handler and written alongside the minidump.
diff --git a/src/crashreporter/CrashReportDialog.ui b/src/crashreporter/CrashReportDialog.ui
index b565822..ae3faac 100644
--- a/src/crashreporter/CrashReportDialog.ui
+++ b/src/crashreporter/CrashReportDialog.ui
@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
- <width>434</width>
- <height>310</height>
+ <width>492</width>
+ <height>257</height>
</rect>
</property>
<property name="windowTitle">
@@ -18,7 +18,7 @@
<normaloff>:/images/32x32/tools-report-bug.png</normaloff>:/images/32x32/tools-report-bug.png</iconset>
</property>
<layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0" rowspan="2">
+ <item row="1" column="0" rowspan="2">
<widget class="QLabel" name="lblHeaderImage">
<property name="text">
<string/>
@@ -28,89 +28,112 @@
</property>
</widget>
</item>
- <item row="0" column="1">
- <widget class="QLabel" name="lblTitle">
- <property name="font">
- <font>
- <pointsize>9</pointsize>
- <weight>75</weight>
- <bold>true</bold>
- </font>
+ <item row="5" column="0" colspan="2">
+ <widget class="Line" name="line">
+ <property name="orientation">
+ <enum>Qt::Horizontal</enum>
</property>
+ </widget>
+ </item>
+ <item row="6" column="0" colspan="2">
+ <widget class="QLabel" name="lblDetails">
<property name="text">
- <string>Vidalia encountered an error and needed to close</string>
+ <string>Please fill a ticket in:</string>
</property>
<property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
+ <set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
- <item row="1" column="1">
- <widget class="QLabel" name="lblHeader">
+ <item row="7" column="0" colspan="2">
+ <widget class="QLabel" name="label">
<property name="text">
- <string>A crash report has been created that you can automatically send to the Vidalia developers to help identify and fix the problem. The submitted report does not contain any personally identifying information, but your connection to the crash reporting server may not be anonymous.</string>
+ <string><a href="https://trac.torproject.org/projects/tor/newticket">http…</string>
</property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
+ <property name="openExternalLinks">
+ <bool>true</bool>
</property>
- <property name="wordWrap">
+ </widget>
+ </item>
+ <item row="9" column="0" colspan="2">
+ <widget class="QTextBrowser" name="textDetails">
+ <property name="tabChangesFocus">
<bool>true</bool>
</property>
+ <property name="readOnly">
+ <bool>false</bool>
+ </property>
+ <property name="openLinks">
+ <bool>false</bool>
+ </property>
</widget>
</item>
- <item row="2" column="0" colspan="2">
- <widget class="Line" name="line">
+ <item row="10" column="0" colspan="2">
+ <widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
+ <property name="standardButtons">
+ <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+ </property>
</widget>
</item>
- <item row="3" column="0" colspan="2">
- <widget class="QLabel" name="lblDetails">
+ <item row="1" column="1">
+ <widget class="QLabel" name="lblTitle">
+ <property name="font">
+ <font>
+ <pointsize>9</pointsize>
+ <weight>75</weight>
+ <bold>true</bold>
+ </font>
+ </property>
<property name="text">
- <string>Please also describe what you were doing before the application crashed (optional):</string>
+ <string>Vidalia encountered an error and needed to close</string>
</property>
<property name="alignment">
- <set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
+ <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
- <item row="4" column="0" colspan="2">
- <widget class="QTextBrowser" name="textDetails">
- <property name="tabChangesFocus">
- <bool>true</bool>
- </property>
- <property name="readOnly">
- <bool>false</bool>
- </property>
- <property name="openLinks">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item row="5" column="0" colspan="2">
- <widget class="QCheckBox" name="chkSubmitCrashReport">
+ <item row="2" column="1">
+ <widget class="QLabel" name="lblHeader">
<property name="text">
- <string>Send my crash report to the Vidalia developers</string>
+ <string>A crash report has been created that you can send to the Vidalia developers to help identify and fix the problem. The submitted report does not contain any personally identifying information.</string>
</property>
- <property name="checked">
+ <property name="alignment">
+ <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
+ </property>
+ <property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
- <item row="6" column="1">
- <widget class="QDialogButtonBox" name="buttonBox">
+ <item row="0" column="1">
+ <spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
- <property name="standardButtons">
- <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>40</width>
+ <height>0</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item row="8" column="0" colspan="2">
+ <widget class="QLabel" name="lblDetails2">
+ <property name="text">
+ <string>with a description of what you were doing before the application crashed, along with the following files corresponding to the crash report:</string>
+ </property>
+ <property name="wordWrap">
+ <bool>true</bool>
</property>
</widget>
</item>
diff --git a/src/crashreporter/CrashReportUploader.cpp b/src/crashreporter/CrashReportUploader.cpp
deleted file mode 100644
index cd59ee3..0000000
--- a/src/crashreporter/CrashReportUploader.cpp
+++ /dev/null
@@ -1,152 +0,0 @@
-/*
-** 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.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
-*/
-
-/*
-** \file CrashReportUploader.cpp
-** \brief Uploads a minidump file and any extra information to a crash
-** reporting server.
-*/
-
-#include "CrashReportUploader.h"
-
-#include <QtGlobal>
-#include <QDateTime>
-#include <QSslSocket>
-#include <QSslCertificate>
-#include <QHttpRequestHeader>
-#include <QHttpResponseHeader>
-#include <QMap>
-#include <QUrl>
-
-
-CrashReportUploader::CrashReportUploader(QObject *parent)
- : QObject(parent),
- _requestId(-1)
-{
- /* Clear the default CA certificate store and add the only one we want */
- QSslSocket::setDefaultCaCertificates(QList<QSslCertificate>());
- QSslSocket::addDefaultCaCertificates(":/pki/gd-class2-root.crt");
-
- /* Create the QHttp object used to talk to the crash reporting server */
- _http = new QHttp(this);
- connect(_http, SIGNAL(stateChanged(int)),
- this, SLOT(httpStateChanged(int)));
- connect(_http, SIGNAL(requestFinished(int, bool)),
- this, SLOT(httpRequestFinished(int, bool)));
- connect(_http, SIGNAL(dataSendProgress(int, int)),
- this, SIGNAL(uploadProgress(int, int)));
-
- /* Seed the lame PRNG we'll use to generate the multipart boundary marker */
- qsrand(QDateTime::currentDateTime().toTime_t());
-}
-
-void
-CrashReportUploader::uploadMinidump(const QUrl &serverUrl,
- const QString &minidumpId,
- const QByteArray &minidump,
- const QMap<QString,QString> ¶meters)
-{
- QByteArray body;
-
- /* Set the destination host. If it looks like the destination URL uses SSL,
- * then we need to tell the QHttp object to use it as well. */
- if (! serverUrl.scheme().compare("https", Qt::CaseInsensitive)) {
- _http->setHost(serverUrl.host(), QHttp::ConnectionModeHttps,
- serverUrl.port(443));
- } else {
- _http->setHost(serverUrl.host(), QHttp::ConnectionModeHttp,
- serverUrl.port(80));
- }
-
- /* Set up the request header */
- QHttpRequestHeader header("POST", serverUrl.path());
- QString boundary = generateBoundaryMarker();
- header.setValue("Host", serverUrl.host());
- header.setContentType(QString("multipart/form-data; boundary=%1")
- .arg(boundary));
-
- /* Add all the key=value parameters to the request body */
- foreach (QString key, parameters.keys()) {
- QString value = parameters.value(key);
- if (! value.isEmpty()) {
- body.append(QString("--%1\r\n").arg(boundary));
- body.append(QString("Content-Disposition: form-data; name=\"%1\"").arg(key));
- body.append("\r\n\r\n");
- body.append(value.toUtf8());
- body.append("\r\n");
- }
- }
-
- /* Append the minidump contents */
- body.append(QString("--%1\r\n").arg(boundary));
- body.append("Content-Disposition: form-data; ");
- body.append("name=\"upload_file_minidump\"; ");
- body.append(QString("filename=\"%1\"\r\n").arg(minidumpId));
- body.append("Content-Type: application/octet-stream\r\n\r\n");
- body.append(minidump);
- body.append(QString("\r\n--%1\r\n").arg(boundary));
-
- /* Initiate the request and return the request ID */
- _requestId = _http->request(header, body);
-}
-
-QString
-CrashReportUploader::generateBoundaryMarker() const
-{
- return QString("%1%2").arg((quint32)qrand(), 8, 16, QChar('0'))
- .arg((quint32)qrand(), 8, 16, QChar('0'));
-}
-
-void
-CrashReportUploader::cancel()
-{
- _http->abort();
-}
-
-void
-CrashReportUploader::httpStateChanged(int state)
-{
- switch (state) {
- case QHttp::Connecting:
- emit statusChanged(tr("Connecting..."));
- break;
-
- case QHttp::Sending:
- emit statusChanged(tr("Sending crash report..."));
- break;
-
- case QHttp::Reading:
- emit statusChanged(tr("Receiving response..."));
- break;
-
- default:
- break;
- }
-}
-
-void
-CrashReportUploader::httpRequestFinished(int id, bool error)
-{
- if (id != _requestId)
- return;
-
- if (error) {
- QString errorString = _http->errorString();
- emit uploadFailed(errorString);
- } else {
- QHttpResponseHeader response = _http->lastResponse();
- if (response.statusCode() == 200)
- emit uploadFinished();
- else
- emit uploadFailed(response.reasonPhrase());
- }
- _http->close();
-}
-
diff --git a/src/crashreporter/CrashReportUploader.h b/src/crashreporter/CrashReportUploader.h
deleted file mode 100644
index dd97954..0000000
--- a/src/crashreporter/CrashReportUploader.h
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
-** 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.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
-*/
-
-/*
-** \file CrashReportUploader.h
-** \brief Uploads a minidump file and any extra information to a crash
-** reporting server.
-*/
-
-#ifndef _CRASHREPORTUPLOADER_H
-#define _CRASHREPORTUPLOADER_H
-
-#include <QObject>
-#include <QHttp>
-#include <QMap>
-
-class QUrl;
-class QString;
-class QByteArray;
-
-
-class CrashReportUploader : public QObject
-{
- Q_OBJECT
-
-public:
- /** Default constructor.
- */
- CrashReportUploader(QObject *parent = 0);
-
- /** Starts uploading <b>minidump</b> to <b>serverUrl</b> and returns
- * immediately. <b>minidumpId</b> is the minidump GUID generated by
- * the exception handler and used for the minidump's filename. The
- * optional <b>parameters</b> can be used to pass additional form fields
- * to the crash reporting server.
- */
- void uploadMinidump(const QUrl &serverUrl,
- const QString &minidumpId,
- const QByteArray &minidump,
- const QMap<QString,QString> ¶meters);
-
-public slots:
- /** Cancels a pending minidump upload.
- */
- void cancel();
-
-signals:
- /** Emitted when the underlying QHttp object posts data to the server.
- * <b>done</b> indicates how many bytes out of <b>total</b>
- * have been sent so far.
- */
- void uploadProgress(int done, int total);
-
- /** Emitted when the status of the POST request changes. <b>status</b>
- * describes the new current state of the request.
- */
- void statusChanged(const QString &status);
-
- /** Emitted when the previous minidump upload completes successfully.
- */
- void uploadFinished();
-
- /** Emitted when the previous crash report upload fails. The QString
- * <b>error</b> is a human-readable string describing the error
- * encountered.
- */
- void uploadFailed(const QString &error);
-
-private slots:
- /** Called when the state of the underlying QHttp object changes. A
- * statusChanged() signal is emitted with the appropriate text
- * describing the new state of the POST request.
- */
- void httpStateChanged(int state);
-
- /** Called when the underlying QHttp object used to upload the minidump
- * completes. <b>error</b> is set to false if the upload was
- * successful, or true if the upload failed. If <b>id</b> does not
- * match the request ID previously returned by QHttp::get(), then the
- * signal is ignored since it is the result of a close() or abort()
- * request.
- */
- void httpRequestFinished(int id, bool error);
-
-private:
- /** Generates a "random" 8-byte multipart boundary marker encoded into
- * 16 hex characters.
- */
- QString generateBoundaryMarker() const;
-
- /** Unique numeric identifier of the current minidump upload POST request.
- */
- int _requestId;
-
- /** Object used to POST a minidump to the crash server and read the
- * response.
- */
- QHttp *_http;
-};
-
-#endif
-
diff --git a/src/crashreporter/UploadProgressDialog.cpp b/src/crashreporter/UploadProgressDialog.cpp
deleted file mode 100644
index 4030e10..0000000
--- a/src/crashreporter/UploadProgressDialog.cpp
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
-** 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.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
-*/
-
-/*
-** \file UploadProgressDialog.cpp
-** \brief Displays the progress of uploading a crash report to the server
-*/
-
-#include "UploadProgressDialog.h"
-
-
-UploadProgressDialog::UploadProgressDialog(QWidget *parent)
- : QDialog(parent)
-{
- ui.setupUi(this);
-
- setModal(true);
-}
-
-void
-UploadProgressDialog::setVisible(bool visible)
-{
- if (visible) {
- ui.progressBar->setRange(0, 0);
- ui.buttonBox->setStandardButtons(QDialogButtonBox::Cancel);
- }
- QDialog::setVisible(visible);
-}
-
-void
-UploadProgressDialog::setStatus(const QString &status)
-{
- ui.lblStatus->setText(status);
-}
-
-void
-UploadProgressDialog::setUploadProgress(int done, int total)
-{
- ui.progressBar->setRange(0, total);
- ui.progressBar->setValue(done);
-}
-
-void
-UploadProgressDialog::uploadFailed(const QString &error)
-{
- ui.lblStatus->setText(tr("Unable to send report: %1").arg(error));
-
- ui.progressBar->setRange(0, 1);
- ui.progressBar->setValue(1);
-
- ui.buttonBox->setStandardButtons(QDialogButtonBox::Ok);
-}
-
diff --git a/src/crashreporter/UploadProgressDialog.h b/src/crashreporter/UploadProgressDialog.h
deleted file mode 100644
index e2cfcec..0000000
--- a/src/crashreporter/UploadProgressDialog.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
-** 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.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
-*/
-
-/*
-** \file UploadProgressDialog.cpp
-** \brief Displays the progress of uploading a crash report to the server
-*/
-
-#ifndef _UPLOADPROGRESSDIALOG_H
-#define _UPLOADPROGRESSDIALOG_H
-
-#include "ui_UploadProgressDialog.h"
-
-
-class UploadProgressDialog : public QDialog
-{
- Q_OBJECT
-
-public:
- /** Default constructor.
- */
- UploadProgressDialog(QWidget *parent = 0);
-
-public slots:
- /** Sets the status message text in the dialog to <b>status</b>.
- */
- void setStatus(const QString &status);
-
- /** Updates the minidump upload progress bar to <b>value</b> out of
- * <b>maximum</b> steps. If <b>value</b> and <b>maximum</b> are both 0,
- * then a "busy" progress bar is displayed.
- */
- void setUploadProgress(int value, int maximum);
-
- /** Called when the minidump upload fails. The string <b>error</b>
- * provides a human-readable description of the reason the upload
- * failed, which is displayed for the user.
- */
- void uploadFailed(const QString &error);
-
-protected:
- /** Overloaded method called when the progress dialog is first shown in
- * order to initialize the progress bar, status text and dialog button
- * box.
- */
- virtual void setVisible(bool visible);
-
-private:
- /** Qt Designer generated object.
- */
- Ui::UploadProgressDialog ui;
-};
-
-#endif
-
diff --git a/src/crashreporter/UploadProgressDialog.ui b/src/crashreporter/UploadProgressDialog.ui
deleted file mode 100644
index 4b985ac..0000000
--- a/src/crashreporter/UploadProgressDialog.ui
+++ /dev/null
@@ -1,106 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ui version="4.0">
- <class>UploadProgressDialog</class>
- <widget class="QDialog" name="UploadProgressDialog">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>366</width>
- <height>104</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Uploading Crash Report</string>
- </property>
- <property name="windowIcon">
- <iconset resource="res/CrashReporter.qrc">
- <normaloff>:/images/32x32/tools-report-bug.png</normaloff>:/images/32x32/tools-report-bug.png</iconset>
- </property>
- <property name="modal">
- <bool>true</bool>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0" rowspan="2">
- <widget class="QLabel" name="lblPixmap">
- <property name="text">
- <string/>
- </property>
- <property name="pixmap">
- <pixmap resource="res/CrashReporter.qrc">:/images/48x48/tools-report-bug.png</pixmap>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QLabel" name="lblStatus">
- <property name="text">
- <string/>
- </property>
- <property name="wordWrap">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QProgressBar" name="progressBar">
- <property name="value">
- <number>0</number>
- </property>
- <property name="textVisible">
- <bool>false</bool>
- </property>
- <property name="format">
- <string/>
- </property>
- </widget>
- </item>
- <item row="2" column="0" colspan="2">
- <widget class="QDialogButtonBox" name="buttonBox">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="standardButtons">
- <set>QDialogButtonBox::Cancel</set>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <resources>
- <include location="res/CrashReporter.qrc"/>
- </resources>
- <connections>
- <connection>
- <sender>buttonBox</sender>
- <signal>accepted()</signal>
- <receiver>UploadProgressDialog</receiver>
- <slot>accept()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>182</x>
- <y>81</y>
- </hint>
- <hint type="destinationlabel">
- <x>182</x>
- <y>51</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>buttonBox</sender>
- <signal>rejected()</signal>
- <receiver>UploadProgressDialog</receiver>
- <slot>reject()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>182</x>
- <y>81</y>
- </hint>
- <hint type="destinationlabel">
- <x>182</x>
- <y>51</y>
- </hint>
- </hints>
- </connection>
- </connections>
-</ui>
diff --git a/src/crashreporter/main.cpp b/src/crashreporter/main.cpp
index 9d77dfd..558896c 100644
--- a/src/crashreporter/main.cpp
+++ b/src/crashreporter/main.cpp
@@ -22,34 +22,6 @@
#include <QTextStream>
#include <QTextCodec>
-
-/** Open the minidump file given by <b>fileName</b> and read its entire
- * contents into a QByteArray. Returns the contents of the minidump file
- * on success. If an error occurs, this returns a default-constructed
- * QByteArray and sets <b>errorMessage</b> to a string describing the error
- * ecountered.
- */
-QByteArray
-read_minidump_file(const QString &fileName, QString &errorMessage)
-{
- QByteArray md;
- QFile mdFile(fileName);
-
- if (! mdFile.open(QIODevice::ReadOnly)) {
- errorMessage = mdFile.errorString();
- return QByteArray();
- }
- while (! mdFile.atEnd()) {
- md.append(mdFile.readAll());
- if (mdFile.error() != QFile::NoError) {
- errorMessage = mdFile.errorString();
- return QByteArray();
- }
- }
- mdFile.close();
- return md;
-}
-
/** Read the crash dump annotations file given by <b>fileName</b> and parse
* each line into a Key=Value pair. Returns a QHash containing the keys
* mapped to their values on success. If a file or parse error occurs, this
@@ -94,7 +66,6 @@ main(int argc, char *argv[])
QFileInfo minidumpFile, extraInfoFile;
QString minidumpFilePath, extraInfoFilePath, errorMessage;
QHash<QString,QString> annotations;
- QByteArray minidump;
if (argc < 2) {
errorMessage = "No minidump file specified.";
@@ -131,14 +102,6 @@ main(int argc, char *argv[])
goto err;
}
- /* Read the minidump file's contents */
- minidump = read_minidump_file(minidumpFilePath, errorMessage);
- if (minidump.isNull()) {
- errorMessage = QString("Unable to read minidump file '%1': %2")
- .arg(minidumpFilePath)
- .arg(errorMessage);
- goto err;
- }
/* Read and parse the crash annotations file */
annotations = read_annotations_file(extraInfoFilePath, errorMessage);
if (annotations.isEmpty()) {
@@ -149,8 +112,8 @@ main(int argc, char *argv[])
}
/* Display the crash reporting dialog */
- crashDialog.setMinidump(minidumpFile.baseName(), minidump);
crashDialog.setCrashAnnotations(annotations);
+ crashDialog.setMinidumpFiles(minidumpFilePath, extraInfoFilePath);
crashDialog.show();
return app.exec();
@@ -171,8 +134,8 @@ err:
"help diagnose the problem, but was unable to do so. Please report "
"this problem, along with what you were doing before Vidalia crashed, "
"to the developers at:</p><p>"
- "<a href=\"https://trac.vidalia-project.net/wiki/ReportingBugs\">"
- "https://trac.vidalia-project.net/wiki/ReportingBugs</a></p> "
+ "<a href=\"https://trac.torproject.org/projects/tor/newticket\">"
+ "https://trac.torproject.org/projects/tor/newticket</a></p> "
"<p>Click \"Show Details\" below for information about the problem "
"encountered.");
1
0
commit 75d7d200f799919ce144d7618ab646377dbd433a
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Fri Apr 22 03:11:49 2011 -0300
Add breakpad for *nix
---
cmake/FindBreakpad.cmake | 3 --
src/crashreporter/CMakeLists.txt | 1 +
src/vidalia/CMakeLists.txt | 2 +-
src/vidalia/CrashReporter.cpp | 39 ++++++++++++++++++++++++++++++++-----
src/vidalia/main.cpp | 2 +
5 files changed, 37 insertions(+), 10 deletions(-)
diff --git a/cmake/FindBreakpad.cmake b/cmake/FindBreakpad.cmake
index 607d054..c2e622f 100644
--- a/cmake/FindBreakpad.cmake
+++ b/cmake/FindBreakpad.cmake
@@ -43,8 +43,5 @@ if (WIN32)
message(FATAL_ERROR
"Breakpad support on Windows currently requires Visual Studio.")
endif(MSVC)
-else(WIN32)
- message(FATAL_ERROR
- "Breakpad support is not currently available on your platform.")
endif(WIN32)
diff --git a/src/crashreporter/CMakeLists.txt b/src/crashreporter/CMakeLists.txt
index f396d9a..8fa72bf 100644
--- a/src/crashreporter/CMakeLists.txt
+++ b/src/crashreporter/CMakeLists.txt
@@ -57,6 +57,7 @@ target_link_libraries(crashreporter
${QT_QTCORE_LIBRARY}
${QT_QTGUI_LIBRARY}
${QT_QTNETWORK_LIBRARY}
+ ${BREAKPAD_LIBRARY}
common
)
if (WIN32)
diff --git a/src/vidalia/CMakeLists.txt b/src/vidalia/CMakeLists.txt
index 15eac34..8d52368 100644
--- a/src/vidalia/CMakeLists.txt
+++ b/src/vidalia/CMakeLists.txt
@@ -467,7 +467,7 @@ if (USE_MINIUPNPC)
target_link_libraries(${vidalia_BIN} miniupnpc)
endif(USE_MINIUPNPC)
if (USE_BREAKPAD)
- target_link_libraries(${vidalia_BIN} ${BREAKPAD_LIBRARIES})
+ target_link_libraries(${vidalia_BIN} ${BREAKPAD_LIBRARY})
endif(USE_BREAKPAD)
if (USE_MARBLE)
target_link_libraries(${vidalia_BIN}
diff --git a/src/vidalia/CrashReporter.cpp b/src/vidalia/CrashReporter.cpp
index b3a06fe..471632e 100644
--- a/src/vidalia/CrashReporter.cpp
+++ b/src/vidalia/CrashReporter.cpp
@@ -50,8 +50,12 @@
#include <client/windows/handler/exception_handler.h>
#elif defined(Q_OS_MAC)
#include <client/mac/handler/exception_handler.h>
+#include <sys/wait.h>
+#include <fcntl.h>
#elif defined(Q_OS_LINUX)
#include <client/linux/handler/exception_handler.h>
+#include <sys/wait.h>
+#include <fcntl.h>
#elif defined(Q_OS_SOLARIS)
#include <client/solaris/handler/exception_handler.h>
#endif
@@ -225,7 +229,10 @@ write_extra_dump_info(const _char_t *path, const _char_t *id, time_t crashTime)
if (hFile == INVALID_HANDLE_VALUE)
return false;
#else
- /* TODO: Implement for non-Windowses */
+ _file_handle_t hFile = creat(extraInfoPath, S_IRUSR | S_IWUSR);
+ if(hFile == -1) {
+ return false;
+ }
#endif
char crashTimeString[24], startupTimeString[24];
@@ -241,8 +248,7 @@ write_extra_dump_info(const _char_t *path, const _char_t *id, time_t crashTime)
#if defined(Q_OS_WIN32)
CloseHandle(hFile);
#else
- /* TODO: Implement for non-Windowses */
- /* close(hFile); */
+ close(hFile);
#endif
return true;
}
@@ -270,6 +276,7 @@ minidump_callback(const _char_t *path, // Path to the minidump file
* restart, and any necessary restart arguments. */
write_extra_dump_info(path, id, time(NULL));
+#if defined(Q_OS_WIN32)
/* Format the command line used to launch the crash reporter */
_char_t commandLine[MAX_CMD_LEN] = TEXT("");
append_string(commandLine, TEXT("\""), MAX_CMD_LEN);
@@ -283,7 +290,6 @@ minidump_callback(const _char_t *path, // Path to the minidump file
return false;
/* Launch the crash reporter with the name and location of the minidump */
-#if defined(Q_OS_WIN32)
PROCESS_INFORMATION pi;
STARTUPINFOW si;
@@ -302,8 +308,29 @@ minidump_callback(const _char_t *path, // Path to the minidump file
TerminateProcess(GetCurrentProcess(), 1);
return true;
#else
- /* TODO: Implement for non-Windowses */
- return false;
+ /* Format the command line used to launch the crash reporter */
+ _char_t args[MAX_CMD_LEN] = TEXT("");
+ size_t len;
+
+ append_string(args, path, MAX_CMD_LEN);
+ append_string(args, PATH_SEPARATOR, MAX_CMD_LEN);
+ append_string(args, id, MAX_CMD_LEN);
+ len = append_string(args, TEXT(".dmp"), MAX_CMD_LEN);
+ if (len >= MAX_CMD_LEN)
+ return false;
+
+ char *nargs[] = {crashReporterExecutable, args, NULL};
+
+ pid_t p = fork(), ret;
+ int status;
+ if(p == 0) {
+ execv(crashReporterExecutable, nargs);
+ } else {
+ ret = wait(&status);
+ if(ret == -1)
+ return false;
+ }
+ return true;
#endif
}
diff --git a/src/vidalia/main.cpp b/src/vidalia/main.cpp
index acb9d66..7536ebc 100644
--- a/src/vidalia/main.cpp
+++ b/src/vidalia/main.cpp
@@ -43,6 +43,8 @@ setup_crash_reporter()
QString crashReporter = Vidalia::applicationDirPath() + "\\crashreporter.exe";
#elif defined(Q_OS_MAC)
QString crashReporter = Vidalia::applicationDirPath() + "/CrashReporter.app";
+#else
+ QString crashReporter = Vidalia::applicationDirPath() + "/crashreporter";
#endif
if (! QFileInfo(crashReporter).isExecutable()) {
vWarn("Unable to find crash reporting application. Crash reporting will "
1
0
commit 5ed719fd6c7c7057de7392785f327fdbc55000ae
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Thu May 5 13:42:03 2011 -0400
Increment version to 0.2.3.1-alpha
---
configure.in | 2 +-
contrib/tor-mingw.nsi.in | 2 +-
src/win32/orconfig.h | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.in b/configure.in
index b7e4180..0918c95 100644
--- a/configure.in
+++ b/configure.in
@@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2008, The Tor Project, Inc.
dnl See LICENSE for licensing information
AC_INIT
-AM_INIT_AUTOMAKE(tor, 0.2.3.0-alpha-dev)
+AM_INIT_AUTOMAKE(tor, 0.2.3.1-alpha)
AM_CONFIG_HEADER(orconfig.h)
AC_CANONICAL_HOST
diff --git a/contrib/tor-mingw.nsi.in b/contrib/tor-mingw.nsi.in
index 1cecf34..82e9468 100644
--- a/contrib/tor-mingw.nsi.in
+++ b/contrib/tor-mingw.nsi.in
@@ -8,7 +8,7 @@
!include "LogicLib.nsh"
!include "FileFunc.nsh"
!insertmacro GetParameters
-!define VERSION "0.2.3.0-alpha-dev"
+!define VERSION "0.2.3.1-alpha"
!define INSTALLER "tor-${VERSION}-win32.exe"
!define WEBSITE "https://www.torproject.org/"
!define LICENSE "LICENSE"
diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h
index dc84d78..f4efc0c 100644
--- a/src/win32/orconfig.h
+++ b/src/win32/orconfig.h
@@ -233,4 +233,4 @@
#define USING_TWOS_COMPLEMENT
/* Version number of package */
-#define VERSION "0.2.3.0-alpha-dev"
+#define VERSION "0.2.3.1-alpha"
1
0