diff -Nru vidalia-0.2.10/CHANGELOG vidalia-0.2.15/CHANGELOG --- vidalia-0.2.10/CHANGELOG 2010-08-26 19:13:57.000000000 +0000 +++ vidalia-0.2.15/CHANGELOG 2011-10-07 19:16:56.000000000 +0000 @@ -1,3 +1,106 @@ +0.2.15 07-Oct-2011 + o Draw the bandwidth graph curves based on the local maximum, not + the global maximum. Fixes bug 2188. + o Add an option for setting up a non-exit relay to the Sharing + configuration panel. This is meant to clarify what an exit policy + and an exit relay are. Resolves bug 2644. + o Display time statistics for bridges in UTC time, rather than local + time. Fixes bug 3342. + o Change the parameter for ordering the entries in the Basic Log + list from currentTime to currentDateTime to avoid missplacing + entries from different days. + o Check the tor version and that settings are sanitized before + trying to use the port autoconfiguration feature. Fixes bug 3843. + o Provide a way to hide Dock or System Tray icons in OSX. Resolves + ticket 2163. + o Make new processes appear at front when they are started (OSX + specific). + +0.2.14 26-Aug-2011 + o Make the AutoPort setting default to false, so that it doesn't + break backwards compatibility for people that aren't using Vidalia + inside Tor Browser Bundle. + +0.2.13 10-Aug-2011 + o Add a way to bootstrap Tor's torrc file (copy the torrc to a given + directory before Vidalia starts) so that packages such as + Bridge-by-default portable bundles for OSX don't violate the directory + structure of the operating system. Fixes bug 2821. + o Add the proper CA Certificates so that the "Find Bridges" button works + again. Fixes bug 2835. + o Update the useful links help page. Fixes bug 2809. + o Reintegrate Breakpad, and make it available in platforms other than + Windows. Resolves bug 2105. + o Fix bandwidth assigned to relays on the Network Map. A lot of relays are + displaying an erroneous bandwidth and since they are ordered by that + value in the Network Map, it leads to confusion. Vidalia now specifies + the bandwidth as the minimum of the three possible values (burst, + average and observed). Fixes bug 2744. + o Fix layouts in the configuration panel to make them look seamlessly + across all platforms. + o Add -no-remote parameter to Firefox so it allows another instance of + non-TBB Firefox. Fixes bug 2254. + o Add the possibility of changing the torrc path while Tor hasn't + started. Fixes bug 3109. + o Make the fact that bridges don't need a DirPort setting more clear by + removing the content of the field when disabling it. Fixes bug 3119. + o Improve command line parameter handling. Resolves bug 2965. + o Fix layout in BandwidthGraph to display labels correctly in every + language. Fixes bug 2500. + o Updates README.debs to reflect the change in the packaging now that + Vidalia uses Git. Fixes bug 3668. + o Add a way to use the autoconfiguration for ControlPort and SocksPort. + Tor can now autoconfigure Control and Socks Ports when the default ones + are in use. This makes it easier to run several different instances of + TBB at the same time. Resolves bug 3077. + o Provide the necessary fields (Control password, ControlPort) to let + TorButton NEWNYM. Vidalia provides these in env vars when it launches + the Firefox instance. Resolves bug 2659. + +0.2.12 10-Apr-2011 + o Vidalia's SVN repository has been migrated to Git. All branches but + master have been archived for later review, since SVN trunk had changed + significantly; they should be reviewed later to determine whether + they can and should still be merged. All \version $Id$ headers have been + removed since Git does not support $Id$. + o As part of the move, Vidalia's Trac is now at: + https://trac.torproject.org/ + All Trac numbers in Vidalia 0.2.12 and beyond refer to the new Trac + entries. The old Trac is archived for posterity at: + https://trac-vidalia.torproject.org/projects/vidalia + o Add support for Tor's ControlSocket as an alternative to ControlPort. It + can be used for Linux maintainers to build a better default interaction + between Tor and Vidalia by just setting the right permissions and file + owner on the socket file for the connection. Using ControlSocket means + you don't need to worry about authentication methods with ControlPort. + Resolves bug 2091. + o Add a way to edit arbitrary torrc entries while Tor is running. Now + Vidalia users have more flexibility for configuring Tor. This change + doesn't replace editing torrc directly, because on some systems + (like Debian) Tor can't write to its torrc file. Resolves bug 2083. + o Remove Vidalia's direct dependency on OpenSSL. This dependency had + caused Vidalia to fail to run on FreeBSD (due to a bug in the FreeBSD + ports collection) and Fedora 14 (due to an incompatibility between + OpenSSL and Fedora's SELinux configuration). Resolves bug 2287 and + 2611. + o Restore compatibility with Windows 2000. An update to the MiniUPnPc + library had introduced an unnecessary dependency on a system library + not included in Windows 2000. Fixes bug 2612. + o Fix how the advanced message log window displays message updates when + messages are coming in too quickly, for example when you're listening + to debug-level messages from Tor. Fixes bug 2093. + o Add a what's this? link to the bridge option to explain in a more verbose + fashion what being a bridge involves. Resolves bug 1995. + o Prompt users to restart Tor after changing the path to torrc. Fixes bug + 2086. + o Disable the directory port configuration field when configuring a + bridge. A bridge does not need to operate a separate directory port, + and operating one can make a bridge easier to detect. Fixes bug 2431. + o When Vidalia asks Tor for a bridge's usage history before anyone has + used it, correctly report that no clients have used the bridge recently. + Previously, it would incorrectly warn that it was unable to retrieve the + bridge's usage history. Fixes bug 2186. + 0.2.10 26-Aug-2010 o Drop remote GeoIP lookups. Instead, the default behavior now is to use the country-level GeoIP database that ships with Tor to map an IP diff -Nru vidalia-0.2.10/changes/bug2188 vidalia-0.2.15/changes/bug2188 --- vidalia-0.2.10/changes/bug2188 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/changes/bug2188 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,2 @@ + o Draw the bandwidth graph curves based on the local maximum, not + the global maximum. Fixes bug 2188. \ No newline at end of file diff -Nru vidalia-0.2.10/changes/bug2644 vidalia-0.2.15/changes/bug2644 --- vidalia-0.2.10/changes/bug2644 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/changes/bug2644 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,3 @@ + o Add an option for setting up a non-exit relay to the Sharing configuration + panel. This is meant to clarify what an exit policy and an exit relay are. + Resolves bug 2644. \ No newline at end of file diff -Nru vidalia-0.2.10/changes/bug3342 vidalia-0.2.15/changes/bug3342 --- vidalia-0.2.10/changes/bug3342 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/changes/bug3342 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,2 @@ + o Display time statistics for bridges in UTC time, rather than local + time. Fixes bug 3342. \ No newline at end of file diff -Nru vidalia-0.2.10/changes/bug3759 vidalia-0.2.15/changes/bug3759 --- vidalia-0.2.10/changes/bug3759 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/changes/bug3759 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,3 @@ + o Change the parameter for ordering the entries in the Basic Log + list from currentTime to currentDateTime to avoid missplacing + entries from different days. \ No newline at end of file diff -Nru vidalia-0.2.10/changes/bug3843 vidalia-0.2.15/changes/bug3843 --- vidalia-0.2.10/changes/bug3843 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/changes/bug3843 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,2 @@ + o Check tor version and that settings are sanitized before trying to + use the port autoconfiguration feature. Fixes bug 3843. \ No newline at end of file diff -Nru vidalia-0.2.10/changes/feat2163 vidalia-0.2.15/changes/feat2163 --- vidalia-0.2.10/changes/feat2163 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/changes/feat2163 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,2 @@ + o Provide a way to hide Dock or System Tray icons in OSX. Resolves + ticket 2163. \ No newline at end of file diff -Nru vidalia-0.2.10/cmake/FindBreakpad.cmake vidalia-0.2.15/cmake/FindBreakpad.cmake --- vidalia-0.2.10/cmake/FindBreakpad.cmake 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/cmake/FindBreakpad.cmake 2011-10-07 19:16:56.000000000 +0000 @@ -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 @@ -43,8 +43,5 @@ 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 -Nru vidalia-0.2.10/cmake/FindGeoIP.cmake vidalia-0.2.15/cmake/FindGeoIP.cmake --- vidalia-0.2.10/cmake/FindGeoIP.cmake 2010-08-05 20:03:02.000000000 +0000 +++ vidalia-0.2.15/cmake/FindGeoIP.cmake 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: FindGeoIP.cmake 4372 2010-08-05 20:03:02Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/cmake/FindMarble.cmake vidalia-0.2.15/cmake/FindMarble.cmake --- vidalia-0.2.10/cmake/FindMarble.cmake 2009-02-24 20:21:40.000000000 +0000 +++ vidalia-0.2.15/cmake/FindMarble.cmake 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: FindMarble.cmake 3588 2009-02-24 20:21:40Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/cmake/FindOpenSSL.cmake vidalia-0.2.15/cmake/FindOpenSSL.cmake --- vidalia-0.2.10/cmake/FindOpenSSL.cmake 2008-04-02 02:00:24.000000000 +0000 +++ vidalia-0.2.15/cmake/FindOpenSSL.cmake 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: FindOpenSSL.cmake 2474 2008-04-02 02:00:24Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/cmake/FindWiX.cmake vidalia-0.2.15/cmake/FindWiX.cmake --- vidalia-0.2.10/cmake/FindWiX.cmake 2008-12-07 04:42:14.000000000 +0000 +++ vidalia-0.2.15/cmake/FindWiX.cmake 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: FindWiX.cmake 3371 2008-12-07 04:42:14Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/cmake/VidaliaMacros.cmake vidalia-0.2.15/cmake/VidaliaMacros.cmake --- vidalia-0.2.10/cmake/VidaliaMacros.cmake 2009-08-26 22:42:15.000000000 +0000 +++ vidalia-0.2.15/cmake/VidaliaMacros.cmake 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: VidaliaMacros.cmake 4067 2009-08-26 22:42:15Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. ## diff -Nru vidalia-0.2.10/CMakeLists.txt vidalia-0.2.15/CMakeLists.txt --- vidalia-0.2.10/CMakeLists.txt 2010-08-26 19:15:14.000000000 +0000 +++ vidalia-0.2.15/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,19 +1,19 @@ ## -## $Id: CMakeLists.txt 4411 2010-08-26 19:15:14Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. ## set(VER_MAJOR "0") set(VER_MINOR "2") -set(VER_PATCH "10") +set(VER_PATCH "15") set(VERSION "${VER_MAJOR}.${VER_MINOR}.${VER_PATCH}") message(STATUS "Configuring Vidalia ${VERSION}") project(Vidalia) @@ -52,9 +52,9 @@ if (WIN32) include(${CMAKE_SOURCE_DIR}/cmake/FindWiX.cmake) endif(WIN32) -if (MSVC OR UNIX) +if (MSVC) include(${CMAKE_SOURCE_DIR}/cmake/FindOpenSSL.cmake) -endif(MSVC OR UNIX) +endif(MSVC) if(MSVC_IDE) set(CMAKE_SUPPRESS_REGENERATION TRUE) @@ -90,6 +90,9 @@ endif(OSX_FORCE_32BIT) endif(APPLE) +## Define if compiled with Windows 2k support +option(WIN2K "Enable Windows 2k support." OFF) + ## UPnP support is currently optional (enabled by default) option(USE_MINIUPNPC "Enable UPnP support using the MiniUPnPc library." ON) diff -Nru vidalia-0.2.10/config.h.in vidalia-0.2.15/config.h.in --- vidalia-0.2.10/config.h.in 2010-08-05 20:13:14.000000000 +0000 +++ vidalia-0.2.15/config.h.in 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ /* -** $Id: config.h.in 4376 2010-08-05 20:13:14Z edmanm $ +** $Id$ ** ** This file is part of Vidalia, and is subject to the license terms in the ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +** including this file, may be copied, modified, propagated, or distributed +** except according to the terms described in the LICENSE file. ** */ @@ -42,5 +42,7 @@ #cmakedefine USE_GEOIP +#cmakedefine WIN2K + #endif diff -Nru vidalia-0.2.10/contrib/geoip.py vidalia-0.2.15/contrib/geoip.py --- vidalia-0.2.10/contrib/geoip.py 2009-05-13 18:54:28.000000000 +0000 +++ vidalia-0.2.15/contrib/geoip.py 2011-10-07 19:16:56.000000000 +0000 @@ -1,14 +1,14 @@ #!/usr/bin/python ## -## $Id: geoip.py 3767 2009-05-13 18:54:28Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/debian/changelog vidalia-0.2.15/debian/changelog --- vidalia-0.2.10/debian/changelog 2010-10-19 20:14:32.000000000 +0000 +++ vidalia-0.2.15/debian/changelog 2012-01-10 03:40:50.000000000 +0000 @@ -1,3 +1,61 @@ +vidalia (0.2.15-1~ppa1~natty1) natty; urgency=low + + * Backport to Natty. + + -- Nicola Ferralis Mon, 09 Jan 2012 22:39:10 -0500 + +vidalia (0.2.15-1) unstable; urgency=low + + * New upstream release. + + -- Ulises Vitulli Tue, 15 Nov 2011 17:14:07 -0300 + +vidalia (0.2.14-3) unstable; urgency=low + + * Moved debconf actions from config to postinst script (Closes: #641044). + * Remove deprecated files that enforced Tor not to start after having + chosen to do so. This comes from the older approach to control Tor + (Closes: #642223). + * Added debconf templates translations: + - French, thanks Christian Perrier (Closes: #640769). + - German, thanks Martin.E.Schauer (Closes: #641920). + + -- Ulises Vitulli Mon, 19 Sep 2011 12:05:30 -0300 + +vidalia (0.2.14-2) unstable; urgency=low + + * The 'Napoleon-Of-Crime' dupload. + * Tor's ControlSocket enabled version upload allowed to port exp + changes to handle socket com out of the box (Closes: #640077). + + -- Ulises Vitulli Sat, 03 Sep 2011 15:47:23 -0300 + +vidalia (0.2.14-1) unstable; urgency=low + + * The 'Monday-Rocking-Skiing' dupload. + * New upstream release. + * Improve building targets for simplifying portscripts. + + -- Ulises Vitulli Mon, 29 Aug 2011 09:43:47 -0300 + +vidalia (0.2.12-2) unstable; urgency=low + + * The 'It-is-a-nice-day-for-barbacue' dupload. + * Debconf kills Tor daemon while told not to (Closes: #623203). + * Missing steps on CookieAuthentication/ControlPort documentation + (Closes: #623309). + + -- Ulises Vitulli Tue, 19 Apr 2011 12:26:26 -0300 + +vidalia (0.2.12-1) unstable; urgency=low + + * The 'Long-time-no-see!' dupload. + * New upstream release. + * Updated Homepage field. + * Updated Standard-version to 3.9.2.0 (no changes needed). + + -- Ulises Vitulli Mon, 11 Apr 2011 11:20:42 -0300 + vidalia (0.2.10-3) unstable; urgency=low * An 'Oops-ish' dupload. diff -Nru vidalia-0.2.10/debian/config vidalia-0.2.15/debian/config --- vidalia-0.2.10/debian/config 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/config 2012-01-10 03:39:04.000000000 +0000 @@ -5,52 +5,26 @@ . /usr/share/debconf/confmodule fi -seen='false' -askuser() { - question='vidalia/tor-daemon-interaction' - db_input high $question || true - db_go || true - db_get $question -} - +## Addopt wicd-netdev interaction approach. if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ]; then - if dpkg -l tor > /dev/null 2>&1; then - # installed - if [ -e '/var/run/tor/tor.pid' ] || [ "$1" = "reconfigure" ]; then - # and already running - askuser - seen='true' - case "$RET" in - (nothing) - if [ -f /etc/default/tor.vidalia ]; then - ucf --debconf-ok --three-way /usr/share/vidalia/default.tor-on /etc/default/tor.vidalia - fi - ;; - (one-off) - invoke-rc.d --force tor stop - if [ -f /etc/default/tor.vidalia ]; then - ucf --debconf-ok --three-way /usr/share/vidalia/default.tor-on /etc/default/tor.vidalia - fi - ;; - (permanent) - invoke-rc.d --force tor stop - ucf --debconf-ok --three-way /usr/share/vidalia/default.tor-off /etc/default/tor.vidalia - ;; - esac - fi - fi - - if pgrep -x tor > /dev/null 2>&1; then - # still running?? (e.g. chroot) - if [ "$seen" = "false" ]; then - askuser - if [ "$RET" = "nothing" ] || [ "$RET" = "one-off" ]; then - echo -n "Stopping tor daemon: " - pkill -x tor > /dev/null && echo "tor." || echo 'Failed!' - fi - fi - fi - db_stop + + # Get regular/non-system users + users="$(getent passwd | awk -F: '{if ($3 >= 1000 && $3 < 60000) print $1}' | sort | tr '\n' ',' | sed 's@,@, @g;s@, $@@g')" + + # Get a list of users into 'debian-tor' group + debiantor=$(getent group debian-tor | cut -d: -f4 | sed -e 's@,@ @g') + + # Don't show users already in debian-tor + for u in $debiantor; do + users=$(echo $users | sed "s@$u, @@g;s@, $u\$@@g;s@^$u\$@@g"); + done + + # Substract already present users + db_subst vidalia/users users "$users" + if [ "$users" != "" ]; then + db_input high vidalia/users || true + db_go + fi fi #DEBHELPER# diff -Nru vidalia-0.2.10/debian/control vidalia-0.2.15/debian/control --- vidalia-0.2.10/debian/control 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/control 2012-01-10 03:39:04.000000000 +0000 @@ -4,15 +4,15 @@ Maintainer: Vern Sun Uploaders: Ulises Vitulli , Erinn Clark Build-Depends: debhelper (>= 6.0.7~), autotools-dev, libqt4-dev (>= 4.1.0), po-debconf (>= 1.0), cmake (>= 2.4.8), libssl-dev (>= 0.9.8g) -Standards-Version: 3.9.1 -Homepage: http://www.vidalia-project.net +Standards-Version: 3.9.2.0 +Homepage: https://www.torproject.org/projects/vidalia Vcs-Git: git://git.debian.org/collab-maint/vidalia.git/ Vcs-Browser: http://git.debian.org/?p=collab-maint/vidalia.git Package: vidalia Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, debconf (>=1.5.11) | debconf-2.0, ucf -Recommends: tor +Depends: ${shlibs:Depends}, ${misc:Depends}, debconf (>=1.5.11) | debconf-2.0, + ucf, adduser, tor (>= 0.2.2.29-beta-1) Suggests: iceweasel-torbutton Description: controller GUI for Tor Vidalia offers a graphical user interface to start and stop Tor, view diff -Nru vidalia-0.2.10/debian/default.tor-off vidalia-0.2.15/debian/default.tor-off --- vidalia-0.2.10/debian/default.tor-off 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/default.tor-off 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -if [ -x /usr/bin/vidalia ]; then - RUN_DAEMON=no -fi diff -Nru vidalia-0.2.10/debian/default.tor-on vidalia-0.2.15/debian/default.tor-on --- vidalia-0.2.10/debian/default.tor-on 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/default.tor-on 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -# diff -Nru vidalia-0.2.10/debian/gbp.conf vidalia-0.2.15/debian/gbp.conf --- vidalia-0.2.10/debian/gbp.conf 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/debian/gbp.conf 2012-01-10 03:39:04.000000000 +0000 @@ -0,0 +1,2 @@ +[DEFAULT] +pristine-tar = True diff -Nru vidalia-0.2.10/debian/NEWS vidalia-0.2.15/debian/NEWS --- vidalia-0.2.10/debian/NEWS 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/debian/NEWS 2012-01-10 03:39:04.000000000 +0000 @@ -0,0 +1,21 @@ +vidalia (0.2.14-2) unstable; urgency=low + + As #552556 got solved up through the years, really great news come up today + . + Having "Control Socket" enabled by default on Tor package lets us to + turn to almost zero configuration required for Vidalia users to run Tor + . + This means we are be able to speak, through a local Unix socket, with Tor + directly with no extra authentication required + . + Although this could appear to be frightening, basic POSIX permissions + are still required to access this socket, which, except in the case + you screw up your system, is pretty fair + . + To put things into perspective, most of all services on your system, even + the more sensible ones, have been secured this way over many decades, + so don't get stressed out! :-) + . + Kudos to Weasel&&everyone involved in this awesome goal. + + -- Ulises Vitulli Sat, 03 Sep 2011 15:47:23 -0300 diff -Nru vidalia-0.2.10/debian/patches/series vidalia-0.2.15/debian/patches/series --- vidalia-0.2.10/debian/patches/series 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/patches/series 2012-01-10 03:39:04.000000000 +0000 @@ -1 +1,2 @@ debians-tor-binary-path.patch +use-control-socket.patch diff -Nru vidalia-0.2.10/debian/patches/use-control-socket.patch vidalia-0.2.15/debian/patches/use-control-socket.patch --- vidalia-0.2.10/debian/patches/use-control-socket.patch 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/debian/patches/use-control-socket.patch 2012-01-10 03:39:04.000000000 +0000 @@ -0,0 +1,22 @@ +Author: dererk +Description: Switch to Control Socket by default, this involves using Debian Tor from 0.2.2.29-beta or above +--- old/src/vidalia/config/TorSettings.cpp 2011-06-23 11:03:12.809306636 -0300 ++++ new/src/vidalia/config/TorSettings.cpp 2011-06-23 11:06:17.142220714 -0300 +@@ -48,7 +48,7 @@ + /** Default to using hashed password authentication */ + #define DEFAULT_AUTH_METHOD PasswordAuth + /** Default control method */ +-#define DEFAULT_CONTROL_METHOD "ControlPort" ++#define DEFAULT_CONTROL_METHOD "ControlSocket" + /** Default socket path */ + #define DEFAULT_SOCKET_PATH "" + +@@ -84,7 +84,7 @@ + setDefault(SETTING_CONTROL_PORT, 9051); + setDefault(SETTING_AUTH_METHOD, toString(DEFAULT_AUTH_METHOD)); + setDefault(SETTING_CONTROL_METHOD, DEFAULT_CONTROL_METHOD); +- setDefault(SETTING_SOCKET_PATH, DEFAULT_SOCKET_PATH); ++ setDefault(SETTING_SOCKET_PATH, "/var/run/tor/control"); + setDefault(SETTING_DATA_DIRECTORY, ""); + setDefault(SETTING_CONTROL_PASSWORD, ""); + setDefault(SETTING_USE_RANDOM_PASSWORD, true); diff -Nru vidalia-0.2.10/debian/po/ca.po vidalia-0.2.15/debian/po/ca.po --- vidalia-0.2.10/debian/po/ca.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/ca.po 2012-01-10 03:39:04.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 0.1.9-1\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 19:11-0300\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" "PO-Revision-Date: 2008-09-17 16:17-0300\n" "Last-Translator: Ulises Vitulli \n" "Language-Team: \n" @@ -15,62 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Sense configuració" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Reinicia una vegada" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Control permanent" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Interacció Tor/Vidalia" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." -msgstr "Vidalia ho necessita per comunicar-se amb el dimoni que s'executa " -"de manera que pot proporcionar una interfície d'usuari gràfica per ell. " -" Açò necessita que es reconfigure manualment Tor per a que permeta una " -"autentificació segura (el recomanat) o que es reinicie Tor amb el control" -"de Vidalia.\n" -" * Sense configuració:\n" -" deixa Tor funcionant per ara. Vidalia no es podrà comunicar\n" -" amb Tor fins que es reconfigure de forma manual - vegeu\n" -" \"/usr/share/doc/vidalia/README.Debian\" per obtenir més detalls;\n" -" * Reinicia una vegada:\n" -" atura Tor ara de manera que Vidalia el puga engegar, tan sols esta\n" -" vegada - Tor s'arrencarà automàticament en els reinicis, de manera\n" -" que la configuració manual encara farà falta\n" -" * Control permanent:\n" -" atura Tor i permet simplement a Vidalia controlar que s'engegarà quan\n" -" s'executa Vidalia (no es pot utilitzar en sistemes multiusuari)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." +msgstr "" + diff -Nru vidalia-0.2.10/debian/po/cs.po vidalia-0.2.15/debian/po/cs.po --- vidalia-0.2.10/debian/po/cs.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/cs.po 2012-01-10 03:39:04.000000000 +0000 @@ -1,12 +1,14 @@ +# Czech PO debconf template translation of vidalia. +# Copyright (C) 2009 Martin Sin # This file is distributed under the same license as the vidalia package. -# Martin Sin , 2009. +# Martin Sin , 2009 - 2011. # msgid "" msgstr "" -"Project-Id-Version: vidalia 0.1.13-3\n" +"Project-Id-Version: vidalia 0.3.0alpha-2\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 19:11-0300\n" -"PO-Revision-Date: 2010-09-27 19:28+0200\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-06-24 09:09+0200\n" "Last-Translator: Martin Sin \n" "Language-Team: Czech \n" "Language: cs\n" @@ -14,62 +16,19 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Bez nastavení" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Jeden restart" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Ovládání natrvalo" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Vztah Tor/Vidalia" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "Uživatelé pro přidání do skupiny debian-tor:" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"Vidalia komunikuje s běžícím daemonem Tor a vytváří k němu grafické " -"uživatelské rozhraní. Pro zapnutí bezpečné autentizace (doporučeno) se " -"vyžaduje ruční přenastavení Tor nebo restart Tor přímo pomocí Vidalia.\n" -" * Bez nastavení:\n" -" nechá Tor běžet. Vidalia nebude moci komunikovat s\n" -" Tor dokud ho ručně nenastavíte - pro více informací se podívejte\n" -" na soubor „/usr/share/doc/vidalia/README.Debian“;\n" -" * Jeden restart:\n" -" Vidalia vypne Tor a pak ho znovu zapne, pouze jednou - po restartu\n" -" se Tor spustí opět sám, takže bude nutné provést některé ruční\n" -" nastavení programu;\n" -" * Ovládání natrvalo:\n" -" ukončí Tor a o zbytek se bude starat Vidalia sama\n" -" (nehodí se pro více-uživatelské systémy)." +"Uživatelé, kteří budou moci ovládat daemon Tor, musí být přidáni do skupiny " +"„debian-tor“." diff -Nru vidalia-0.2.10/debian/po/da.po vidalia-0.2.15/debian/po/da.po --- vidalia-0.2.10/debian/po/da.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/da.po 2012-01-10 03:39:04.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: vidalia\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 22:58-0300\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" "PO-Revision-Date: 2010-10-04 17:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -16,63 +16,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Ingen konfiguration" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Engangsgenstart" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Permanent overtagelse" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Interaktion mellem Tor/Vidalia:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"Vidalia har brug for at kommunikere med den kørende Tordæmon, så den kan " -"tilbyde en grafisk brugergrænseflade. Dette kræver enten en manuel " -"rekonfiguration af Tor, så sikker godkendelse tillades (anbefales) eller " -"en genstart af Tor under Vidalias kontrol.\n" -" * Ingen konfiguration:\n" -" lad Tor kører indtil videre. Vidalia vil ikke være i stand til\n" -" at kommunikere med Tor, før den er manuelt rekonfigureret - se \n" -" »/usr/share/doc/vidalia/README.Debian« for yderligere detaljer;\n" -" * Engangsgenstart:\n" -" stop Tor nu så Vidalia kan starte Tor, kun denne ene gang - Tor\n" -" vil starte selv ved genstarter, så manuel konfiguration vil stadig\n" -" være krævet;\n" -" * Permanent overtagelse:\n" -" stop Tor og lad Vidalia håndtere igangsættelse af Tor så snart du\n" -" kører Vidalia (ikke brugbar på flerbrugersystemer)." diff -Nru vidalia-0.2.10/debian/po/de.po vidalia-0.2.15/debian/po/de.po --- vidalia-0.2.10/debian/po/de.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/de.po 2012-01-10 03:39:04.000000000 +0000 @@ -1,14 +1,14 @@ # Translation of vidalia debconf templates to German # Copyright (C) Helge Kreutzmann , 2008. -# Copyright (C) Martin Eberhard Schauer , 2010. +# Copyright (C) Martin Eberhard Schauer , 2010, 2011. # This file is distributed under the same license as the vidalia package. # msgid "" msgstr "" -"Project-Id-Version: vidalia 0.2.10-2\n" +"Project-Id-Version: vidalia 0.2.14-2\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 19:11-0300\n" -"PO-Revision-Date: 2010-10-04 19:47+0200\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-06-23 19:20+0200\n" "Last-Translator: Martin Eberhard Schauer \n" "Language-Team: German \n" "Language: \n" @@ -17,64 +17,18 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Keine Konfiguration" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Einmaliger Neustart" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Ständige Übernahme" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Zusammenarbeit von Tor und Vidalia:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "Benutzer, die Mitglied der Gruppe debian-tor werden sollen:" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"Damit Vidalia eine grafische Oberfläche für den laufenden Tor-Daemon " -"bereitstellen kann, muss Vidalia mit ihm kommunizieren. Dies erfordert " -"entweder die manuelle Neukonfiguration von Tor, um eine sichere " -"Authentifizierung zu ermöglichen (empfohlen) oder einen von Vidalia " -"gesteuerten Neustart von Tor.\n" -" * Keine Konfiguration: \n" -" Tor vorerst weiterlaufen lassen. Vidalia kann nicht mit Tor\n" -" kommunizieren, bis er manuell neu konfiguriert wird - siehe\n" -" »/usr/share/doc/Vidalia/README.Debian« für weitere Einzelheiten.\n" -"* Einmaliger Neustart:\n" -" Tor jetzt beenden, damit er dieses eine Mal von Vidalia gestartet\n" -" wird. Tor startet bei den folgenden Systemstarts eigenständig. Eine\n" -" manuelle Konfiguration bleibt weiterhin erforderlich.\n" -" * Dauerhaften Übernahme:\n" -" Tor beenden und bei jedem Start von Vidalia von ihr steuern lassen\n" -" (kann auf Mehrbenutzer-Systemen nicht angewendet werden)." - +"Benutzer, die den Tor-Daemon steuern dürfen, müssen Mitglieder der Gruppe " +"»debian-tor« werden." diff -Nru vidalia-0.2.10/debian/po/es.po vidalia-0.2.15/debian/po/es.po --- vidalia-0.2.10/debian/po/es.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/es.po 2012-01-10 03:39:04.000000000 +0000 @@ -1,10 +1,10 @@ # vidalia po-debconf translation to Spanish -# Copyright (C) 2010 Software in the Public Interest +# Copyright (C) 2010, 2011 Software in the Public Interest # This file is distributed under the same license as the vidalia package. # # Changes: # - Initial translation -# Francisco Javier Cuadrado , 2010 +# Francisco Javier Cuadrado , 2010, 2011 # # Traductores, si no conocen el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este @@ -26,10 +26,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vidalia 0.2.7-4\n" +"Project-Id-Version: vidalia 0.3.0alpha-2\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 22:58-0300\n" -"PO-Revision-Date: 2010-05-03 10:10+0200\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-06-26 19:03+0100\n" "Last-Translator: Francisco Javier Cuadrado \n" "Language-Team: Debian l10n Spanish \n" "Language: es\n" @@ -37,63 +37,15 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Sin configuración" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Reiniciar sólo una vez" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Ceder el control permanentemente" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Tipo de interacción entre Tor y Vidalia:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "Usuarios a añadir al grupo «debian-tor»:" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." -msgstr "" -"Vidalia necesita comunicarse con el demonio en ejecución de Tor de modo que " -"pueda proporcionar una interfaz gráfica de usuario para éste. Esto requiere " -"una reconfiguración manual de Tor para permitir autenticación segura " -"(recomendado) o reiniciar Tor bajo el control de Vidalia.\n" -" * Sin configuración:\n" -" dejar Tor en ejecución por ahora. Vidalia no podrá comunicarse con Tor \n" -" hasta que se reconfigure manualmente, para más detalles vea el archivo \n" -" «/usr/share/doc/vidalia/README.Debian».\n" -" * Reiniciar sólo una vez:\n" -" parar Tor ahora de modo que Vidalia pueda ejecutarlo, sólo una vez, Tor \n" -" se iniciará al reiniciar el sistema, de modo que todavía se necesitará \n" -" configuración manual.\n" -" * Ceder el control permanentemente:\n" -" parar Tor y dejar a Vidalia que gestione su inicio cuando se ejecute \n" -" Vidalia (no se puede utilizar en un sistema con varios usuarios)." +#: ../templates:1001 +msgid "Users who should be able to control Tor daemon need to be added to the group \"debian-tor\"." +msgstr "Los usuarios que deberían poder controlar el demonio de Tor deben añadirse al grupo «debian-tor»." diff -Nru vidalia-0.2.10/debian/po/fi.po vidalia-0.2.15/debian/po/fi.po --- vidalia-0.2.10/debian/po/fi.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/fi.po 2012-01-10 03:39:04.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: vidalia\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 22:58-0300\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" "PO-Revision-Date: \n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" @@ -17,47 +17,16 @@ "X-Poedit-Language: Finnish\n" "X-Poedit-Country: FINLAND\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" msgstr "" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" diff -Nru vidalia-0.2.10/debian/po/fr.po vidalia-0.2.15/debian/po/fr.po --- vidalia-0.2.10/debian/po/fr.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/fr.po 2012-01-10 03:39:04.000000000 +0000 @@ -2,79 +2,34 @@ # Copyright (C) 2008 Christian Perrier # This file is distributed under the same license as the vidalia package. # -# Christian Perrier , 2008, 2010. +# Christian Perrier , 2008, 2010, 2011. msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 19:11-0300\n" -"PO-Revision-Date: 2010-09-27 18:21+0200\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-09-07 07:49+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.0\n" +"X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Pas de configuration" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Redémarrage ponctuel" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Prise de contrôle permanente" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Interaction entre Tor et Vidalia :" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "Identifiants à ajouter au groupe debian-tor :" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"Vidalia doit communiquer avec le démon en cours de Tor afin de lui fournir " -"une interface graphique. Pour cela, Tor doit soit être reconfiguré pour " -"permettre une authentification sûre (option recommandée) ou redémarré sous " -"le contrôle de Vidalia.\n" -" * Pas de configuration :\n" -" Laisser Tor en route maintenant. Vidalia ne pourra pas\n" -" communiquer avec lui tant que Tor n'est pas reconfiguré. Voir\n" -" /usr/share/doc/vidalia/README.Debian pour plus d'informations ;\n" -" * Redémarrage ponctuel :\n" -" Arrêter Tor maintenant pour que Vidalia puisse le démarrer, juste\n" -" cette fois-ci. Tor démarrera toujours de lui-même si la machine\n" -" est relancée donc une configuration manuelle restera nécessaire ;\n" -" * Prise de contrôle permanente :\n" -" Arrêter Tor puis laisser Vidalia en gérer le lancement quand il\n" -" est nécessaire (inutilisable sur un système multi-utilisateurs)." - +"Pour autoriser des utilisateurs à contrôler le démon Tor, il est nécessaire " +"d'ajouter leurs identifiants dans le groupe « debian-tor »." diff -Nru vidalia-0.2.10/debian/po/it.po vidalia-0.2.15/debian/po/it.po --- vidalia-0.2.10/debian/po/it.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/it.po 2012-01-10 03:39:04.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: vidalia 0.2.10-2\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 19:11-0300\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" "PO-Revision-Date: 2010-09-27 06:19+0200\n" "Last-Translator: Vincenzo Campanella \n" "Language-Team: Italian \n" @@ -16,63 +16,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Nessuna configurazione" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Un riavvio" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Gestione permanente" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Interazione fra Tor e Vidalia:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"Vidalia deve poter comunicare con il demone di Tor in esecuzione, cui potrà " -"così fornire un'interfaccia grafica. Questo implica o la riconfigurazione " -"manuale di Tor per permettere un'autenticazione sicura (raccomandato) o un " -"riavvio di Tor sotto il controllo di Vidalia.\n" -" * Nessuna configurazione:\n" -" per intanto lascia Tor in esecuzione. Vidalia non potrà comunicare\n" -" con Tor finché quest'ultimo non verrà riconfigurato manualmente. Per\n" -" ulteriori dettagli consultare «/usr/share/doc/vidalia/README.Debian»;\n" -" * Un riavvio:\n" -" arresta Tor adesso in modo che possa essere avviato da Vidalia, ma solo\n" -" per questa volta. Ai prossimi riavvii Tor verrà eseguito autonomamente,\n" -" per cui sarà comunque necessaria la riconfigurazione manuale;\n" -" * Gestione permanente:\n" -" arresta Tor e lascia che Vidalia ne gestisca l'avvio ogni qualvolta\n" -" Vidalia viene eseguito (non utilizzabile in un sistema multi-utente)." diff -Nru vidalia-0.2.10/debian/po/nl.po vidalia-0.2.15/debian/po/nl.po --- vidalia-0.2.10/debian/po/nl.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/debian/po/nl.po 2012-01-10 03:39:04.000000000 +0000 @@ -0,0 +1,33 @@ +# Dutch translation of PACKAGE debconf templates. +# Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Jeroen Schot , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: vidalia-0.3.0alpha-3\n" +"Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-07-04 09:49+0200\n" +"Last-Translator: Jeroen Schot \n" +"Language-Team: Debian l10n Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "Gebruikers om aan de groep debian-tor toe te voegen:" + +#. Type: multiselect +#. Description +#: ../templates:1001 +msgid "" +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." +msgstr "" +"Gebruikers die de Tor-achtergronddienst moeten kunnen bedienen moeten worden " +"toegevoegd aan de groep \"debian-tor\"." diff -Nru vidalia-0.2.10/debian/po/pt.po vidalia-0.2.15/debian/po/pt.po --- vidalia-0.2.10/debian/po/pt.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/pt.po 2012-01-10 03:39:04.000000000 +0000 @@ -2,79 +2,36 @@ # Copyright (C) 2008 the vidalia's copyright holder # This file is distributed under the same license as the vidalia package. # -# Américo Monteiro , 2008, 2010. +# Américo Monteiro , 2008, 2010, 2011. msgid "" msgstr "" -"Project-Id-Version: vidalia 0.2.10-2\n" +"Project-Id-Version: vidalia 0.3.0alpha-2\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 19:11-0300\n" -"PO-Revision-Date: 2010-09-27 07:44+0100\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-06-23 17:42+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.0\n" +"X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Nenhuma Configuração" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Reiniciar uma vez" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Aquisição permanente" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Interacção de Tor/Vidalia:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "utilizadores a adicionar ao grupo debian-tor:" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"O vidalia precisa de comunicar com o daemon Tor em execução para que possa " -"disponibiliza uma interface gráfica de utilizador para ele. Isto requer ou " -"a reconfiguração manual do Tor para permitir autenticação segura " -"(recomendado) ou um reiniciar do Tor sob o controlo do Vidalia.\n" -" * Nenhuma configuração:\n" -" Deixa o Tor em execução por agora. O Vidalia não poderá\n" -" comunicar com o Tor até que este seja manualmente reconfigurado - \n" -" veja \"/usr/share/doc/vidalia/README.Debian\" para mais detalhes;\n" -" * Reiniciar uma vez:\n" -" Parar o Tor agora para que o Vidalia o possa arrancar, apenas desta\n" -" vez - o Tor irá arrancar por si próprio nos arranques do sistema,\n" -" portanto ainda será necessária configuração manual;\n" -" * Aquisição permanente:\n" -" Parar o Tor e simplesmente deixar o Vidalia lidar com o arranque\n" -" dele sempre que executa o Vidalia (não utilizável em sistemas de\n" -" vários utilizadores)." +"Os utilizadores que devam ser capazes de controlar o daemon do Tor precisam " +"de ser adicionados ao grupo \"debian-tor\"." + + diff -Nru vidalia-0.2.10/debian/po/ru.po vidalia-0.2.15/debian/po/ru.po --- vidalia-0.2.10/debian/po/ru.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/ru.po 2012-01-10 03:39:04.000000000 +0000 @@ -3,13 +3,13 @@ # This file is distributed under the same license as the vidalia package. # # Yuri Kozlov , 2008. -# Yuri Kozlov , 2010. +# Yuri Kozlov , 2010, 2011. msgid "" msgstr "" -"Project-Id-Version: vidalia 0.2.10-2\n" +"Project-Id-Version: vidalia 0.3.0alpha-2\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 19:11-0300\n" -"PO-Revision-Date: 2010-09-27 20:43+0400\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-06-23 21:17+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" @@ -20,65 +20,20 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Без настройки" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Однократный перезапуск" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Постоянный захват" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Взаимодействие Tor/Vidalia:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "Пользователи, добавляемые в группу debian-tor:" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"Для предоставления пользовательского графического интерфейса Vidalia " -"требуется обращаться к работающей службе Tor. Для этого требуется " -"ручная перенастройка Tor, при которой нужно включить безопасную " -"аутентификацию " -"(рекомендуется) или перезапуск Tor под управлением Vidalia.\n" -" * Без настройки:\n" -" сейчас оставить Tor запущенным. Vidalia не сможет связаться с\n" -" Tor пока он не будет перенастроен вручную — подробности\n" -" смотрите в «/usr/share/doc/vidalia/README.Debian»;\n" -" * Однократный перезапуск:\n" -" остановить Tor сейчас, чтобы Vidalia смогла его запустить, но\n" -" только единожды — Tor самостоятельно запустится пере перезагрузке,\n" -" поэтому всё ещё требуется ручная настройка;\n" -" * Постоянный захват:\n" -" остановить Tor и просто позволить Vidalia запускать его когда вы\n" -" запускаете Vidalia (непригодно для работы в многопользовательской " -"системе)." +"Пользователи, которым нужно управлять службой Tor, должны быть добавлены " +"в группу «debian-tor»." + diff -Nru vidalia-0.2.10/debian/po/sv.po vidalia-0.2.15/debian/po/sv.po --- vidalia-0.2.10/debian/po/sv.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/sv.po 2012-01-10 03:39:04.000000000 +0000 @@ -1,14 +1,14 @@ # Translation of vidalia debconf template to Swedish -# Copyright (C) 2010 Martin Bagge +# Copyright (C) 2011 Martin Bagge # This file is distributed under the same license as the vidalia package. # -# Martin Bagge , 2008, 2010 +# Martin Bagge , 2008, 2010, 2011 msgid "" msgstr "" "Project-Id-Version: vidalia\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 19:11-0300\n" -"PO-Revision-Date: 2010-09-27 10:49+0100\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-06-28 21:20+0100\n" "Last-Translator: Martin Bagge / brother \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -20,57 +20,18 @@ "X-Poedit-Country: Sweden\n" "X-Poedit-Bookmarks: -1,-1,-1,-1,6,-1,-1,-1,-1,-1\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "Ändra inte inställningar nu" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "Starta om en gång" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "Ta över permanent" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Interaktion mellan Tor och Vidalia" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "Användare som ska läggas till i gruppen debian-tor:" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can provide a graphical user interface for it. This requires either the manual reconfiguration of Tor to allow secure authentication (recommended) or a restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"Vidalia behöver kommunicera med den körande Tor-tjänsten så att den ett grafiskt användargränssnitt kan tillhandahållas. Detta kräver antingen manuell ändring av Tor för att tillåta säker autentisiering (rekomenderas) eller en omstart av Tor under Vidalias överinseende.\n" -" * Ändra inte inställningar nu:\n" -" låt Tor köra vidare nu. Vidalia kommer inte att kunna kommunicera\n" -" med Tor förens manuell hantering av inställningarna är genomfört. Läs \n" -" \"/usr/share/doc/vidalia/README.Debian\" för detaljer;\n" -" * Starta om en gång:\n" -" stoppa Tor nu så att Vidalia kan start det, men bara den här gången. Tor \n" -" kommer att starta själv vid systemets uppstart. Manuell hantering av \n" -" inställningar kommer att behövas.\n" -" * Ta över permanent:\n" -" stoppa Tor och låt Vidalia ta över uppstarten av Tor när du kör Vidalia\n" -" (fungerar inte på fleranvändarsystem)." - +"Användare som ska kunna kontrollera Tor-tjänsten måste läggas till i gruppen " +"\"debian-tor\"." diff -Nru vidalia-0.2.10/debian/po/templates.pot vidalia-0.2.15/debian/po/templates.pot --- vidalia-0.2.10/debian/po/templates.pot 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/templates.pot 2012-01-10 03:39:04.000000000 +0000 @@ -1,63 +1,30 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. +# Debconf translations for vidalia. +# Copyright © 2011, Ulises Vitulli +# This file is distributed under the same license as the vidalia package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 22:58-0300\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" msgstr "" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" diff -Nru vidalia-0.2.10/debian/po/vi.po vidalia-0.2.15/debian/po/vi.po --- vidalia-0.2.10/debian/po/vi.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/vi.po 2012-01-10 03:39:04.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: vidalia 0.2.10-2\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 19:11-0300\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" "PO-Revision-Date: 2010-09-28 19:17+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -17,57 +17,17 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LocFactoryEditor 1.8\n" -#: ../templates:1001 -#. Type: select -#. Choices -msgid "No Configuration" -msgstr "Không có cấu hình" - -#: ../templates:1001 -#. Type: select -#. Choices -msgid "One-off restart" -msgstr "Khởi chạy lại một lần" - -#: ../templates:1001 -#. Type: select -#. Choices -msgid "Permanent takeover" -msgstr "Tiếp quản hẳn" - -#: ../templates:1002 -#. Type: select +#. Type: multiselect #. Description -msgid "Tor/Vidalia interaction:" -msgstr "Tương tác Tor/Vidalia" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "" -#: ../templates:1002 -#. Type: select +#. Type: multiselect #. Description +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." -msgstr "Phần mềm Vidalia cần liên lạc với trình nền Tor đang chạy, để cung cấp một giao diện đồ họa cho nó. Trường hợp này cần thiết hoặc sự cấu hình lại Tor bằng tay để cho phép xác thức bảo mật (khuyến khích) hoặc sự khởi chạy lại Tor được Vidalia điều khiển.\n" -" • Không có cấu hình\n" -" Để lại Tor chạy tạm thời.\n" -" Vidalia không liên lạc được với Tor trước khi nó được cấu hình lại bằng tay:\n" -" xem tài liệu Đọc Đi « /usr/share/doc/vidalia/README.Debian » để tìm chi tiết.\n" -" • Khởi chạy lại một lần\n" -" Dừng chạy Tor ngay bây giờ đến khi nó được cấu hình lại bằng tay.\n" -" Tor sẽ tự khởi chạy khi khởi động lại hệ thống thì vẫn còn cần cấu hình lại bằng tay.\n" -" • Tiếp quản hẳn\n" -" Dừng chạy Tor và đơn giản cho phép Vidalia quản lý việc khởi chạy nó\n" -" khi nào bạn chạy Vidalia (không sử dụng được trên một hệ thống đa người dùng). " +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." +msgstr "" + diff -Nru vidalia-0.2.10/debian/po/zh_CN.po vidalia-0.2.15/debian/po/zh_CN.po --- vidalia-0.2.10/debian/po/zh_CN.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/zh_CN.po 2012-01-10 03:39:04.000000000 +0000 @@ -2,10 +2,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Vidalia 0.2.10\n" +"Project-Id-Version: Vidalia 0.3.0\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 22:58-0300\n" -"PO-Revision-Date: 2010-10-05 00:44+0800\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-06-25 14:05+0800\n" "Last-Translator: Vern Sun \n" "Language-Team: Chinese \n" "Language: \n" @@ -13,61 +13,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "不做任何配置" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "首次重新启动" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "改变启动方式" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Tor 和 Vidalia 如何交互:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "添加到 debian-tor 组的用户:" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"Tor 的图形化用户界面程序 Vidalia 需要和运行中的 Tor 程序进行交互。这就需要" -"Tor 以安全认证的方式授权 Vidalia (推荐的方式),或者由 Vidalia 重启 Tor 程" -"序。\n" -" * 不做任何配置:\n" -" 维持当前运行的 Tor 程序不变,直到您手动调整了 Tor 配置文件以后 —— 查看\n" -" \"/usr/share/doc/vidalia/README.Debian\" 获取更多相关信息;\n" -" * 首次重新启动:\n" -" 停止当前运行的 Tor 程序,直到您首次运行 Vidalia 时帮您重启 Tor 程序 ——\n" -" 因为 Tor 程序在下次系统重启后会自动运行,所以您仍然需要手动调整 Tor 的\n" -" 配置文件;\n" -" * 改变启动方式:\n" -" 停止当前运行的 Tor 程序,并且禁用 Tor 程序随系统开机自动运行,改成随\n" -" Vidalia 程序启动时自动运行。(注意: 这种方式并不适合多用户使用的系统)。" - +"使用 Vidalia 操控 Tor 的用户需要被添加到 \"debian-tor\" 组。" diff -Nru vidalia-0.2.10/debian/po/zh_TW.po vidalia-0.2.15/debian/po/zh_TW.po --- vidalia-0.2.10/debian/po/zh_TW.po 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/po/zh_TW.po 2012-01-10 03:39:04.000000000 +0000 @@ -2,10 +2,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Vidalia 0.2.10\n" +"Project-Id-Version: Vidalia 0.3.0\n" "Report-Msgid-Bugs-To: vidalia@packages.debian.org\n" -"POT-Creation-Date: 2010-09-26 22:58-0300\n" -"PO-Revision-Date: 2010-10-05 00:44+0800\n" +"POT-Creation-Date: 2011-06-23 13:03-0300\n" +"PO-Revision-Date: 2011-06-25 14:05+0800\n" "Last-Translator: Vern Sun \n" "Language-Team: Chinese \n" "Language: \n" @@ -13,61 +13,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: select -#. Choices -#: ../templates:1001 -msgid "No Configuration" -msgstr "不做任何配置" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "One-off restart" -msgstr "首次重新啟動" - -#. Type: select -#. Choices -#: ../templates:1001 -msgid "Permanent takeover" -msgstr "改變啟動方式" - -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 -msgid "Tor/Vidalia interaction:" -msgstr "Tor 和 Vidalia 如何交互:" +#: ../templates:1001 +msgid "Users to add to the debian-tor group:" +msgstr "添加到 debian-tor 組的用戶:" -#. Type: select +#. Type: multiselect #. Description -#: ../templates:1002 +#: ../templates:1001 msgid "" -"Vidalia needs to communicate with the running Tor daemon so that it can " -"provide a graphical user interface for it. This requires either the manual " -"reconfiguration of Tor to allow secure authentication (recommended) or a " -"restart of Tor under Vidalia's control.\n" -" * No configuration:\n" -" leave Tor running for now. Vidalia will not be able to\n" -" communicate with Tor until it is manually reconfigured - see\n" -" \"/usr/share/doc/vidalia/README.Debian\" for more details;\n" -" * One-off restart:\n" -" stop Tor now so Vidalia can start it, just this once - Tor will\n" -" start by itself on reboots, so manual configuration will still\n" -" be required;\n" -" * Permanent takeover:\n" -" stop Tor and simply let Vidalia handle starting it whenever you\n" -" run Vidalia (not usable on a multi-user system)." +"Users who should be able to control Tor daemon need to be added to the group " +"\"debian-tor\"." msgstr "" -"Tor 的圖形化用戶界面程序 Vidalia 需要和運行中的 Tor 程序進行交互。這就需要" -"Tor 以安全認證的方式授權 Vidalia (推薦的方式),或者由 Vidalia 重啟 Tor 程" -"序。\n" -" * 不做任何配置:\n" -" 維持當前運行的 Tor 程序不變,直到您手動調整了 Tor 配置檔案以後 —— 查看\n" -" \"/usr/share/doc/vidalia/README.Debian\" 獲取更多相關信息;\n" -" * 首次重新啟動:\n" -" 停止當前運行的 Tor 程序,直到您首次運行 Vidalia 時幫您重啟 Tor 程序 ——\n" -" 因為 Tor 程序在下次系統重啟後會自動運行,所以您仍然需要手動調整 Tor 的\n" -" 配置檔案;\n" -" * 改變啟動方式:\n" -" 停止當前運行的 Tor 程序,並且禁用 Tor 程序隨系統開機自動運行,改成隨\n" -" Vidalia 程序啟動時自動運行。(注意: 這種方式並不適合多用戶使用的系統)。" - +"使用 Vidalia 操控 Tor 的用戶需要被添加到 \"debian-tor\" 組。" diff -Nru vidalia-0.2.10/debian/postinst vidalia-0.2.15/debian/postinst --- vidalia-0.2.10/debian/postinst 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/postinst 2012-01-10 03:39:04.000000000 +0000 @@ -4,4 +4,29 @@ . /usr/share/debconf/confmodule fi + +case "$1" in + configure|reconfigure) + # We don't go under this approach since Vidalia 0.2.14-3, + # so we need to nicely remove deprecated files + if dpkg --compare-versions "$2" lt-nl "0.2.14-3"; then + if [ -f /etc/default/tor.vidalia ]; then + rm -f /etc/default/tor.vidalia + if [ -x "/usr/bin/ucf" ]; then + ucf --purge /etc/default/tor.vidalia + fi + fi + fi + + db_get vidalia/users + users=$(echo $RET | sed -e 's@,@@g') + + # Add selected users + for u in $users; do + adduser --quiet $u debian-tor + done + ;; +esac + + #DEBHELPER# diff -Nru vidalia-0.2.10/debian/README.Debian vidalia-0.2.15/debian/README.Debian --- vidalia-0.2.10/debian/README.Debian 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/README.Debian 2012-01-10 03:39:04.000000000 +0000 @@ -1,16 +1,42 @@ Vidalia for Debian ------------------ + + --------------------------- + DEPRECATED (or so) + --------------------------- + + + +Currently, Vidalia speaks directly through a socket to Tor, only required + steps to perform is to answer properly at Debconf templates for adding + Vidalia users into debian-tor group, who owns Tor's Control Socket. + + +The following documentation is still valid, although its not expected for + for you to perform ANY of this steps to get Vidalia running. + + + + + --------------------------- + DEPRECATED (or so) + --------------------------- + + + For the anxious and impatient ----------------------------- There are three ways of running Vidalia: 1. (Re)Configure Vidalia not to let Tor start, and simply start Vidalia. -2. Enable CookieAuthentication in Tor's config, and grab - /var/lib/tor/control_auth_cookie (RECOMMENDED for greater security) -3. Enable ControlPort and use HashedControlPassword from - 'tor --hash-password'. +2. Enable Tor's ControlPort and enable CookieAuthentication in Tor's config, + then grab the cookie file from /var/lib/tor/control_auth_cookie, profit! + (RECOMMENDED for greater security) +3. Enable Tor's ControlPort, get a hashed password at 'tor --hash-password', + load back the output into the HashedControlPassword Tor's config field, + profit! @@ -19,22 +45,26 @@ ----------------------------- Vidalia provides a graphical graphical user interface to configure -various aspects of the Tor Network, check its status at a glance, -monitor its bandwidth usage, or just view logs. This means that -Vidalia needs to talk to the Tor daemon. +different aspects of the Tor Network, check its status at a glance, +monitor its bandwidth usage or maybe just view Tor's event logs. +This means that Vidalia needs to talk to the Tor daemon. + Vidalia supports three different ways of talking to Tor: 1. Let Vidalia start the Tor process on its own. --------------------------------------------- + ------> "I want it, and I want it NOW!" + This option is the simplest, but not usable on a multi-user system. Debconf offers this as the default option, but it can be easily reconfigured at any time by running 'dpkg-reconfigure vidalia'. + *********************** FOR PARANOIDS ONLY *************************** | | | | @@ -56,8 +86,9 @@ -2. Enable Tor to use CookieAuthentication to communicate with Vidalia. - ------------------------------------------------------------------- + +2. Enable Tor to use a control cookie to communicate with Vidalia. + --------------------------------------------------------------- * The best password is the one you don't have to know about * @@ -66,16 +97,19 @@ very important and *SECRET* file from your disc, called "Auth Cookie". To enable this profile, edit Tor's configuration file, by default at - '/etc/tor/torrc', and add or uncomment the 'CookieAuthentication' - value, setting it to 1. + '/etc/tor/torrc', add or uncomment both the 'ControlPort' and the + 'CookieAuthentication' options, setting the last one to 1. You will end up having something like this: -# grep Cookie /etc/tor/torrc -CookieAuthentication 1 + # egrep '(ControlPort|Auth)' /etc/tor/torrc + ControlPort 9051 + CookieAuthentication 1 - Now start/restart the Tor daemon, and start Vidalia (as a regular X + + Now start/reload/restart the Tor daemon, and start Vidalia (as a regular X user). Vidalia will ask you for a "cookie file" at the next run: + ------------------------------------------------------------------------ You will have to fetch the "cookie file" from your local filesystem, @@ -84,6 +118,7 @@ DO NOT share this file with anyone, Tor depends on it! ------------------------------------------------------------------------ + This option might be simpler than all the others, but will require you to grab a different cookie file every time you restart the Tor process, in contrast to the next methods. @@ -93,32 +128,34 @@ -3. Enable Tor to use a control port to communicate with Vidalia. - ------------------------------------------------------------- +3. Enable Tor to use a control passowrd to communicate with Vidalia. + ----------------------------------------------------------------- Edit the Tor configuration file, by default '/etc/tor/torrc', add or - uncomment the 'ControlPort 9051' option, and add the output you get - from Tor to 'HashedControlPassword', as shown here: - -# tor --hash-password SOME_PASSWORD_HERE -Sep 17 18:48:49.421 [notice] Tor v0.2.0.30 (r15956). This is experimental -software. Do not rely on it for strong anonymity. (Running on Linux x86_64) + uncomment both the 'ControlPort' and 'HashedControlPassword' options + and load 'tor --hash-password' hash got from the output into it, + as shown below: + -16:167F667A98F859D2600BD708B48B95343FEF7800B479E2AA4284ACF029 + # tor --hash-password SOME_PASSWORD_HERE + Sep 17 18:48:49.421 [notice] Tor v0.2.0.30 (r15956). This is experimental + software. Do not rely on it for strong anonymity. (Running on Linux x86_64) + + 16:167F667A98F859D2600BD708B48B95343FEF7800B479E2AA4284ACF029 You will end up with something like this: -# grep Control /etc/tor/torrc -ControlPort 9051 -HashedControlPassword 16:167F667A98F...4ACF029 + # grep Control /etc/tor/torrc + ControlPort 9051 + HashedControlPassword 16:167F667A98F...4ACF029 + - Now start/restart the Tor daemon, and start Vidalia (as a regular X - user). Vidalia will ask you for that password at the next run (the - phrase you passed it with --hash-password, not the hash - in the - example, 'SOME_PASSWORD_HERE'), and will start a secure - authentication. That's all! + Now start/reload/restart the Tor daemon, and start Vidalia (as a regular X + user). Vidalia will ask you for the set password ('SOME_PASSWORD_HERE' + as for the example) at the next run and it will start using a secure + authentication. - -- Ulises Vitulli Thu, 14 Oct 2010 19:58:20 -0300 + -- Ulises Vitulli Thu, 23 Jun 2011 10:46:24 -0300 diff -Nru vidalia-0.2.10/debian/README.debs vidalia-0.2.15/debian/README.debs --- vidalia-0.2.10/debian/README.debs 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/debian/README.debs 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,35 @@ +================================ +Debian and Ubuntu packages +================================ + +Binary packages +-------------------------------- +Debian and Ubuntu packages are now available in the Tor Debian/Ubuntu +repository. Instructions for adding the repository to your +/etc/apt/sources.list and installing Vidalia can be found here: +https://www.torproject.org/docs/debian-vidalia.html.en + +Building your own +-------------------------------- +If you would like to build your own packages, you can get the current +Debian source by cloning the Git repository. + +If you want to use git-buildpackage: + gbp-clone http://git.debian.org/git/collab-maint/vidalia.git +then use git-buildpackage to build packages. + +Else, just clone the repository "normally": + git clone http://git.debian.org/git/collab-maint/vidalia.git +then build packages as normal. + +Instructions +-------------------------------- +For information about building Debian and Ubuntu packages, please consult +the following documentation: + +1. https://wiki.debian.org/DebianPackagingHandbook +2. http://www.debian.org/doc/maint-guide/ch-build.en.html +3. https://www.netfort.gr.jp/~dancer/software/pbuilder-doc/pbuilder-doc.html +4. https://wiki.ubuntu.com/PackagingGuide/Complete +5. https://wiki.ubuntu.com/PbuilderHowto +6. http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/gbp.html diff -Nru vidalia-0.2.10/debian/README.source vidalia-0.2.15/debian/README.source --- vidalia-0.2.10/debian/README.source 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/debian/README.source 2012-01-10 03:39:04.000000000 +0000 @@ -0,0 +1,12 @@ +README.source for the vidalia package +===================================== + +vidalia is managed in a Git repository using git-buildpackage (pristine-tar +included). It follows most of the advice provided by Russ Allbery at: +http://www.eyrie.org/~eagle/notes/debian/git.html + +You will be able to clone master and upstream branches at once using gbp: +$ gbp-clone git://anonscm.debian.org/collab-maint/vidalia.git + + + -- Ulises Vitulli Sat, 23 Jul 2011 20:58:32 -0300 diff -Nru vidalia-0.2.10/debian/rules vidalia-0.2.15/debian/rules --- vidalia-0.2.10/debian/rules 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/rules 2012-01-10 03:39:04.000000000 +0000 @@ -27,7 +27,9 @@ dh_testdir touch configure-stamp -build: build-stamp +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp build-stamp: dh_testdir diff -Nru vidalia-0.2.10/debian/templates vidalia-0.2.15/debian/templates --- vidalia-0.2.10/debian/templates 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/templates 2012-01-10 03:39:04.000000000 +0000 @@ -1,21 +1,6 @@ -Template: vidalia/tor-daemon-interaction -Type: select -Choices-C: nothing, one-off, permanent -__Choices: No Configuration, One-off restart, Permanent takeover -Default: permanent -_Description: Tor/Vidalia interaction: - Vidalia needs to communicate with the running Tor daemon so that it - can provide a graphical user interface for it. This requires either - the manual reconfiguration of Tor to allow secure authentication - (recommended) or a restart of Tor under Vidalia's control. - * No configuration: - leave Tor running for now. Vidalia will not be able to - communicate with Tor until it is manually reconfigured - see - "/usr/share/doc/vidalia/README.Debian" for more details; - * One-off restart: - stop Tor now so Vidalia can start it, just this once - Tor will - start by itself on reboots, so manual configuration will still - be required; - * Permanent takeover: - stop Tor and simply let Vidalia handle starting it whenever you - run Vidalia (not usable on a multi-user system). +Template: vidalia/users +Type: multiselect +Choices: ${users} +_Description: Users to add to the debian-tor group: + Users who should be able to control Tor daemon need to be added to the + group "debian-tor". diff -Nru vidalia-0.2.10/debian/vidalia.install vidalia-0.2.15/debian/vidalia.install --- vidalia-0.2.10/debian/vidalia.install 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/vidalia.install 2012-01-10 03:39:04.000000000 +0000 @@ -1,4 +1,2 @@ debian/vidalia.xpm usr/share/pixmaps debian/vidalia.desktop usr/share/applications -debian/default.tor-on usr/share/vidalia -debian/default.tor-off usr/share/vidalia diff -Nru vidalia-0.2.10/debian/vidalia.lintian-overrides vidalia-0.2.15/debian/vidalia.lintian-overrides --- vidalia-0.2.10/debian/vidalia.lintian-overrides 2010-10-19 20:03:27.000000000 +0000 +++ vidalia-0.2.15/debian/vidalia.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -vidalia: unused-debconf-template diff -Nru vidalia-0.2.10/doc/CMakeLists.txt vidalia-0.2.15/doc/CMakeLists.txt --- vidalia-0.2.10/doc/CMakeLists.txt 2009-04-28 23:27:12.000000000 +0000 +++ vidalia-0.2.15/doc/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 3739 2009-04-28 23:27:12Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. ## diff -Nru vidalia-0.2.10/doc/feature-spec.txt vidalia-0.2.15/doc/feature-spec.txt --- vidalia-0.2.10/doc/feature-spec.txt 2006-12-26 06:06:04.000000000 +0000 +++ vidalia-0.2.15/doc/feature-spec.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,4 +1,4 @@ -$Id: feature-spec.txt 1563 2006-12-26 06:06:04Z edmanm $ +$Id$ Vidalia Feature Specification diff -Nru vidalia-0.2.10/doc/geoip-spec.txt vidalia-0.2.15/doc/geoip-spec.txt --- vidalia-0.2.10/doc/geoip-spec.txt 2008-11-24 16:05:58.000000000 +0000 +++ vidalia-0.2.15/doc/geoip-spec.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,4 +1,4 @@ -$Id: geoip-spec.txt 3349 2008-11-24 16:05:58Z edmanm $ +$Id$ 0. Introduction. diff -Nru vidalia-0.2.10/doc/version-spec.txt vidalia-0.2.15/doc/version-spec.txt --- vidalia-0.2.10/doc/version-spec.txt 2006-12-26 06:06:04.000000000 +0000 +++ vidalia-0.2.15/doc/version-spec.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,4 +1,4 @@ -$Id: version-spec.txt 1563 2006-12-26 06:06:04Z edmanm $ +$Id$ Vidalia Version Specification diff -Nru vidalia-0.2.10/doc/vidalia.1.in vidalia-0.2.15/doc/vidalia.1.in --- vidalia-0.2.10/doc/vidalia.1.in 2008-01-12 03:43:12.000000000 +0000 +++ vidalia-0.2.15/doc/vidalia.1.in 2011-10-07 19:16:56.000000000 +0000 @@ -45,7 +45,7 @@ .SH SEE ALSO .BR tor (1) -.BR http://www.vidalia-project.net/ +.BR http://www.torproject.org/projects/vidalia.html .SH AUTHORS Matt Edman diff -Nru vidalia-0.2.10/.gitignore vidalia-0.2.15/.gitignore --- vidalia-0.2.10/.gitignore 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/.gitignore 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,108 @@ + +# / +/CMakeCache.txt +/CMakeFiles +/*.cmake +/config.h +/Makefile + +# /doc/ +/doc/CMakeFiles +/doc/Doxyfile +/doc/Makefile +/doc/vidalia.1 +/doc/*.cmake + +# /pkg/ +/pkg/CMakeFiles +/pkg/*.cmake +/pkg/Makefile + +# /pkg/osx/ +/pkg/osx/buildmpkg.sh +/pkg/osx/builddmg.sh +/pkg/osx/VidaliaDesc.plist +/pkg/osx/VidaliaInfo.plist +/pkg/osx/VidaliaBundleDesc.plist +/pkg/osx/VidaliaBundleInfo.plist + +# /pkg/rpm/ +/pkg/rpm/vidalia.spec + +# /pkg/win32/ +/pkg/win32/vidalia.nsi +/pkg/win32/vidalia-bundle.nsi + +# /src/ +/src/CMakeFiles +/src/Makefile +/src/*.cmake + +# /src/common/ +/src/common/CMakeFiles +/src/common/Makefile +/src/common/libcommon.a +/src/common/*.cmake +/src/common/moc_*.cxx + +# /src/torcontrol/ +/src/torcontrol/CMakeFiles +/src/torcontrol/Makefile +/src/torcontrol/*.cmake +/src/torcontrol/moc_*.cxx +/src/torcontrol/libtorcontrol.a + +# /src/vidalia/ +/src/vidalia/CMakeFiles +/src/vidalia/Makefile +/src/vidalia/vidalia.h +/src/vidalia/vidalia +/src/vidalia/Vidalia.app +/src/vidalia/vidalia.exe +/src/vidalia/*.cmake +/src/vidalia/*.obj +/src/vidalia/moc_*.cxx +/src/vidalia/ui_*.h +/src/vidalia/qrc_*.cxx + +# /src/vidalia/i18n/ +/src/vidalia/i18n/CMakeFiles +/src/vidalia/i18n/Makefile +/src/vidalia/i18n/*.cmake +/src/vidalia/i18n/*.qm + +# /src/vidalia/res/ +/src/vidalia/res/vidalia_win.rc + +# /src/vidalia/res/128x128/ +/src/vidalia/res/128x128/vidalia_win.rc +/src/vidalia/res/128x128/Thumbs.db + +# /src/vidalia/res/16x16/ +/src/vidalia/res/16x16/vidalia_win.rc +/src/vidalia/res/16x16/Thumbs.db + +# /src/vidalia/res/22x22/ +/src/vidalia/res/22x22/vidalia_win.rc +/src/vidalia/res/22x22/Thumbs.db + +# /src/vidalia/res/32x32/ +/src/vidalia/res/32x32/vidalia_win.rc +/src/vidalia/res/32x32/Thumbs.db + +# /src/vidalia/res/48x48/ +/src/vidalia/res/48x48/vidalia_win.rc +/src/vidalia/res/48x48/Thumbs.db + +# /src/vidalia/res/flags/ +/src/vidalia/res/flags/vidalia_win.rc +/src/vidalia/res/flags/Thumbs.db + +# /src/vidalia/res/icons/ +/src/vidalia/res/icons/vidalia_win.rc +/src/vidalia/res/icons/Thumbs.db + +# /src/vidalia/res/map/ +/src/vidalia/res/map/vidalia_win.rc +/src/vidalia/res/map/Thumbs.db + diff -Nru vidalia-0.2.10/HACKING vidalia-0.2.15/HACKING --- vidalia-0.2.10/HACKING 2009-06-09 23:41:54.000000000 +0000 +++ vidalia-0.2.15/HACKING 2011-10-07 19:16:56.000000000 +0000 @@ -1,4 +1,4 @@ -$Id: HACKING 3828 2009-06-09 23:41:54Z edmanm $ +$Id$ Vidalia Coding and Repository Specification diff -Nru vidalia-0.2.10/INSTALL vidalia-0.2.15/INSTALL --- vidalia-0.2.10/INSTALL 2009-12-22 21:28:48.000000000 +0000 +++ vidalia-0.2.15/INSTALL 2011-10-07 19:16:56.000000000 +0000 @@ -83,6 +83,15 @@ You would replace "C:\Qt\4.3.2\bin" in the previous command with the actual path to your Qt installation's qmake.exe binary. +If you are trying to build Vidalia for Windows 2000 and earlier, you should +download Windows SDK, copy wspiapi.h header to MinGW include directory and +build vidalia running: + + cmake -DWIN2K .. + +Note: the header as it is in the SDK needs a "_inline" to be replaced to +"__inline" for it to build properly. + Windows with Visual Studio -------------------------- @@ -179,10 +188,6 @@ `cmake` commands above. Each of the configuration options can be specified on the command line and follows the format "-D := - -DUSE_QSSLSOCKET=0 - - Disable building Vidalia with SSL support. - -DUSE_MINIUPNPC=0 Disable UPnP support in Vidalia. @@ -207,7 +212,8 @@ -DOPENSSL_LIBRARY_DIR=/path/to/openssl - Specifies the location of OpenSSL's libraries. + Specifies the location of OpenSSL's libraries for building installer on + Windows. -DCMAKE_INSTALL_PREFIX=/usr/local @@ -226,6 +232,11 @@ Specifies the location of your WiX executables, such as candle.exe and light.exe (optional, Windows-only). + -DWIN2K + + Builds Vidalia using the inlines defined in wspiapi.h header for Windows + 2000 and earlier support. + For example, to configure CMake to look for Qt in "/usr/local/Qt-4.3.2/bin", you would run: diff -Nru vidalia-0.2.10/pkg/build-geoip-cache.sh vidalia-0.2.15/pkg/build-geoip-cache.sh --- vidalia-0.2.10/pkg/build-geoip-cache.sh 2008-02-29 04:30:11.000000000 +0000 +++ vidalia-0.2.15/pkg/build-geoip-cache.sh 2011-10-07 19:16:56.000000000 +0000 @@ -1,14 +1,14 @@ #!/bin/sh ## -## $Id: build-geoip-cache.sh 2362 2008-02-29 04:30:11Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. ## diff -Nru vidalia-0.2.10/pkg/CMakeLists.txt vidalia-0.2.15/pkg/CMakeLists.txt --- vidalia-0.2.10/pkg/CMakeLists.txt 2009-06-28 15:53:49.000000000 +0000 +++ vidalia-0.2.15/pkg/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 3904 2009-06-28 15:53:49Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/pkg/osx/build-bundle.txt vidalia-0.2.15/pkg/osx/build-bundle.txt --- vidalia-0.2.10/pkg/osx/build-bundle.txt 2010-08-20 04:53:49.000000000 +0000 +++ vidalia-0.2.15/pkg/osx/build-bundle.txt 2011-10-07 19:16:56.000000000 +0000 @@ -97,3 +97,6 @@ repeated when the bundled version of Tor changes. Steps 12-13 need to be repeated when the bundled version of Vidalia changes. +Experimental gcc-hardened Vidalia config: +CFLAGS="-D_FORTIFY_SOURCE=2 -fstack-protector-all -fwrapv -fPIE -Wstack-protector -Wformat -Wformat-security -Wpointer-sign" \\ +LDFLAGS="-pie" cmake -DCMAKE_OSX_ARCHITECTURES=i386 -DCMAKE_BUILD_TYPE=minsizerel . diff -Nru vidalia-0.2.10/pkg/osx/CMakeLists.txt vidalia-0.2.15/pkg/osx/CMakeLists.txt --- vidalia-0.2.10/pkg/osx/CMakeLists.txt 2010-05-12 03:27:27.000000000 +0000 +++ vidalia-0.2.15/pkg/osx/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 4283 2010-05-12 03:27:27Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. ## @@ -167,7 +167,7 @@ --copy ${TOR_SOURCE_DIR}/src/tools/tor-checkkey:/Vidalia.app/Contents/MacOS/ --copy ${TOR_SOURCE_DIR}/src/tools/tor-gencert:/Vidalia.app/Contents/MacOS/ --copy ${TOR_SOURCE_DIR}/src/tools/tor-resolve:/Vidalia.app/Contents/MacOS/ - --copy ${TOR_SOURCE_DIR}/src/config/geoip:/Vidalia.app/Contents/Resources/ + --copy ${TOR_SOURCE_DIR}/src/config/geoip:/Vidalia.app/share/tor/ --copy ${TOR_SOURCE_DIR}/src/config/torrc.sample:/Vidalia.app/Contents/Resources/ --copy ${POLIPO_SOURCE_DIR}/polipo:/Vidalia.app/Contents/MacOS/ --copy ${CMAKE_CURRENT_SOURCE_DIR}/polipo.conf:/Vidalia.app/Contents/Resources/ diff -Nru vidalia-0.2.10/pkg/osx/InstallTorbutton.scpt.in vidalia-0.2.15/pkg/osx/InstallTorbutton.scpt.in --- vidalia-0.2.10/pkg/osx/InstallTorbutton.scpt.in 2009-07-02 00:27:50.000000000 +0000 +++ vidalia-0.2.15/pkg/osx/InstallTorbutton.scpt.in 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ -- --- $Id: InstallTorbutton.scpt.in 3930 2009-07-02 00:27:50Z edmanm $ +-- $Id$ -- -- This file is part of Vidalia, and is subject to the license terms in the -- LICENSE file, found in the top level directory of this distribution. If -- you did not receive the LICENSE file with this file, you may obtain it -- from the Vidalia source package distributed by the Vidalia Project at --- http://www.vidalia-project.net/. No part of Vidalia, including this file, --- may be copied, modified, propagated, or distributed except according to --- the terms described in the LICENSE file. +-- http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/pkg/package.sh vidalia-0.2.15/pkg/package.sh --- vidalia-0.2.10/pkg/package.sh 2009-07-02 00:32:59.000000000 +0000 +++ vidalia-0.2.15/pkg/package.sh 2011-10-07 19:16:56.000000000 +0000 @@ -1,14 +1,14 @@ #!/bin/bash ## -## $Id: package.sh 3933 2009-07-02 00:32:59Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/pkg/rpm/CMakeLists.txt vidalia-0.2.15/pkg/rpm/CMakeLists.txt --- vidalia-0.2.10/pkg/rpm/CMakeLists.txt 2008-07-13 04:29:06.000000000 +0000 +++ vidalia-0.2.15/pkg/rpm/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 2858 2008-07-13 04:29:06Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/pkg/rpm/vidalia.spec.in vidalia-0.2.15/pkg/rpm/vidalia.spec.in --- vidalia-0.2.10/pkg/rpm/vidalia.spec.in 2010-02-01 09:23:01.000000000 +0000 +++ vidalia-0.2.15/pkg/rpm/vidalia.spec.in 2011-10-07 19:16:56.000000000 +0000 @@ -10,7 +10,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils -BuildRequires: openssl-devel BuildRequires: qt4-devel BuildRequires: cmake @@ -95,7 +94,7 @@ %files %defattr(-,root,root,-) -%doc CHANGELOG CREDITS HACKING LICENSE LICENSE-GPLV2 LICENSE-GPLV3 LICENSE-OPENSSL README +%doc CHANGELOG CREDITS HACKING LICENSE LICENSE-GPLV2 LICENSE-GPLV3 README %{_bindir}/%{name} %{_mandir}/man1/%{name}* %{_datadir}/applications/%{name}.desktop diff -Nru vidalia-0.2.10/pkg/win32/af/vidalia_af.po vidalia-0.2.15/pkg/win32/af/vidalia_af.po --- vidalia-0.2.10/pkg/win32/af/vidalia_af.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/af/vidalia_af.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/am/vidalia_am.po vidalia-0.2.15/pkg/win32/am/vidalia_am.po --- vidalia-0.2.10/pkg/win32/am/vidalia_am.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/am/vidalia_am.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ar/vidalia_ar.po vidalia-0.2.15/pkg/win32/ar/vidalia_ar.po --- vidalia-0.2.10/pkg/win32/ar/vidalia_ar.po 2010-05-04 17:30:29.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ar/vidalia_ar.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,290 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-05-03 12:15-0600\n" -"Last-Translator: Anas Qtiesh \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "إعداد {BUNDLE_NAME}$" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"هذه النافذة سترشدك خلال تنصيب تور وفيداليا وPolipo ومفتاح تور.\n" -"\n" -"تور عبارة عن برنامج لاستخدام الانترنت مع الحفاظ على مجهولية الهوية، بحيث " -"يساعد في إخفاء هويتك أثناء التصفح والنشر على الانترنت، وبرامج التراسل الفوري " -"وغيرها. فيداليا واجهة استخدام تساعدك في التحكم والمراقبة وضبط إعدادات تور.\n" -"\n" -"Polipo وكيل (بروكسي) انترنت يستخدم لحفظ ملفات مؤقتة تساعد في زيادة سرعة " -"التصفح أثناء استخدام تور.\n" -"\n" -"مفتاح تور(Torbutton) هو إضافة لفايرفوكس تسمح لك بتشغيل أو تعطيل إخفاء الهوية " -"أثناء التصفح وبسرعة وسهولة.\n" -"\n" -"إن كنت قد نصبت تور أو فيداليا أو Polipo أو فايرفوكس في السابق يرجى التأكد من " -"أن أنهم غير مشغلين أثناء تنصيب البرنامج.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "أهلاً بكم إلى معالج إعداد ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "مستندات تنصيب ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"اكتملت عملية التنصيب.\n" -"يرجى مراجعة https://www.torproject.org/docs/tor-doc-windows لتعلم كيفية ضبط " -"إعدادات تطبيقاتك لاستخدام تور.\n" -"\n" -"إن كنت قد نصبت مفتاح تور سيتوجب عليك إعادة تشغيل فايرفوكس." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "قم بتشغيل البرنامج الآن" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "فيداليا هو واجهة استخدام تساعدك على التحكم والمراقبة وضبط إعدادات تور." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "إزالة ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} إعداد" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"سيرشدك معالج الإعداد هذا خلال عملية تنصيب فيداليا، وهو واجهة استخدام تساعدك " -"على التحكم والمراقبة وضبط إعدادات تور.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "أهلاً لكم في معالج إعداد ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} الصفحة الرئيسية" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "فيداليا هي واجهة مستخدم تساعدك على التحكم ومراقبة وضبط تور." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "تشغيل عند إقلاع النظام" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "قم بتشغيل ${VIDALIA_NAME} بشكل تلقائي عند الإقلاع." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "أضف إلى قائمة إبدأ" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "أضف ${VIDALIA_NAME} إلى قائمة إبدأ" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "قم بتشغيل ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"تور عبارة عن برنامج لاستخدام الانترنت مع الحفاظ على مجهولية الهوية، بحيث " -"يساعد في إخفاء هويتك أثناء التصفح والنشر على الانترنت، وبرامج التراسل الفوري " -"وغيرها." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "إزالة ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "إعداد ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"لديك ملف ضبط إعدادات تور بشكل مسبق.$\n" -"$\n" -"هل تريد الكتابة فوقه بعينة ملف الإعداد الافتراضية؟" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "ملفات متعلقة" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "تنصيب مستندات ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "أضف إلى قائمة إبدأ" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "أضف ${TOR_NAME} إلى قائمة إبدأ" - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo وكيل (بروكسي) انترنت يستخدم لحفظ ملفات مؤقتة تساعد في زيادة سرعة " -"التصفح أثناء استخدام تور." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "إزالة ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "تنصيب ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "أضف إلى قائمة إبدأ" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "أضف ${POLIPO_NAME} إلى قائمة إبدأ" - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "تشغيل عند إقلاع النظام" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "تشغيل ${POLIPO_NAME} عند إقلاع الحاسب." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"مفتاح تور هو إضافة لفايرفوكس تسمح لك بتشغيل أو تعطيل إخفاء الهوية أثناء " -"التصفح بسرعة وسهولة." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "إزالة ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "إعداد ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "أضف إلى فايرفوكس" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "أضف ملحق ${TORBUTTON_DESC} للفايرفوكس" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "لم نعثر على فايرفوكس على جهازك. لن يتم تنصيب مفتاح تور (Torbutton)." - -msgctxt "AppData" -msgid "Application Data" -msgstr "بيانات التطبيق" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "إمسح بيانات التطبيق المحفوظة وملفات الإعدادات." - -msgctxt "LanguageCode" -msgid "en" -msgstr "إنكليزي" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "فايرفوكس غير مثبت" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "ينصح بتثبيت فايرفوكس قبل الإستمرار، لأفضل حماية." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"متصفح موزيلا فايفوكس غير مثبت في حاسوبك.\n" -"تور يعمل مع باقي المتصفحات، مثل الإنترنت إكسبلورر، ولكن\n" -"من السهل إسنعماله مع الفايرفوكس، الذي يقوم بحماية هويتك بشكل أفضل.\n" -"\n" -"إذا اردت تنصيب فايرفوكس, رجاءاً إضغط على إلغاء، ثم إذهب \n" -"إلى صفحة تحميل فايرفوكس على" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"بعد اتمام تنصيب فايرفوكس، يمكنك تشغيل\n" -"ملف تنصيب تور مرة أخرى.\n" -"\n" -"أو إذا كنت تفضل تثبيت تور بدون فايرفوكس، ببساطة\n" -"إضغط \"التالي\" للاستمرار" diff -Nru vidalia-0.2.10/pkg/win32/arn/vidalia_arn.po vidalia-0.2.15/pkg/win32/arn/vidalia_arn.po --- vidalia-0.2.10/pkg/win32/arn/vidalia_arn.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/arn/vidalia_arn.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ast/vidalia_ast.po vidalia-0.2.15/pkg/win32/ast/vidalia_ast.po --- vidalia-0.2.10/pkg/win32/ast/vidalia_ast.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ast/vidalia_ast.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/az/vidalia_az.po vidalia-0.2.15/pkg/win32/az/vidalia_az.po --- vidalia-0.2.10/pkg/win32/az/vidalia_az.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/az/vidalia_az.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/be/vidalia_be.po vidalia-0.2.15/pkg/win32/be/vidalia_be.po --- vidalia-0.2.10/pkg/win32/be/vidalia_be.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/be/vidalia_be.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/bg/vidalia_bg.po vidalia-0.2.15/pkg/win32/bg/vidalia_bg.po --- vidalia-0.2.10/pkg/win32/bg/vidalia_bg.po 2010-05-19 06:26:18.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/bg/vidalia_bg.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/bms/vidalia_bms.po vidalia-0.2.15/pkg/win32/bms/vidalia_bms.po --- vidalia-0.2.10/pkg/win32/bms/vidalia_bms.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/bms/vidalia_bms.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,267 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-10-19 08:32+0000\n" -"Last-Translator: H2A \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} ထည့္သြင္းျခင္း" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" -"ဤ တဆင့္ျခင္းထည့္သြင္းျခင္း လုပ္ငန္းမွ Tor, Vidalia, Privoxy ႏွင့္ Torbutton " -"ထည့္သြင္းျခင္းမ်ားကုိ သင့္အား လမ္းညႊန္ေပးပါမည္။\n" -"\n" -"Tor ဆိုသည္မွာ အင္တာနက္ အမည္မသိသံုးစဲြမႈ၊ ဝက္ဘ္သံုးစဲြျခင္း ႏွင့္ " -"ထုတ္လႊင့္ျခင္း၊ သတင္းအခ်က္အလက္ အျမန္ခ်က္ခ်င္းပို႕ျခင္း၊ IRC ႏွင့္ အျခားေသာ " -"လုပ္ငန္းမ်ားအတြက္ သင့္ကုိ ကူညီေပးေသာ စနစ္တစ္ခုျဖစ္ပါသည္။ Vidalia ဆိုသည္မွာ " -"GUI တစ္ခုျဖစ္ျပီး Tor ကုိ ထိန္းခ်ဳပ္ရန္၊ ေစာင့္ၾကပ္ၾကည့္ရႈရန္ႏွင့္ " -"ျပင္ဆင္ထိန္းညိႇမႈမ်ား ျပဳလုပ္ရန္ သင့္ကုိ ကူညီေပးပါသည္။ \n" -"\n" -"Pivoxy ဆိုသည္မွာ သင္၏ ကုိယ္ေရးအခ်က္အလက္မ်ားကုိ ကာကြယ္ရန္အတြက္ Web proxy ကုိ " -"စစ္ထုတ္ျခင္းျဖစ္၍ ေၾကာျငာမ်ား၊ ဘန္နာမ်ား၊ popups မ်ားကို ဖယ္ရွားရန္ " -"ကူညီေပးပါသည္။ \n" -"\n" -"Torbutton ဆုိသည္မွာ Firefox extension တစ္ခု ျဖစ္ျပီး အမည္မသိ Web " -"အသံုးျပဳျခင္းကုိ ျမန္ဆန္စြာ အသံုးျပဳရန္/အသံုးမျပဳရန္ ခြင့္ျပဳေပးပါသည္။ \n" -"\n" -"ယခင္ ထည့္သြင္းထားေသာ Tor, Vidalia, Privoxy, သို႕မဟုတ္ Firefox တို႕ရွိလွ်င္ ဤ " -"ထည့္သြင္းျခင္း မျပဳလုပ္မီ ၄င္းတို႕ ကို ဖြင့္လွစ္ထားရွိျခင္း မရွိေစရန္ " -"ျပဳလုပ္ပါ။ \n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "${BUNDLE_NAME} ထည့္သြင္းျခင္းလုပ္ငန္းမွ ၾကိဳဆိုပါသည္။" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} ထည့္သြင္းျခင္း မွတ္တမ္းမွတ္ရာမ်ား" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"ထည့္သြငး္ျခင္း လုပ္ငန္းမ်ား ျပီးစီးပါျပီ။ \n" -"ေက်းဇူးျပဳ၍ https://www.torproject.org/docs/tor-doc-windows တြင္ သင္၏ " -"application မ်ားအတြက္ Tor အသံုးျပဳရန္ မည္သို႕ ျပင္ဆင္ရမည္ကုိ ေလ့လာဖတ္ရႈပါ။\n" -"\n" -"Torbutton ကုိ ထည့္သြင္းခဲ့လွ်င္ Firefox ကုိ ျပန္လည္ စတင္ရန္ လိုအပ္ပါသည္။" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "ထည့္သြင္းထားေသာ အစိတ္အပိုင္းမ်ား ကုိ ယခု စတင္ပါ" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia ဆိုသည္မွာ GUI တစ္ခုျဖစ္ျပီး Tor ကုိ ထိန္းခ်ဳပ္ရန္၊ " -"ေစာင့္ၾကပ္ၾကည့္ရႈရန္ႏွင့္ ျပင္ဆင္မႈမ်ား ျပဳလုပ္ရန္ ကူညီေပးပါသည္" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "${VIDALIA_DESC} ကုိ ဖယ္ရွားပါ" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} ထည့္သြင္းျခင္း" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" -"ဤ တစ္ဆင့္ျခင္း ထည့္သြင္းျခင္းလုပ္ငန္းမွ GUI တစ္ခုျဖစ္ျပီး Tor ကုိ " -"ထိန္းခ်ဳပ္ရန္၊ ေစာင့္ၾကပ္ၾကည့္ရႈရန္ႏွင့္ ျပင္ဆင္မႈမ်ား ျပဳလုပ္ရန္ ကူညီေပးေသာ " -"Vidalia ထည့္သြင္းျခင္း ကုိ ကူညီလမ္းညႊန္ေပးပါမည္။ \n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "${VIDALIA_NAME} ထည့္သြင္းျခင္းမွ ၾကိဳဆိုပါသည္" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} မူလစာမ်က္ႏွာ" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia ဆိုသည္မွာ GUI တစ္ခုျဖစ္ျပီး Tor ကုိ ထိန္းခ်ဳပ္ရန္၊ " -"ေစာင့္ၾကပ္ၾကည့္ရႈရန္ႏွင့္ ျပင္ဆင္မႈမ်ား ျပဳလုပ္ရန္ ကူညီေပးပါသည္" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "စတင္ေသာ အဆင့္တြင္ အလုပ္လုပ္ေဆာင္ပါ" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "${VIDALIA_NAME} စတင္ေသာ အဆင့္တြင္ အလိုအေလ်ာက္ အလုပ္လုပ္ေဆာင္ပါ" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Start Menu ထဲသို႕ ထည့္သြင္းပါ" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "${VIDALIA_NAME} ကို Start Menu ထဲသို႕ ထည့္သြင္းပါ" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "${VIDALIA_NAME} ကုိ လုပ္ေဆာင္ပါ" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor ဆိုသည္မွာ အမည္မသိ အင္တာနက္ အသံုးျပဳျခင္း၊ အမည္မသိ Web အသံုးျပဳျခင္းႏွင့္ " -"ထုတ္လႊင့္ျခင္း၊ ခ်က္ခ်င္းပို႕ မက္ေဆ့လုပ္ငန္း၊ IRC ႏွင့္ အျခား " -"လုပ္ငန္းမ်ားကို ကူညီေပးပါသည္။" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "${TOR_DESC} ကုိ ဖယ္ရွားပါ" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "${TOR_DESC} ကုိ ထည့္သြင္းပါ" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" -"သင့္ထံတြင္ Tor ျပင္ဆင္မႈ ဖုိင္ ရွိျပီး ျဖစ္ပါသည္။$\n" -"$\n" -"၄င္း ဖုိင္ကုိ မူလ ရိုးရွင္းေသာ ျပင္ဆင္မႈဖုိင္ႏွင့္ အစားထုိးလိုပါသလား ?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "မွတ္တမ္းမွတ္ရာမ်ား" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "${TOR_NAME} မွတ္တမ္းမွတ္ရာမ်ားကုိ ထည့္သြင္းပါ" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Start Menu သို႕ ထည့္သြင္းပါ" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "${TOR_NAME} ကုိ Start Menu သို႕ ထည့္သြင္းပါ" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" -"Privoxy ဆိုသည္မွာ web proxy စစ္ထုတ္ေပးျခင္းျဖင့္ သင္၏ " -"ကုိယ္ေရးအခ်က္အလက္မ်ားကုိ ကာကြယ္ေပးျပီး ေၾကာျငာမ်ား၊ ဘန္နာမ်ားႏွင့္ popups " -"မ်ားကို ဖယ္ရွားေပးရန္ ကူညီေပးပါသည္" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "${PRIVOXY_DESC} ကုိ ဖယ္ရွားပါ" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "${PRIVOXY_DESC} ထည့္သြင္းပါ" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "Start Menu သို႕ ထည့္သြင္းပါ" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "${PRIVOXY_NAME} ကုိ သင္၏ Start Menu သုိ႕ ထည့္သြင္းပါ" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "စနစ္စတင္လွ်င္ စတင္ လုပ္ေဆာင္ပါ" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "${PRIVOXY_NAME} ကုိ စနစ္ စတင္လွ်င္ အလိုအေလွ်ာက္ စတင္လုပ္ေဆာင္ပါ" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" -"Torbutton ဆိုသည္မွာ Firefox extension တစ္ခု ျဖစ္ျပီး အမည္မသိ web browsing " -"ျပဳလုပ္ခြင့္/မျပဳလုပ္ခြင့္ကုိ လ်င္ျမန္စြာ ေျပာင္းလဲေစႏိုင္ပါသည္" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "${TORBUTTON_DESC} ကုိ ဖယ္ရွားပါ" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "${TORBUTTON_DESC} ကုိ ထည့္သြင္းပါ" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Firefox သို႕ ထည့္သြင္းပါ" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "${TORBUTTON_DESC} extension ကို Firefox သို႕ ထည့္သြင္းပါ" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"သင္၏ စနစ္အတြင္း Firefox မေတြ႕ရွိပါ။ Torbutton ကုိ ထည့္သြင္းျခင္း မျပဳလုပ္ပါ" - -msgctxt "AppData" -msgid "Application Data" -msgstr "Application အခ်က္အလက္မ်ား" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Application အခ်က္အလက္မ်ားႏွင့္ ျပင္ဆင္မႈ ဖုိင္မ်ားကုိ ဖယ္ရွားရန္" - -msgctxt "LanguageCode" -msgid "en" -msgstr "en" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox ထည့္သြင္းမႈ မရွိပါ" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"ေရွ႕ဆက္ မလုပ္ေဆာင္မီ အေကာင္းဆံုး လံုျခံဳမႈအတြက္ Firefox ကုိ ထည့္သြင္းရန္ " -"အၾကံျပဳပါသည္" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"The Mozilla Firefox Web browser ကုိ သင္၏ စနစ္အတြင္း ထည့္သြင္းမထားပါ\n" -"Tor သည္ အျခား browsers မ်ား ဥပမာ Internet Explorer တို႕ျဖင့္ " -"အလုပ္လုပ္ႏုိင္ေသာ္လည္း \n" -"Firefox ႏွင့္ အသံုးျပဳလွ်င္ ပိုမိုလြယ္ကူျပီး \n" -"သင္၏ အမည္လွ်ိဳ႕ဝွက္မႈကုိ ပိုမိုေကာင္းမြန္စြာ ျပဳလုပ္ေစႏုိင္ပါသည္\n" -"Firefox ကုိ ထည့္သြင္းလိုလွ်င္ Cancel ကို ကလစ္ႏွိပ္၍\n" -"Firefox Download page သို႕ သြားပါ" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Firefox ထည့္သြင္းျခင္း ျပီးစီးလွ်င္ \n" -"Tor ထည့္သြင္းမႈကုိ ျပန္လည္ လုပ္ေဆာင္ ႏုိင္ပါသည္\n" -"\n" -"သုိ႕မဟုတ္ Firefox ထည့္သြင္းျခင္း မျပဳဘဲ Tor ကို ထည့္သြင္းလုိပါလွ်င္ \n" -"Next ကုိ ႏွိပ္၍ ဆက္လက္လုပ္ေဆာင္ႏုိင္ပါသည္" diff -Nru vidalia-0.2.10/pkg/win32/bn/vidalia_bn.po vidalia-0.2.15/pkg/win32/bn/vidalia_bn.po --- vidalia-0.2.10/pkg/win32/bn/vidalia_bn.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/bn/vidalia_bn.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/bn_IN/vidalia_bn_IN.po vidalia-0.2.15/pkg/win32/bn_IN/vidalia_bn_IN.po --- vidalia-0.2.10/pkg/win32/bn_IN/vidalia_bn_IN.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/bn_IN/vidalia_bn_IN.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/bo/vidalia_bo.po vidalia-0.2.15/pkg/win32/bo/vidalia_bo.po --- vidalia-0.2.10/pkg/win32/bo/vidalia_bo.po 2010-05-19 06:26:18.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/bo/vidalia_bo.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/br/vidalia_br.po vidalia-0.2.15/pkg/win32/br/vidalia_br.po --- vidalia-0.2.10/pkg/win32/br/vidalia_br.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/br/vidalia_br.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/bridge-bundle.nsi.in vidalia-0.2.15/pkg/win32/bridge-bundle.nsi.in --- vidalia-0.2.10/pkg/win32/bridge-bundle.nsi.in 2010-06-11 19:36:36.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/bridge-bundle.nsi.in 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/pkg/win32/bs/vidalia_bs.po vidalia-0.2.15/pkg/win32/bs/vidalia_bs.po --- vidalia-0.2.10/pkg/win32/bs/vidalia_bs.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/bs/vidalia_bs.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/build-vidalia-installer.txt vidalia-0.2.15/pkg/win32/build-vidalia-installer.txt --- vidalia-0.2.10/pkg/win32/build-vidalia-installer.txt 2009-11-14 01:20:44.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/build-vidalia-installer.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,4 +1,4 @@ -$Id: build-vidalia-installer.txt 4165 2009-11-14 01:20:44Z edmanm $ +$Id$ Building a Windows Vidalia Installer diff -Nru vidalia-0.2.10/pkg/win32/ca/vidalia_ca.po vidalia-0.2.15/pkg/win32/ca/vidalia_ca.po --- vidalia-0.2.10/pkg/win32/ca/vidalia_ca.po 2010-08-11 18:26:41.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ca/vidalia_ca.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,260 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-08-11 12:23+0200\n" -"Last-Translator: lluismas \n" -"Language-Team: LANGUAGE \n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} instal·lació" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" -"Aquesta aplicació et guiará per la instal·lació de Tor, Vidalia, Privoxy, i " -"Torbutton.\n" -"\n" -"Tor es un sistema per utilitzar Internet anonimament, t'ajudara a anonimar " -"les teves cerques a la web i a les publicacions, chats, IRC, i molt mes. " -"Vidalia es un GUI que t'ajuda al control, monitor, i configuració de Tor.\n" -"\n" -"Privoxy es un filtre web proxy que protegeig la teva privacitat i t'ajuda a " -"eliminar ads, banners, i popups.\n" -"\n" -"Torbutton es una extensió Firefox that que et permet activar o desactivar " -"cerques web anonimes.\n" -"\n" -"Si ja tenies instal·lat Tor previament, Vidalia, Privoxy, o Firefox, " -"siusplau assegura't que aquests no estiguin funcionant abans de continuar " -"amb la instal·lació.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Benvinguts al ${BUNDLE_NAME} Setup Wizard" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} documentació de la instal·lació" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"La instal·lació s'ha completat.\n" -"Siusplau mira https://www.torproject.org/docs/tor-doc-windows per coneixer " -"com configuar les teves aplicacions utilitzant Tor.\n" -"\n" -"Si tens instal·lat Torbutton, necesites reiniciart Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Iniciant components instal·lats" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia es una aplicació GUI que t'ajuda a monitorar, controlar, i " -"configurar Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Esborra ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} setup" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" -"Això et guiara per la instalació de Vidalia, una aplicació GUI que t'ajudara " -"a controlar, monitorar, i configurar Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Benvinguts a la guia d'instal·lació de ${VIDALIA_NAME} " - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Pàgina principal de ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia es una aplicació GUI que t'ajuda a controlar, monitorar, i " -"configurar Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Iniciar al engegar" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Inicia ${VIDALIA_NAME} automaticament al engegar." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Afegeig al menú d'inici" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Afegeig ${VIDALIA_NAME} al teu menu d'inici." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Inicia ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor es un sistema per utilitzar Internet anonimament,t'ajuda a anonimar el " -"teu navegador i publicar, fer chat, IRC, i molt més." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Eliminar ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Instal·lar ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" -"Ja tenies un arxiu de configuració Tor.$\n" -"$\n" -"El vols sobreescriure amb l'arxiu de configuracio per defecte?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Documentació" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Instal·lar documentació ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Afegir al menú d'inici" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Afegir ${TOR_NAME} al teu menu d'inici." - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "Privoxy es un filtre web proxy que protegeig la teva privacitat i t'ajuda a " -"eliminar ads, banners, i popups.\n" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "Eliminar ${PRIVOXY_DESC}." - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "Instal·lar ${PRIVOXY_DESC}." - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "Afegir al menú d'inici" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "Afegir ${PRIVOXY_NAME} al teu menú d'inici." - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "Iniciar al engegar" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "Inicia automaticament ${PRIVOXY_NAME} al engegar." - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" -"Torbutton es una extensió Firefox que et permet activar o desactivar " -"rapidament el teu anonimat al navegar la web." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Eliminar ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Instal·lar ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Afegir a Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Afegir la extensió ${TORBUTTON_DESC} al Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "No s'ha trobat Firefox en el teu sistema. No s'ha instal·lat Torbutton." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Dades de la aplicació" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Eliminar arxiu de dades de la instalació i configuració." - -msgctxt "LanguageCode" -msgid "en" -msgstr "en" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox no está instal·lat" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Et recomanem que instalis Firefox abans de continuar, per més seguretat." - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"El navegador Mozilla Firefox no está instal·lat al teu ordinador. \n" -"Tor pot treballar amb altres navegadors, com internet explorer, pero \n" -"es mes facil amb Firefox, amb el que treballa millor per \n" -"protegir el teu anonimat.\n" -"\n" -"Si vols instal·lar Firefox, siusplau cancela , i despres ves\n" -"a la pàgina de descarregues de Firefox a" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Quan tinguis Firefox instal·lat al teu ordinador, pots continuar\n" -"amb la instal·lació de Tor.\n" -"\n" -"O si prefereixes continuar amb la instal·lació de Tor sense Firefox\n" -"prem Next per continuar." diff -Nru vidalia-0.2.10/pkg/win32/CMakeLists.txt vidalia-0.2.15/pkg/win32/CMakeLists.txt --- vidalia-0.2.10/pkg/win32/CMakeLists.txt 2010-05-18 00:17:31.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 4293 2010-05-18 00:17:31Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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) @@ -79,35 +79,35 @@ ## Convert the .po files to NSIS .nsh files at build time vidalia_add_nsh(vidalia_NSH - cs/vidalia_cs.po CZECH ISO-8859-2) + po/cs/vidalia_cs.po CZECH ISO-8859-2) vidalia_add_nsh(vidalia_NSH - de/vidalia_de.po GERMAN ISO-8859-1) + po/de/vidalia_de.po GERMAN ISO-8859-1) vidalia_add_nsh(vidalia_NSH - en/vidalia_en.po ENGLISH ISO-8859-1) + po/en/vidalia_en.po ENGLISH ISO-8859-1) vidalia_add_nsh(vidalia_NSH - es/vidalia_es.po SPANISH ISO-8859-1) + po/es/vidalia_es.po SPANISH ISO-8859-1) vidalia_add_nsh(vidalia_NSH - fa/vidalia_fa.po FARSI ISO-8859-6) + po/fa/vidalia_fa.po FARSI ISO-8859-6) vidalia_add_nsh(vidalia_NSH - fi/vidalia_fi.po FINNISH ISO-8859-1) + po/fi/vidalia_fi.po FINNISH ISO-8859-1) vidalia_add_nsh(vidalia_NSH - fr/vidalia_fr.po FRENCH ISO-8859-1) + po/fr/vidalia_fr.po FRENCH ISO-8859-1) vidalia_add_nsh(vidalia_NSH - he/vidalia_he.po HEBREW ISO-8859-8) + po/he/vidalia_he.po HEBREW ISO-8859-8) vidalia_add_nsh(vidalia_NSH - it/vidalia_it.po ITALIAN ISO-8859-1) + po/it/vidalia_it.po ITALIAN ISO-8859-1) vidalia_add_nsh(vidalia_NSH - nl/vidalia_nl.po DUTCH ISO-8859-1) + po/nl/vidalia_nl.po DUTCH ISO-8859-1) vidalia_add_nsh(vidalia_NSH - pl/vidalia_pl.po POLISH ISO-8859-2) + po/pl/vidalia_pl.po POLISH ISO-8859-2) vidalia_add_nsh(vidalia_NSH - pt/vidalia_pt.po PORTUGUESE ISO-8859-1) + po/pt/vidalia_pt.po PORTUGUESE ISO-8859-1) vidalia_add_nsh(vidalia_NSH - ro/vidalia_ro.po ROMANIAN ISO-8859-2) + po/ro/vidalia_ro.po ROMANIAN ISO-8859-2) vidalia_add_nsh(vidalia_NSH - ru/vidalia_ru.po RUSSIAN Windows-1251) + po/ru/vidalia_ru.po RUSSIAN Windows-1251) vidalia_add_nsh(vidalia_NSH - sv/vidalia_sv.po SWEDISH ISO-8859-1) + po/sv/vidalia_sv.po SWEDISH ISO-8859-1) #vidalia_add_nsh(vidalia_NSH # zh_CN/vidalia_zh_CN.po SIMPCHINESE GB18030) #vidalia_add_nsh(vidalia_NSH @@ -117,39 +117,39 @@ ## Convert the .po files to WiX .wxl files at build time vidalia_add_wxl(vidalia_WXL - cs/vidalia_cs.po cs ISO-8859-2) + po/cs/vidalia_cs.po cs ISO-8859-2) vidalia_add_wxl(vidalia_WXL - de/vidalia_de.po de ISO-8859-1) + po/de/vidalia_de.po de ISO-8859-1) vidalia_add_wxl(vidalia_WXL - en/vidalia_en.po en ISO-8859-1) + po/en/vidalia_en.po en ISO-8859-1) vidalia_add_wxl(vidalia_WXL - es/vidalia_es.po es ISO-8859-1) + po/es/vidalia_es.po es ISO-8859-1) vidalia_add_wxl(vidalia_WXL - fa/vidalia_fa.po fa ISO-8859-6) + po/fa/vidalia_fa.po fa ISO-8859-6) vidalia_add_wxl(vidalia_WXL - fi/vidalia_fi.po fi ISO-8859-1) + po/fi/vidalia_fi.po fi ISO-8859-1) vidalia_add_wxl(vidalia_WXL - fr/vidalia_fr.po fr ISO-8859-1) + po/fr/vidalia_fr.po fr ISO-8859-1) vidalia_add_wxl(vidalia_WXL - he/vidalia_he.po he ISO-8859-8) + po/he/vidalia_he.po he ISO-8859-8) vidalia_add_wxl(vidalia_WXL - it/vidalia_it.po it ISO-8859-1) + po/it/vidalia_it.po it ISO-8859-1) vidalia_add_wxl(vidalia_WXL - nl/vidalia_nl.po nl ISO-8859-1) + po/nl/vidalia_nl.po nl ISO-8859-1) vidalia_add_wxl(vidalia_WXL - pl/vidalia_pl.po pl ISO-8859-2) + po/pl/vidalia_pl.po pl ISO-8859-2) vidalia_add_wxl(vidalia_WXL - pt/vidalia_pt.po pt ISO-8859-1) + po/pt/vidalia_pt.po pt ISO-8859-1) vidalia_add_wxl(vidalia_WXL - ro/vidalia_ro.po ro ISO-8859-2) + po/ro/vidalia_ro.po ro ISO-8859-2) vidalia_add_wxl(vidalia_WXL - ru/vidalia_ru.po ru 1251) + po/ru/vidalia_ru.po ru 1251) vidalia_add_wxl(vidalia_WXL - sv/vidalia_sv.po sv ISO-8859-1) + po/sv/vidalia_sv.po sv ISO-8859-1) vidalia_add_wxl(vidalia_WXL - zh_CN/vidalia_zh_CN.po zh-CN 936) + po/zh_CN/vidalia_zh_CN.po zh-CN 936) vidalia_add_wxl(vidalia_WXL - zh_TW/vidalia_ZH_TW.po zh-TW 950) + po/zh_TW/vidalia_ZH_TW.po zh-TW 950) add_custom_target(dist-win32 COMMAND ${WIX_CANDLE_EXECUTABLE} diff -Nru vidalia-0.2.10/pkg/win32/cs/vidalia_cs.po vidalia-0.2.15/pkg/win32/cs/vidalia_cs.po --- vidalia-0.2.10/pkg/win32/cs/vidalia_cs.po 2010-08-23 16:44:41.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/cs/vidalia_cs.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,293 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia Windows Installers\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-08-22 22:30+0200\n" -"Last-Translator: Martin \n" -"Language-Team: none\n" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Pootle 2.0.5\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "Instalace ${BUNDLE_NAME}" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.Polipo is a caching " -"web proxy that helps increase performance of browsing the web through " -"Tor.Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.If you have previously installed Tor, " -"Vidalia, Polipo, or Firefox, please make sure they are not running before " -"continuing this installation.$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Vítejte v instalačním průvodci ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Instalace dokumentace aplikace ${TOR_NAME} " - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Instalace je dokončena.\n" -"Prosím navštivte https://www.torproject.org/docs/tor-doc-windows kde získáte " -"více informací, jak nakonfigurovat aplikace tak, aby používaly Tor.\n" -"\n" -"Jestliže jste instalovali Torbutton, je nutné restartovat Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Spustit nainstalované komponenty nyní" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia je uživatelské rozhraní, které vám pomůže ovládat, monitorovat a " -"konfigurovat Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Odstranit ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "Instalace aplikace ${VIDALIA_NAME}" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Tento průvodce vás provede instalací aplikace Vidalia, uživatelského " -"rozhraní, které vám pomůže ovládat, monitorovat a konfigurovat Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Vítejte v instalačním průvodci aplikace ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Domovská stránka aplikace ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia je uživatelské rozhraní, které vám pomůže ovládat, monitorovat a " -"konfigurovat Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Spustit při startu" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Automaticky spustit aplikaci ${VIDALIA_NAME} při startu." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Přidat do Nabídky Start" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Přidat aplikaci ${VIDALIA_NAME} do vaší Nabídky start." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Spustit aplikaci ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor je systém umožňující používat internet anonymně, který vám pomůže " -"anonymně surfovat webem a publikovat informace, používat instant messaging, " -"IRC a mnohem více." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Odstranit ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Instalovat ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Vy již máte Tor konfigurační soubor.$\n" -"$\n" -"Chcete jej přepsat defaultním ukázkovým konfiguračním souborem?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dokumentace" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Instalovat ${TOR_NAME} dokumentaci." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Přidat do Nabídky start" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Přidat ${TOR_NAME} do vaší Nabídky start." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo je proxy web, který zvyšuje výkon z prohlížení webových stránek " -"prostřednictvím Tor." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Odstranit ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Instalovat ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Přidat do Nabídky Start" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Přidat ${POLIPO_NAME} do vaší Nabídky start." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Spustit při startu" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Automaticky spustit ${POLIPO_NAME} při startu." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton je rozšíření Firefoxu, které vám umožní jednoduše povolit, nebo " -"zakázat anonymní surfování webem." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Odstranit ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Instalovat ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Přidat do Firefoxu" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Přidat rozšíření ${TORBUTTON_DESC} do Firefoxu." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Firefox nebyl nalezen ve vašem systému. Torbutton nebude instalován." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Data Aplikací" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Odstranit uložená data aplikací a konfigurační soubory." - -msgctxt "LanguageCode" -msgid "en" -msgstr "cs" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Není nainstalován Firefox." - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Než budete pokračovat, doporučujeme nainstalovat prohlížeč Firefox, pro " -"vyšší bezpečnost." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Webový prohlížeč Mozilla Firefox není ve vašem systému nainstalován.\n" -"Tor pracuje i s jinými prohlížeči, jako je např. Internet Explorer,\n" -"ale jeho použití je s Firefoxem snadnější, ten také lépe ochrání\n" -"vaši anonymitu.\n" -"\n" -"Jestli si přejete nainstalovat Firefox, klikněte na Zrušit a jděte\n" -"na stránku stažení Firefoxu na" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Až dokončíte instalaci Firefoxu, můžete Tor instalátor spustit\n" -"ještě jednou.\n" -"\n" -"Pokud preferujete instalovat Tor bez prohlížeče Firefox, jednoduše\n" -"klikněte na Pokračovat." diff -Nru vidalia-0.2.10/pkg/win32/csb/vidalia_csb.po vidalia-0.2.15/pkg/win32/csb/vidalia_csb.po --- vidalia-0.2.10/pkg/win32/csb/vidalia_csb.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/csb/vidalia_csb.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/cy/vidalia_cy.po vidalia-0.2.15/pkg/win32/cy/vidalia_cy.po --- vidalia-0.2.10/pkg/win32/cy/vidalia_cy.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/cy/vidalia_cy.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/da/vidalia_da.po vidalia-0.2.15/pkg/win32/da/vidalia_da.po --- vidalia-0.2.10/pkg/win32/da/vidalia_da.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/da/vidalia_da.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,310 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-10-01 09:16+0000\n" -"Last-Translator: Manuel Ojeda \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -# Not much to translate. -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} setup" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" -"Denne guide fører dig gennem installationen af Tor, Vidalia, Privoxy, og " -"Torbutton.\n" -"\n" -"Tor er et system til at bruge internettet anonymt, hjælpe dig med at " -"anonymisere internet browsing og udgivning, instant messaging, IRC, og meget " -"mere. Vidalia er en GUI, som hjælper med at styre, overvåge og konfigurere " -"Tor.\n" -"\n" -"Privoxy er en filtrering web proxy, der beskytter dit privatliv og hjælper " -"med at fjerne annoncer, bannere og popups.\n" -"\n" -"Torbutton er en Firefox udvidelse, som giver dig mulighed for hurtigt at " -"aktivere eller deaktivere anonyme webbrowsing.\n" -"\n" -"Hvis du tidligere har installeret Tor, Vidalia, Privoxy, eller Firefox, skal " -"du sikre, at de ikke kører, før du fortsætter denne installation.\n" -"\n" -"$_CLICK" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Velkommen til ${BUNDLE_NAME} Setup Guide" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} installations dokumentation" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Installationen er fuldført.\n" -"Se her https://www.torproject.org/docs/tor-doc-windows for at lære hvordan " -"du konfigurerer dine programmer til at bruge Tor.\n" -"\n" -"Hvis du har installeret Torbutton, skal du genstarte Firefox." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Kør installerede komponenter nu" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia er en grafisk brugergrænseflade som hjælper dig kontrollere, " -"overvåge og konfigurere Tor." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Fjern ${VIDALIA_DESC}." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} setup" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" -"Denne guide fører dig gennem installationen af Vidalia, en grafisk " -"brugergrænseflade, der hjælper med at styre, overvåge og konfigurere Tor.\n" -"\n" -"$_CLICK" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Velkommen til ${VIDALIA_NAME} Setup Guide" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} hjemmeside" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia er en grafisk brugergrænseflade der hjælper dig kontrollere, " -"overvåge og konfigurere Tor." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Kør ved opstart" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Kør automatisk ${VIDALIA_NAME} ved opstart." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Tilføj til Start Menuen" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Tilføj ${VIDALIA_NAME} til din Start menu." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Kør ${VIDALIA_NAME}" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor er et system til at bruge internettet anonymt, hjælpe dig med at " -"anonymisere web browsing og udgivning, instant messaging, IRC, og meget " -"mere." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Fjern ${TOR_DESC}." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Installer ${TOR_DESC}." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" -"Du har allerede en Tor konfigurations fil.$\n" -"$\n" -"Ønsker du at overskrive den med den standard prøve konfigurations fil?" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dokumentation" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Installer ${TOR_NAME} dokumentation" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Tilføj til Start menuen" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Tilføj ${TOR_NAME} til din Start menu." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" -"Privoxy er en filtrering web proxy, der beskytter dit privatliv og hjælper " -"med at fjerne annoncer, bannere og popups." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "Fjern ${PRIVOXY_DESC}." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "Installer ${PRIVOXY_DESC}." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "Tilføj til Start Menuen" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "Tilføj ${PRIVOXY_NAME} til din Start menu." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "Kør ved opstart" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "Kør automatisk ${PRIVOXY_NAME} ved opstart." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" -"Torbutton er en Firefox udvidelse, som giver dig mulighed for hurtigt at " -"aktivere eller deaktivere anonymt webbrowsing." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Fjern ${TORBUTTON_DESC}." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Installer ${TORBUTTON_DESC}." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Tilføj til Firefox" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Tilføj ${TORBUTTON_DESC} udvidelsen til Firefox." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Firefox blev ikke fundet på dit system. Installerer ikke Torbutton." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "AppData" -msgid "Application Data" -msgstr "Program Data" - -# Remove saved application data and configuration files. -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Fjern gemte program data og konfigurations filer." - -# Cant translate languagecode? EN=EN ; DA=DK ? -# Remove saved application data and configuration files. -msgctxt "LanguageCode" -msgid "en" -msgstr "en" - -# Remove saved application data and configuration files. -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox er ikke installeret." - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Vi foreslår at du installere Firefox før du fortsætter, for bedre sikkerhed." - -# You should check the \NewLine markers -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Mozilla Firefox web browser er ikke installeret på din computer.\n" -"Tor kan arbejde sammen med andre browsere, såsom Internet Explorer, men\n" -"er nemmere at bruge med Firefox, som også gør et bedre stykke arbejde\n" -"med at beskytter din anonymitet.\n" -"\n" -"Hvis du ønsker at installere Firefox, skal du trykke på Annuller og derefter " -"gå\n" -"til Firefox download siden på" - -# Translated by Manuel Ojeda - ojeda@ojeda.dk -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Når du er færdig med at installerer Firefox, kan du igen køre Tor " -"installationen.\n" -"\n" -"Eller, hvis du foretrækker at installere Tor uden Firefox, tryk på Næste for " -"at fortsætte." diff -Nru vidalia-0.2.10/pkg/win32/de/vidalia_de.po vidalia-0.2.15/pkg/win32/de/vidalia_de.po --- vidalia-0.2.10/pkg/win32/de/vidalia_de.po 2010-03-08 17:29:32.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/de/vidalia_de.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,302 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-03-03 17:10-0700\n" -"Last-Translator: CS \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} Setup" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Dieser Assistent wird Sie durch die Installation von Tor, Vidalia, Polipo " -"und Torbutton begleiten.\n" -"\n" -"Tor ist ein System, um das Internet anonym zu nutzen. Es anonymisiert das " -"Browsen, das Veröffentlichen von Inhalten, Instant Messaging, IRC, usw. " -"Vidalia ist eine Oberfläche zur Einrichtung, Steuerung und Überwachung von " -"Tor.\n" -"\n" -"Polipo ist ein filternder Webproxy, welcher die Leistung des Webbrowsens " -"mittels Tor erhöht.\n" -"\n" -"Torbutton ist eine Erweiterung für Firefox, die das schnelle Ein- und " -"Ausschalten des anonymes Webbrowsens ermöglicht.\n" -"\n" -"Sollten Sie Tor, Vidalia, Polipo oder Firefox bereits früher installiert " -"haben, stellen Sie sicher, dass diese Programme nicht laufen, bevor Sie die " -"Installation fortsetzen.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Willkommen beim ${BUNDLE_NAME} Installations-Assistent" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} Installations-Dokumentation" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Die Installation ist abgeschlossen.\n" -"Bitte besuchen Sie https://www.torproject.org/docs/tor-doc-windows um zu " -"erfahren, wie Sie Ihre Anwendungen zur Benutzung mit Tor einrichten können.\n" -"\n" -"Sollten Sie Torbutton installiert haben, müssen Sie Firefox neu starten." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Installierte Anwendungen jetzt starten" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia ist eine Oberfläche zur Einrichtung, Steuerung und Überwachung von " -"Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Entferne ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} Setup" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Dieser Assistent führt Sie durch die Installation von ${VIDALIA_DESC}.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Willkommen beim ${VIDALIA_NAME} Installations-Assistent" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} Webseite" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia ist eine Oberfläche zur Einrichtung, Steuerung und Überwachung von " -"Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Beim Systemstart ausführen" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "${VIDALIA_NAME} beim Systemstart automatisch ausführen." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Zum Startmenü hinzufügen" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "${VIDALIA_NAME} zu Ihrem Startmenü hinzufügen." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "${VIDALIA_NAME} jetzt starten" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor ist ein System, um das Internet anonym zu nutzen. Es anonymisiert das " -"Webbrowsen, das Veröffentlichen von Inhalten, Instant Messaging, IRC, usw." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Entferne ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Installiere ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Sie haben bereits eine Tor Konfigurationsdatei.$\n" -"$\n" -"Soll diese mit der allgemeinen Beispiel-Konfigurationsdatei überschrieben " -"werden?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dokumentation" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Installiere ${TOR_NAME} Dokumentation." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Zum Startmenü hinzufügen" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "${TOR_NAME} zu Ihrem Startmenü hinzufügen." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo ist ein speichernder Web-Proxy, der die Leistung des Webbrowsens " -"durch Tor erhöht." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Entferne ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Installiere ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Zum Startmenü hinzufügen" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "${POLIPO_NAME} zu Ihrem Startmenü hinzufügen." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Beim Systemstart ausführen" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "${POLIPO_NAME} beim Systemstart automatisch ausführen." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton ist eine Erweiterung für Firefox, die das schnelle Ein- und " -"Ausschalten des anonymen Webbrowsens ermöglicht." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Entferne ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Installiere ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Zu Firefox hinzufügen" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Die ${TORBUTTON_DESC}-Erweiterung zu Firefox hinzufügen." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"Firefox konnte nicht gefunden werden. Torbutton wird nicht installiert." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Anwendungsdaten" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Entferne gespeicherte Anwendungsdaten und Konfigurationsdateien." - -msgctxt "LanguageCode" -msgid "en" -msgstr "de" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox ist nicht installiert" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Für die maximale Sicherheit empfehlen wir, Firefox zu installieren, bevor " -"Sie fortfahren. " - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Der Mozilla Firefox-Browser ist auf Ihrem Computer nicht installiert.\n" -"Tor arbeitet mit anderen Browsers, wie dem Internet Explorer zusammen, aber\n" -"ist einfacher mit Firefox zu nutzen, der zudem besser\n" -"Ihre Anonymität schützt.\n" -"\n" -"Wenn Sie Firefox installieren wollen, klicken Sie bitte auf Abbrechen und " -"besuchen\n" -"Sie anschliessend die Firefox Downloadseite unter" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Wenn Sie Firefox installiert haben, können Sie das\n" -" Tor Installationsprogramm erneut ausführen.\n" -"\n" -"Falls Sie es vorziehen, Tor ohne Firefox zu installieren, klicken\n" -"Sie einfach auf Weiter," diff -Nru vidalia-0.2.10/pkg/win32/de_AT/vidalia_de_AT.po vidalia-0.2.15/pkg/win32/de_AT/vidalia_de_AT.po --- vidalia-0.2.10/pkg/win32/de_AT/vidalia_de_AT.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/de_AT/vidalia_de_AT.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/de_CH/vidalia_de_CH.po vidalia-0.2.15/pkg/win32/de_CH/vidalia_de_CH.po --- vidalia-0.2.10/pkg/win32/de_CH/vidalia_de_CH.po 2010-05-19 06:26:18.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/de_CH/vidalia_de_CH.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/de_DE/vidalia_de_DE.po vidalia-0.2.15/pkg/win32/de_DE/vidalia_de_DE.po --- vidalia-0.2.10/pkg/win32/de_DE/vidalia_de_DE.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/de_DE/vidalia_de_DE.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/dz/vidalia_dz.po vidalia-0.2.15/pkg/win32/dz/vidalia_dz.po --- vidalia-0.2.10/pkg/win32/dz/vidalia_dz.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/dz/vidalia_dz.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/el/vidalia_el.po vidalia-0.2.15/pkg/win32/el/vidalia_el.po --- vidalia-0.2.10/pkg/win32/el/vidalia_el.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/el/vidalia_el.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,230 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-03-24 19:40-0600\n" -"Last-Translator: George Fragos \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" -"Αυτός ο οδηγός θα σας βοηθήσει στην εγκατάσταση των Tor, Vidalia, Privoxy, " -"και Torbutton.\n" -"\n" -"Το Tor είναι ένα σύστημα για την ανώνυμη χρήση του διαδικτύου, βοηθώντας " -"στην ανωνυμοποίηση της περιήγησης αι δημοσίευσής σας στον Ιστό, της " -"ανταλλαγής άμεσων μηνυμάτων, του IRC και άλλων. Η Vidalia είναι ένα GUI που " -"σας βοηθά να ελέγχετε να παρακολουθείτε και να ρυθμίζετε το Tor.\n" -"\n" -"Το Privoxy είναι ένα φίλτρο πληρεξούσιου διακομιστή (proxy) το ιστού που " -"προστατεύει την ιδιωτικότητά σας και βοηθά στην απομάκρυνση των διαφημήσεων, " -"των πανό και των αναδυόμενων παραθύρων.\n" -"\n" -"Το Torbutton είναι μια επέκταση για το Firefox που σας επιτρέπει την γρήγορη " -"ενεργοποίηση ή απενεργοποίηση της ανώνυμης περιήγησης στον ιστό.\n" -"\n" -"Αν έχετε από πριν εγκαταστήσει τα Tor, Vidalia, Privoxy, ή Firefox, παρακαλώ " -"βεβαιωείτε ότι δεν εκτελούνται πριν συνεχίσετε αυτή την εγκατάσταση.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Καλώς ήλθατε στον Οδηγό Εγκατάστασης ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Τεκμηρίωση της εγκατάστασης ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Η εγκατάσταση ολοκληρώθηκε.\n" -"Διαβάστε το https://www.torproject.org/docs/tor-doc-windows για να μάθετε " -"πώς θα ρυθμίσετε τις εφαρμογές σας ώστε να χρησιμοποιούν το Tor.\n" -"\n" -"Αν εγκαταστήσατε το Torbutton, θα πρέπει να επανεκκινήσετε τον Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/en/vidalia_en.po vidalia-0.2.15/pkg/win32/en/vidalia_en.po --- vidalia-0.2.10/pkg/win32/en/vidalia_en.po 2009-08-31 03:27:41.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/en/vidalia_en.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,293 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-08-31 03:26+0000\n" -"Last-Translator: Matt \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} setup" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Welcome to the ${BUNDLE_NAME} Setup Wizard" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} installation documentation" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Run installed components now" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia is a GUI that helps you control, monitor, and configure Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Remove ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} setup" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Welcome to the ${VIDALIA_NAME} Setup Wizard" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} homepage" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia is a GUI that helps you control, monitor, and configure Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Run At Startup" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Automatically run ${VIDALIA_NAME} at startup." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Add to Start Menu" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Add ${VIDALIA_NAME} to your Start menu." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Run ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Remove ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Install ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Documentation" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Install ${TOR_NAME} documentation." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Add to Start Menu" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Add ${TOR_NAME} to your Start menu." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Remove ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Install ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Add to Start Menu" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Add ${POLIPO_NAME} to your Start menu." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Run At Startup" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Automatically run ${POLIPO_NAME} at startup." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Remove ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Install ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Add to Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Add the ${TORBUTTON_DESC} extension to Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Firefox was not found on your system. Not installing Torbutton." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Application Data" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Remove saved application data and configuration files." - -msgctxt "LanguageCode" -msgid "en" -msgstr "en" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox is not installed" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"We recommend that you install Firefox before continuing, for best safety." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." diff -Nru vidalia-0.2.10/pkg/win32/eo/vidalia_eo.po vidalia-0.2.15/pkg/win32/eo/vidalia_eo.po --- vidalia-0.2.10/pkg/win32/eo/vidalia_eo.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/eo/vidalia_eo.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/es/vidalia_es.po vidalia-0.2.15/pkg/win32/es/vidalia_es.po --- vidalia-0.2.10/pkg/win32/es/vidalia_es.po 2010-07-29 19:49:19.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/es/vidalia_es.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,297 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia Windows Installers\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-07-29 21:38+0200\n" -"Last-Translator: carolyn anhalt \n" -"Language-Team: none\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "Instalación de ${BUNDLE_NAME}" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Este asistente le guiará a través de la instalación de Tor, Vidalia, " -"Privoxy, y Torbutton.\n" -"\n" -"Tor es un sistema para lograr el anonimato en Internet, ayudándolo a hacer " -"anónima su navegación Web, publicaciones, mensajería instantánea, IRC, y " -"más. Vidalia es una interfaz de usuario que le ayuda a controlar, " -"monotorizar y configurar Tor.\n" -"\n" -"Polipo es un web proxy cache que ayuda a mejorar el performance al navegar " -"por la web via Tor.Torbutton es una extensión para Firefox que le permite " -"habilitar o deshabilitar rapidamente la navegación anónima por la web.\n" -"\n" -"Si ha instalado previamente Tor, Vidalia, Privoxy, o Firefox, por favor " -"asegúrese que no se estén ejecutando antes de continuar con la instalación.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Bienvenido al asistente de instalación de ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Documentación de instalación de ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"La instalación ha finalizado.\n" -"Por favor vea https://www.torproject.org/docs/tor-doc-windows para aprender " -"como configurar sus aplicaciones para que usen Tor.\n" -"\n" -"Si instaló Torbutton, necesitará reiniciar Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Ejecutar los componentes instalados ahora" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia es una interfaz de usuario que le ayuda a controlar, monitorizar y " -"configurar Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Eliminar ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "Instalación de ${VIDALIA_NAME}" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Este asistente le guiará a través de la instalación de Vidalia, una interfaz " -"de usuario que le ayuda a controlar, monotorizar y configurar Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Bienvenido al asistente de instalación de ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Pagina de Internet de ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia es una interfaz de usuario que le ayuda a controlar, monitorizar y " -"configurar Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Ejecutar al inciar sesión" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Ejecutar automáticamente ${VIDALIA_NAME} al iniciar sesión." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Añadir al menú Inicio" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Añadir ${VIDALIA_NAME} al menú Inicio." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Ejecutar ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor es un sistema para anonimizar Internet, ayudándolo a anonimizar su " -"navegación Web y publicaciones, mensajería instantánea, IRC, y más." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Eliminar ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Instalar ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Se ha encontrado una configuración de Tor.$\n" -"$\n" -"¿Desea sobrescribirla con la configuración predeterminada?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Documentación" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Instalar la documentación de ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Añadir al menú Inicio" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Añadir ${TOR_NAME} al menú Inicio" - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo es un cache web proxy que mejora el performance de la navegación " -"usando Tor." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Eliminar ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Instalar ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Añadir al menú Inicio" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Añadir ${POLIPO_NAME} al menú Inicio." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Ejecutar al iniciar sesión" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Ejecutar automáticamente ${POLIPO_NAME} al iniciar sesión." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton es una extensión para Firefox que le permite habilitar o " -"deshabilitar rápidamente la navegación anónima por la web." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Eliminar ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Instalar ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Añadir a Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Añadir la extensión ${TORBUTTON_DESC} a Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Firefox no se encontró en el sistema. No se puede instalar Torbutton." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Datos de la aplicación" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Eliminar archivos de configuración y datos de la aplicación guardados." - -msgctxt "LanguageCode" -msgid "en" -msgstr "es" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox no está instalado" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Le recomendamos que instale Firefox antes de continuar, para mayor seguridad." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"El navegador Mozilla Firefox no está instalado en el ordenador.\n" -"Podrá usar otros navegadores, como Internet Explorer, pero\n" -"es más sencillo el uso con Firefox, el cual también realiza un buen trabajo\n" -"protegiendo su anonimato.\n" -"\n" -"Si quiere instalar Firefox, por favor pulse Cancelar, luego diríjase\n" -"a la web de descarga de Firefox en" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Cuando termines la instalación de Firefox, puedes lanzar de nuevo\n" -"el instalador de Tor.\n" -"\n" -"O, si prefieres instalar Tor sin Firefox, simplemente\n" -"pulse Continuar." diff -Nru vidalia-0.2.10/pkg/win32/et/vidalia_et.po vidalia-0.2.15/pkg/win32/et/vidalia_et.po --- vidalia-0.2.10/pkg/win32/et/vidalia_et.po 2010-08-05 19:14:55.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/et/vidalia_et.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,271 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-02-12 13:08-0700\n" -"Last-Translator: Heiki Ojasild \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} installeerija" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, " -"Vidalia, Polipo, and Torbutton.\n\nTor is a system for using the " -"Internet anonymously, helping you anonymize Web browsing and publishing, " -"instant messaging, IRC, and more. Vidalia is a GUI that helps you " -"control, monitor, and configure Tor.\n\nPolipo is a caching web proxy " -"that helps increase performance of browsing the web through " -"Tor.\n\nTorbutton is a Firefox extension that allows you to quickly " -"enable or disable anonymous web browsing.\n\nIf you have previously " -"installed Tor, Vidalia, Polipo, or Firefox, please make sure they are " -"not running before continuing this installation.\n\n$_CLICK" -msgstr "" -"See programm juhatab sind läbi Tori, Vidalia, Polipon ning Torbuttoni " -"installeerimise.\n" -"\n" -"Tor on süsteem Interneti anonüümseks kasutamiseks, mis aitab sul jääda " -"anonüümseks veebis surfates ja infot avaldades, ning kasutades kiirsuhtlust, " -"IRCd ja palju muud. Vidalia on graafiline programm, mis aitab sul " -"kontrollida, jälgida ning konfigureerida Tori.\n" -"\n" -"Polipo on vaheserver, mis aitab sul tõsta veebi läbi Tori lehitsemise " -"jõudlust, salvestades ajutiselt osa infot, mille veebiserverid sulle " -"saadavad.\n" -"\n" -"Torbutton on Mozilla Firefoxi lisa, mis laseb sul kiiresti vahetada " -"anonüümse ja mitteanonüümse veebilehitsemise vahel.\n" -"\n" -"Kui sa oled varem installeerinud Tori, Vidalia, Polipo või Firefoxi, siis " -"tee palun kindlaks, et nad ei jookse, enne kui jätkad installatsiooniga.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Tere tulemast ${BUNDLE_NAME} installeerimisprogrammi" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} installatsioonidokumendid" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Installatsioon on lõpetatud.\n" -"Palun vaata https://www.torproject.org/docs/tor-doc-windows selleks, et " -"õppida, kuidas konfigureerida oma rakendused Tori kasutama.\n" -"\n" -"Kui sa installeerisid Torbuttoni, siis sa pead Firefoxi taaskäivitama." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Käivita installeeritud komponendid nüüd" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia on graafiline programm, mis aitab sul kontrollida, jälgida ning " -"konfigureerida Tori." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Eemalda ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} installeerija" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" -"See programm juhatab su läbi Vidalia installeerimise.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Tere tulemast ${VIDALIA_NAME} installeerimisprogrammi" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} koduleht" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia on graafiline programm, mis aitab sul kontrollida, jälgida ning " -"konfigureerida Tori." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Käivita automaatselt sisselogimisel" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Käivita ${VIDALIA_NAME} automaatselt sisselogimisel." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Lisa Start menüüsse." - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Lisa ${VIDALIA_NAME} sinu Start menüüsse." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Käivita ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor on süsteem Interneti anonüümseks kasutamiseks, aidates sul muuta " -"veebilehitsemise, veebis avaldamise, kiirsuhtluse, IRC jpm anonüümseks." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Eemalda ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Installeeri ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" -"Sul juba on Tori konfiguratsioonifail.$\n" -"$\n" -"Kas sa soovid selle üle kirjutada tavapärase näidiskonfiguratsioonifailiga?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dokumentatsioon" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Installeeri ${TOR_NAME} dokumentatsioon." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Lisa Start menüüsse" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Lisa ${TOR_NAME} sinu Start menüüsse." - -msgctxt "PolipoGroupDesc" -msgid "Polipo is a caching web proxy that increases performance of web browsing through Tor." -msgstr "" -"Polipo on veebi vaheserver, mis suurendab veebi läbi Tori lehitsemise " -"jõudlust." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Eemalda ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Installeeri ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Lisa Start menüüsse." - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Lisa ${POLIPO_NAME} sinu Start menüüsse." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Käivita sisselogimisel" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Automaatselt käivita ${POLIPO_NAME} sisselogimisel." - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" -"Torbutton on Mozilla Firefoxi lisa, mis lubab sul kiiresti lülitada " -"anonüümset veebilehitsemist sisse ja välja." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Eemalda ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Installeeri ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Lisa Mozilla Firefoxile" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Lisa ${TORBUTTON_DESC} lisa Mozilla Firefoxile." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"Mozilla Firefoxi ei leitud sinu süsteemist. Torbuttonit ei installeerita." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Rakenduse andmed" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Eemalda salvestatud rakenduse andmed ja konfiguratsioonifailid." - -msgctxt "LanguageCode" -msgid "en" -msgstr "et" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Mozilla Firefox ei ole installeeritud." - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Me soovitame sul installeerida parema turvalisuse huvides enne jätkamist " -"Mozilla Firefox." - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Mozilla Firefoxi veebilehitseja ei ole installeeritud sinu arvutis.\n" -"Tor töötab teiste veebilehitsejatega, nagu Internet Explorer, kuid\n" -"on palju lihtsamini kasutatav Firefoxiga, mis ühtlasi kaitseb\n" -"su anonüümsust paremini.\n" -"\n" -"Kui sa soovid installeerida Firefoxi, siis katkesta installatsioon ja mine\n" -"Firefoxi allalaadimislehele siin:" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Kui sa oled Firefoxi installeerimise lõpetanud, siis võid Tori installeri\n" -"uuesti käivitada.\n" -"\n" -"Kui sa soovid Tori installeerida ilma Firefoxita, jätka lihtsalt " -"installatsiooniga." diff -Nru vidalia-0.2.10/pkg/win32/eu/vidalia_eu.po vidalia-0.2.15/pkg/win32/eu/vidalia_eu.po --- vidalia-0.2.10/pkg/win32/eu/vidalia_eu.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/eu/vidalia_eu.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/fa/vidalia_fa.po vidalia-0.2.15/pkg/win32/fa/vidalia_fa.po --- vidalia-0.2.10/pkg/win32/fa/vidalia_fa.po 2010-07-29 02:52:35.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/fa/vidalia_fa.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,292 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-07-29 04:40+0200\n" -"Last-Translator: carolyn anhalt \n" -"Language-Team: translations@vidalia-project.net\n" -"Language: fa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.0.5\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "نصب ${BUNDLE_NAME}" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"اين دستيار، شما را در طی بارگذاری تُر، ويداليا، پوليپو، و تُرباتِن راهنمايی " -"می‌کند.\n" -"\n" -"تُر سيستمی برای استفاده از اينترنت به‌صورت ناشناس است و به شما کمک می‌کند که " -"کارهايي مثل گردش و نوشتن در وب، پيام فوری، IRC و برنامه‌هاي ديگري را مخفی " -"کنيد. ويداليا يك واسط گرافيكي است كه به كنترل، مديريت و تنظيم تُر كمك " -"مي‌كند.\n" -"پوليپو يك وب پراكسي كش كننده است كه قابليتهاي مشاهده وب سايت از طريق تُر را " -"افزايش مي‌دهد..\n" -"تُرباتِن يک افزونه فايرفاکس است که به شما اجازه می‌دهد امکان مرور ناشناس در " -"وب را به‌سرعت فعال يا غيرفعال کنيد.\n" -"اگر پيش از اين تُر، ويداليا، پوليپو، يا فايرفاکس را نصب کرده‌ايد، خواهشمند " -"است از بسته بودن آن‌ها در حين نصب اين برنامه اطمينان پيدا کنيد.\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "به دستيار تنظيم ${BUNDLE_NAME} خوش آمديد" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "مستندات نصب ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"عمليات نصب انجام شد.\n" -" خواهشمند است براي آگاهي يافتن از چگونگي پيكربندي برنامه هاي كاربردي‌تان در " -"تُر به آدرس https://www.torproject.org/docs/tor-doc-windows مراجعه نماييد. " -"/nاگر شما تُرباتن را نصب كرده‌ايد، نياز خواهيد داشت تا يكبار فايرفاكس را " -"ري‌استارت كنيد." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "اجرا كردن گزينه‌هاي نصب شده" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"ويداليا، يك واسط گرافيكي است كه به شما در كنترل، مديريت و تنظيم كردن تُر كمك " -"مي‌كند. ${VIDALIA_DESC}." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "حذف كردن ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "نصب${VIDALIA_NAME}" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"اين دستيار شما را در سرتاسر مراحل نصب ويداليا كه يك واسط گرافيكي براي كنترل، " -"مديريت و تنظيم تُر است، كمك مي‌كند.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "به دستيار نصب ${VIDALIA_NAME} خوش آمديد." - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "صفحه اصلي ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"ويداليا يك واسط گرافيكي است كه به شما در كنترل، مديريت و تنظيم كردن تُر كمك " -"مي‌كند." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "اجرا شدن در هنگام بوت شدن ويندوز" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "اجرا شدن اتوماتيك ${VIDALIA_NAME} در هنگام بوت شدن ويندوز." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "افزودن به منوي استارت ويندوز" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "افزودن ${VIDALIA_NAME} به منوي استارت ويندوز." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "اجراي ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"تُر سيستمي براي استفاده از اينترنت به صورت ناشناس است كه به شما كمك مي‌كند " -"تا وب سايتها را به صورت ناشناس ديده و يا بارگذاري نماييد، پيام بفرستيد، از " -"آي‌آرسي به صورت ناشناس استفاده كنيد و همچنين براي استفاده‌هاي بيشتر ديگري " -"نيز مورد مصرف قرار مي‌گيرد." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "حذف ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "نصب ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"شما هم اكنون فايل پيكربندي تُر را داريد.$\n" -"$\n" -"آيا مايليد آن‌ را با فايل نمونه پيش فرض پيكربندي جايگزين كنيد؟" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "مستندات" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "نصب مستندات ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "افزودن به منوي استارت ويندوز" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "افزودن ${TOR_NAME} به منوي استارت ويندوز." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"پوليپو يك وب پراكسي كش كننده است كه قابليتهاي مرور وب از طريق تُر را افزايش " -"مي‌دهد." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "حذف ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "نصب ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "افزودن به منوي استارت ويندوز" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "افزودن ${POLIPO_NAME} به منوي استارت ويندوز." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "اجرا شدن در هنگام بوت شدن ويندوز" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "اجرا شدن ${POLIPO_NAME} به صورت اتوماتيك در هنگام بوت شدن ويندوز." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"تُرباتِن يک افزونه فايرفاکس است که به شما اجازه می‌دهد امکان مرور ناشناس در " -"وب را به‌سرعت فعال يا غيرفعال کنيد." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "حذف ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "نصب ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "افزودن به فايرفاكس" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "اضافه‌كردن افزونه ${TORBUTTON_DESC} به فايرفاكس" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "فايرفاكس در سيستم شما نصب نشده است. تُرباتن نصب نخواهد شد." - -msgctxt "AppData" -msgid "Application Data" -msgstr "اطلاعات نرم افزار" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "حذف اطلاعات مربوط به نرم افزار و فايلهاي پيكربندي." - -msgctxt "LanguageCode" -msgid "en" -msgstr "fa" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "فايرفاكس نصب نشده است" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "پيشنهاد مي‌شود قبل از ادامه و براي امنيت بيشتر، فايرفاكس را نصب كنيد." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"مرورگر موزيلا فايرفاكس روي كامپيوتر شما نصب نشده است. /nتُر با مرورگرهاي " -"اينترنتي ديگر مثل اينترنت اكسپلورر نيز كار خواهد كرد ولي /nكار با فايرفاكس " -"به دليل اينكه داراي امكانات بهتري /nجهت حفاظت از ناشناس ماندن شما است،‌ " -"آسانتر است. /nاگر مايل به نصب فايرفاكس هستيد، لطفاً دكمه كنسل را زده و سپس " -"به/nصفحه بارگذاري فايرفاكس در آدرس" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"وقتي نصب فايرفاكس را به اتمام رسانديد، مي‌توانيد مجدداً/nنصب كننده تُر/n/nرا " -"اجرا كنيد يا اگر مايل به نصب آن بدون نصب فايرفاكس هستيد، لطفاً/nدكمه ادامه " -"را بزنيد." diff -Nru vidalia-0.2.10/pkg/win32/fi/vidalia_fi.po vidalia-0.2.15/pkg/win32/fi/vidalia_fi.po --- vidalia-0.2.10/pkg/win32/fi/vidalia_fi.po 2010-04-09 06:59:53.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/fi/vidalia_fi.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,299 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia Windows Installers\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-04-08 15:41-0600\n" -"Last-Translator: AmaliaH \n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "{BUNDLE_NAME}n asennus" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Tämä velho auttaa asentamaan Tor-ohjelman, Vidalian, Polipon ja Torbuttonin.\n" -"Tor on järjestelmä, jonka avulla voit käyttää Internettiä tuntemattomana " -"tekemällä anonyymiseksi sivujen selailun, pikaviestimisen, irkkaamisen ja " -"muiden vastaavien ohjelmien käytön. Vidalia on graafinen käyttöliittymä " -"jolla ohjataan, seurataan ja säädetään Tor-ohjelman toimintaa.\n" -"\n" -"Polipo on välimuistina toimiva web välityspalvelin, joka auttaa parantaa " -"nettiselailun nopeutta Torria käytettäessä.\n" -"\n" -"Torbutton on Firefoxin lisäosa, jolla voi helposti ottaa käyttöön tai " -"poistaa käytöstä anonyymisen sivujen selailun.\n" -"\n" -"Jos koneelle on jo asennettu Tor, Vidalia, Polipo, Privoxy tai Firefox, on " -"suositeltavaa tarkistaa ettei mikään niistä ole päällä ennen tämän " -"asennuksen jatkamista.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Tervetuloa ${BUNDLE_NAME}n asennukseen" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME}-asennusdokumentaatio" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Asennus on valmis.\n" -"Tutustu https://www.torproject.org/docs/tor-doc-windows -ohjesivuun missä " -"kerrotaan kuinka tehdä Tor-ohjelman vaatimat asetukset eri ohjelmille.\n" -"\n" -"Jos asensit Torbuttonin, Firefox tulee käynnistää uudestaan." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Käynnistä asennetut komponentit nyt" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia on käyttöliittymä ohjaamaan, tarkkailemaan ja säätämään Tor-ohjelman " -"asetuksia." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Poista ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME}:n asennus" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Tämä velho auttaa asentamaan Vidalian, joka on käyttöliittymä ohjaamaan, " -"tarkkailemaan ja säätämään Tor-ohjelman toimintaa.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Tervetuloa ${VIDALIA_NAME}:n asennukseen" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME}:n kotisivu" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia on käyttöliittymä, joka auttaa ohjaamaan, tarkkailemaan ja säätämään " -"Tor-ohjelmaa." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Käynnistä Windowsin käynnistyessä" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Käynnistä automaattisesti ${VIDALIA_NAME} Windowsin käynnistyessä." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Lisää Käynnistä-valikkoon" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Lisää ${VIDALIA_NAME} Käynnistä-valikkoon." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Käynnistä ${VIDALIA_NAME} nyt" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor on järjestelmä, jolla voi käyttää Internettiä tuntemattomasti tekemällä " -"anonyymiseksi sivujen selailun, pikaviestimisen, irkkaamisen ja muiden " -"käytön." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Poista ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Asenna ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Sinulla on jo ennestään Tor asetustiedosto.$\n" -"$\n" -"Haluatko, että se korvataan esimerkki asetustiedostolla?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dokumentaatio" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Asenna ${TOR_NAME}-dokumentaatio." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Lisää Käynnistä-valikkoon" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Lisää ${TOR_NAME} Käynnistä-valikkoon." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo on välimuistiin tallentava web välityspalvelin joka auttaa " -"parantamaan web selailun nopeutta Torria käytettäessä." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Poista ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Asenna ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Lisää Käynnistä-valikkoon" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Lisää ${POLIPO_NAME} Käynnistä-valikkoon." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Käynnistä Windowsin käynnistyessä" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Käynnistä automaattisesti ${POLIPO_NAME} Windowsin käynnistyessä." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton on Firefox lisäosa, jonka avulla voi ottaa nopeasti käyttöön tai " -"poistaa käytöstä anonyymisen web sivujen selailun." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Poista ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Asenna ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Lisää Firefoxiin" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Lisää ${TORBUTTON_DESC} -lisäosa Firefoxiin." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Firefoxia ei löytynyt koneelta. Torbuttonia ei voitu asentaa." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Sovelluksen tiedot" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Poista tallennetut ohjelmatiedot ja asetustiedostot." - -msgctxt "LanguageCode" -msgid "en" -msgstr "fi" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox ei ole asennettu" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Turvallisuuden vuoksi Firefoxin asentaminen on suositeltavaa ennen " -"jatkamista." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Mozilla Firefox selain ei ole asennettuna tähän tietokoneeseen.\n" -"Tor toimii muillakin selaimilla, kuten Internet Explorer, mutta\n" -"on helpompaa käyttää Firefoxilla, joka lisäksi turvaa yksityisyyden " -"paremmin.\n" -"\n" -"Jos haluat asentaa Firefoxin, paina Peruuta ja mene\n" -"Firefoxin lataussivulle osoitteeseen:" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Kun olet asentanut Firefoxin, voit uudestaan käynnistää\n" -"Tor-asennuksen.\n" -"\n" -"Vaihtoehtoisesti voit asentaa Tor-ohjelman ilman Firefoxia\n" -"painamalla Jatka." diff -Nru vidalia-0.2.10/pkg/win32/fil/vidalia_fil.po vidalia-0.2.15/pkg/win32/fil/vidalia_fil.po --- vidalia-0.2.10/pkg/win32/fil/vidalia_fil.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/fil/vidalia_fil.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/fo/vidalia_fo.po vidalia-0.2.15/pkg/win32/fo/vidalia_fo.po --- vidalia-0.2.10/pkg/win32/fo/vidalia_fo.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/fo/vidalia_fo.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/fr/vidalia_fr.po vidalia-0.2.15/pkg/win32/fr/vidalia_fr.po --- vidalia-0.2.10/pkg/win32/fr/vidalia_fr.po 2009-09-29 23:46:27.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/fr/vidalia_fr.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,304 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-09-21 10:44+0000\n" -"Last-Translator: Michael Scherer \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "Mise à jour de ${BUNDLE_NAME}" - -# Traduction de la partie sur Polipo -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Cet assistant vous guidera pendant l'installation de Tor, Vidalia, Privoxy, " -"et de Torbutton.\n" -"\n" -"Tor est un système pour utiliser internet anonymement, vous aidant à " -"anonymer la navigation Web, la publication, la messagerie instantanée, " -"l'IRC, et plus encore. Vidalia est un logiciel qui vous aide à " -"contrôler,surveiller et configurer Tor.\n" -"\n" -"Polipo est un mandataire proxy de cache qui améliore la navigation web à " -"travers Tor.\n" -"\n" -"Torbutton est un module complémentaire de Firefox qui vous permet d'activer " -"ou de désactiver rapidement la navigation anonyme.\n" -"\n" -"Si vous avez déjà installé Tor, Vidalia, Privoxy, ou Firefox, assurez-vous " -"qu'ils ne sont pas démarrés avant de poursuivre l'installation.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Bienvenue dans l'Assistant d'installation de ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Documentation de l'installation de ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"L'installation est terminée.\n" -"Consultez la page https://www.torproject.org/docs/tor-doc-windows pour " -"apprendre comment configurer vos applications avec Tor.\n" -"\n" -"Si vous venez d'installer Torbutton, vous devrez redémarrer Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Démarrer les composants installés maintenant" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia est un logiciel qui vous aide à contrôler,surveiller et configurer " -"Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Supprimer ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "Mise à jour de ${VIDALIA_NAME}" - -# GUI traduit en logiciel pour plus de clarté -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Cet assistant vous guidera pendant l'installation de Vidalia, un logiciel " -"qui vous aide à contrôler,surveiller et configurer Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Bienvenue dans l'Assistant d'installation de ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Site Web de ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia est un logiciel qui vous aide à contrôler,surveiller et configurer " -"Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Lancer au démarrage" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Lancer automatiquement ${VIDALIA_NAME} au démarrage." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Ajouter au Menu Démarrer" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Ajouter ${VIDALIA_NAME} à votre Menu Démarrer." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Lancer ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor est un système pour utiliser internet anonymement, vous aidant à " -"anonymer la navigation Web, la publication, la messagerie instantanée, " -"l'IRC, et plus encore." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Supprimer ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Installer ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Vous avez déjà un fichier de configuration de Tor.$\n" -"$\n" -"Voulez-vous le remplacer par le fichier de configuration par défaut?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Documentation" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Installer la documentation de ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Ajouter au Menu Démarrer" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Ajouter ${TOR_NAME} à votre Menu Démarrer." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo est un mandataire proxy de cache qui améliore la navigation web à " -"travers Tor." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Supprimer ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Installer ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Ajouter au Menu Démarrer" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Ajouter ${POLIPO_NAME} à votre Menu Démarrer." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Lancer au démarrage" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Lancer automatiquement ${POLIPO_NAME} au démarrage." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton est un module complémentaire de Firefox qui vous permet d'activer " -"ou de désactiver rapidement la navigation anonyme." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Supprimer ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Installer ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Ajouter à Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Ajouter l'extension ${TORBUTTON_DESC} à Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"Firefox n'a pas été trouvé sur votre système. Torbutton ne sera pas installé." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Données de l'Application" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" -"Supprimer les fichiers de configuration et les données de l'application." - -msgctxt "LanguageCode" -msgid "en" -msgstr "fr" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox n'est pas installé" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Nous recommandons, pour plus de sureté, l'installation de firefox avant de " -"continuer. " - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Le navigateur Mozilla Firefox n'est pas installé sur votre ordinateur.\n" -"Tor fonctionnera avec d'autres navigateurs, tel que Internet Explorer, mais\n" -"il est simple à utiliser avec Firefox, qui est aussi plus adapté pour\n" -"proteger votre anonymat.\n" -"\n" -"Si vous voulez intaller Firefox, merci de presser Annuler, puis allez\n" -"sur la page de téléchargement de Firefox" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Quand vous aurez installé Firefox, vous pourrez à nouveau lancer l'\n" -"installeur de Tor.\n" -"\n" -"Ou, si vous préférez installer Tor sans Firefox, pressez simplement\n" -"Continuer." diff -Nru vidalia-0.2.10/pkg/win32/fur/vidalia_fur.po vidalia-0.2.15/pkg/win32/fur/vidalia_fur.po --- vidalia-0.2.10/pkg/win32/fur/vidalia_fur.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/fur/vidalia_fur.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/fy/vidalia_fy.po vidalia-0.2.15/pkg/win32/fy/vidalia_fy.po --- vidalia-0.2.10/pkg/win32/fy/vidalia_fy.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/fy/vidalia_fy.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ga/vidalia_ga.po vidalia-0.2.15/pkg/win32/ga/vidalia_ga.po --- vidalia-0.2.10/pkg/win32/ga/vidalia_ga.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ga/vidalia_ga.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/gl/vidalia_gl.po vidalia-0.2.15/pkg/win32/gl/vidalia_gl.po --- vidalia-0.2.10/pkg/win32/gl/vidalia_gl.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/gl/vidalia_gl.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/gu/vidalia_gu.po vidalia-0.2.15/pkg/win32/gu/vidalia_gu.po --- vidalia-0.2.10/pkg/win32/gu/vidalia_gu.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/gu/vidalia_gu.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/gun/vidalia_gun.po vidalia-0.2.15/pkg/win32/gun/vidalia_gun.po --- vidalia-0.2.10/pkg/win32/gun/vidalia_gun.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/gun/vidalia_gun.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ha/vidalia_ha.po vidalia-0.2.15/pkg/win32/ha/vidalia_ha.po --- vidalia-0.2.10/pkg/win32/ha/vidalia_ha.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ha/vidalia_ha.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/he/vidalia_he.po vidalia-0.2.15/pkg/win32/he/vidalia_he.po --- vidalia-0.2.10/pkg/win32/he/vidalia_he.po 2009-08-31 02:49:46.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/he/vidalia_he.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,281 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2008-07-17 03:13+0000\n" -"Last-Translator: Matt \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "התקנת ${BUNDLE_NAME}" - -#, fuzzy -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"אשף זה ינחה אותך בעת התקנת Tor, Vidalia, Privoxy ו-Torbutton.\n" -"\n" -"Tor היא מערכת לשימוש אנונימי באינטרנט, לגלישה ופרסום אתרי רשת, תקשרות מסרים " -"מידיים, IRC ועוד. Vidalia היא ממשק גראפי לשליטה, ניטור והגדרת Tor.\n" -"\n" -"Privoxy הוא שרת פרוקסי מסנן המגן על פרטיותך ועוזר להסיר פרסומות וחלונות " -"קופצים.\n" -"\n" -"Torbutton היא הרחבת Firefox המאפשרת להפעיל ולכבות גלישה אנונימית במהירות.\n" -"\n" -"אם התקנת Tor, Vidalia, Privoxy או Firefox בעבר, אנא ודא שהם לא פעילים לפני " -"המשך ההתקנה.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "ברוכים הבאים לאשף התקנת ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "מסמכי התקנה של ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"ההתקנה הסתיימה.\n" -"אנא ראה https://www.torproject.org/docs/tor-doc-windows על מנת ללמוד כיצד " -"להגדיר את התוכנות לשימוש ב-Tor.\n" -"\n" -" אם התקנת Torbutton יש צורך להתחיל מחדש את Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "הרץ רכיבים מותקנים כעת" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia הינו ממשק גרפי המאפשר שליטה, ניטור והגדרת Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "הסר ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "התקנת ${VIDALIA_NAME}" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"אשף זה ידריך אותך במהלך התקנת Vidalia, ממשק גרפי העוזר בשליטה, ניטור והגדרת " -"Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "ברוכים הבאים לאשף התקנת ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "עמוד הבית של ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia הינו ממשק גרפי המאפשר שליטה, ניטור והגדרת Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "הרץ בעת אתחול" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "הרץ ${VIDALIA_NAME} אוטומטית בעת אתחול." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "הוסף לתפריט התחלה" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "הוסף את ${VIDALIA_NAME} לתפריט התחלה." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "הרץ את ${VIDALIA_NAME} כעת" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor היא מערכת לשימוש אנונימי באינטרנט, לגלישה ופרסום אתרי רשת, תקשרות מסרים " -"מידיים, IRC ועוד." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "הסר ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "התקן ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"קובץ הגדרות Tor נמצא.$\n" -"$\n" -"האם ברצונך להחליפו בקובץ הגדרות ברירת המחדל?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "מסמכים" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "התקן מסמכי ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "הוסף לתפריט התחלה" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "הוסף את ${TOR_NAME} לתפריט התחלה." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" - -#, fuzzy -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "הסר ${POLIPO_DESC}." - -#, fuzzy -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "התקן ${POLIPO_DESC}." - -#, fuzzy -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "הוסף לתפריט התחלה" - -#, fuzzy -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "הוסף את ${POLIPO_NAME} לתפריט התחלה." - -#, fuzzy -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "הרץ בעת אתחול" - -#, fuzzy -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "הרץ ${POLIPO_NAME} אוטומטית בעת אתחול." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton הינה הרחבת Firefox המאפשרת הפעלה וכיבוי מהיר של גלישה אנונימית." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "הסר ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "התקן ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "הוסף ל-Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "הוסף את הרחבת ${TORBUTTON_DESC} ל-Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Firefox לא נמצא במערכת. לא מתקין Torbutton." - -msgctxt "AppData" -msgid "Application Data" -msgstr "מידע תוכנה" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "הסר מידע תוכנה שמור וקבצי הגדרה." - -msgctxt "LanguageCode" -msgid "en" -msgstr "he" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/hi/vidalia_hi.po vidalia-0.2.15/pkg/win32/hi/vidalia_hi.po --- vidalia-0.2.10/pkg/win32/hi/vidalia_hi.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/hi/vidalia_hi.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/hr/vidalia_hr.po vidalia-0.2.15/pkg/win32/hr/vidalia_hr.po --- vidalia-0.2.10/pkg/win32/hr/vidalia_hr.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/hr/vidalia_hr.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ht/vidalia_ht.po vidalia-0.2.15/pkg/win32/ht/vidalia_ht.po --- vidalia-0.2.10/pkg/win32/ht/vidalia_ht.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ht/vidalia_ht.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/hu/vidalia_hu.po vidalia-0.2.15/pkg/win32/hu/vidalia_hu.po --- vidalia-0.2.10/pkg/win32/hu/vidalia_hu.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/hu/vidalia_hu.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/hy/vidalia_hy.po vidalia-0.2.15/pkg/win32/hy/vidalia_hy.po --- vidalia-0.2.10/pkg/win32/hy/vidalia_hy.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/hy/vidalia_hy.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/id/vidalia_id.po vidalia-0.2.15/pkg/win32/id/vidalia_id.po --- vidalia-0.2.10/pkg/win32/id/vidalia_id.po 2010-06-23 11:57:05.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/id/vidalia_id.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,261 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-06-22 03:35-0600\n" -"Last-Translator: Jadied \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} setup" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" -"Installer ini akan memandu Anda dalam menginstall Tor, Vidalia, Privoxy dan " -"Torbutton.\n" -"\n" -"Tor adalah sistem yang memungkinkan menggunakan Internet tanpa dikenal " -"(anonymous), membantu Anda untuk browsing, instant messaging, IRC dan lain-" -"lain tanpa dikenal. Vidalia adalah GUI yang membantu Anda untuk " -"mengendalikan, memonitor dan mengkonfigurasi Tor.\n" -"\n" -"Privoxy adalah filtering web proxy yang memproteksi privasi Anda dan " -"membantu untuk menghilangkan iklan, banner dan popups.\n" -"\n" -"Torbutton adalah ekstensi firefox yang membuat Anda dengan cepat " -"mengaktifkan atau mematikan browsing secara anonymous.\n" -"\n" -"Jika Anda sebelumnya telah menginstall Tor, Vidalia, Privoxy, atau Firefox, " -"mohon pastikan bahwa software-software tersebut tidak berjalan ketika proses " -"instalasi berlangsung.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Selamat datang di ${BUNDLE_NAME} Setup" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} dokumentasi instalasi" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Instalasi selesai.\n" -"Mohon kunjungi https://www.torproject.org/docs/tor-doc-windows untuk belajar " -"bagaimana cara mengkonfigurasi aplikasi Anda agar dapat menggunakan Tor." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Menjalankan komponen yang telah diinstall" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia adalah GUI yang membantu Anda untuk mengendalikan, memonitor dan " -"mengkonfigurasi Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Menghapus ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} setup" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" -"Installer ini akan memandu Anda dalam menginstall Vidalia, GUI yang membantu " -"Anda untuk mengendalikan, memonitor dan mengkonfigurasi Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Selamat datang di ${VIDALIA_NAME} Setup" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Website ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia adalah GUI yang membantu Anda untuk mengendalikan, memonitor dan " -"mengkonfigurasi Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Jalankan saat Startup" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Otomatis menjalankan ${VIDALIA_NAME} saat Startup." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Tambahkan pada Start Menu" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Tambahkan ${VIDALIA_NAME} pada Start Menu Anda." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Jalankan ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor adalah sistem yang memungkinkan menggunakan Internet tanpa dikenal " -"(anonymous), membantu Anda untuk browsing, instant messaging, IRC dan lain-" -"lain tanpa dikenal." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Hapus ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Install ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" -"Anda telah mempunyai file konfigurasi Tor.$\n" -"$\n" -"Anda ingin menimpanya dengan file konfigurasi default? " - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dokumentasi" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Install dokumentasi ${TOR_NAME}" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Tambahkan pada Start Menu" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Tambahkan ${TOR_NAME} pada Start menu Anda." - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" -"Privoxy adalah filtering web proxy yang memproteksi privasi Anda dan " -"membantu untuk menghilangkan iklan, banner dan popups." - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "Hapus ${PRIVOXY_DESC}." - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "Install ${PRIVOXY_DESC}." - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "Tambahkan pada Start Menu" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "Tambahkan ${PRIVOXY_NAME} pada Start menu Anda." - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "Jalankan saat Startup" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "Otomatis menjalankan ${PRIVOXY_NAME} saat Startup." - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" -"Torbutton adalah ekstensi firefox yang membuat Anda dengan cepat " -"mengaktifkan atau mematikan browsing secara anonymous." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Hapus ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Install ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Tambahkan pada Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Tambahkan ektensi ${TORBUTTON_DESC} pada Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Tidak ditemukan Firefox pada sistem Anda. Tidak menginstall Torbutton." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Application Data" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Hapus semua data dan konfigurasi file yang tersimpan." - -msgctxt "LanguageCode" -msgid "en" -msgstr "id" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox tidak diinstall" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Kami merekomendasikan Anda untuk menginstall Firefox sebelum melanjutkan, " -"untuk keamanan terbaik. " - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Mozilla Firefox browser tidak diinstall di komputer Anda.\n" -"Tor juga dapat bekerja dengan browser lainnya, seperti Internet Explorer, " -"tetapi\n" -"akan lebih mudah apabila menggunakan Firefox. Firefox juga lebih baik dalam " -"menjaga privasi Anda.\n" -"\n" -"Jika Anda ingin menginstall Firefox, mohon tekan tombol Batal, kemudian " -"kunjungi website Firefox di www.mozilla.com/firefox/ " - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Ketika Anda telah selesai menginstall Firefox, Anda harus menjalankan Tor " -"Installer sekali lagi.\n" -"\n" -"Atau, jika Anda memilih untuk menginstall Tor tanpa Firefox, tekan tombol " -"Lanjut." diff -Nru vidalia-0.2.10/pkg/win32/is/vidalia_is.po vidalia-0.2.15/pkg/win32/is/vidalia_is.po --- vidalia-0.2.10/pkg/win32/is/vidalia_is.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/is/vidalia_is.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/it/vidalia_it.po vidalia-0.2.15/pkg/win32/it/vidalia_it.po --- vidalia-0.2.10/pkg/win32/it/vidalia_it.po 2010-08-01 14:31:22.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/it/vidalia_it.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,301 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-08-01 16:20+0200\n" -"Last-Translator: carolyn anhalt \n" -"Language-Team: translations@vidalia-project.net\n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "Installazione di ${BUNDLE_NAME}" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Questo wizard assisterà nell'installazione di Tor, Vidalia, Privoxy e " -"Torbutton.\n" -"\n" -"Tor è un software che consente di usare Internet in modo anonimo, aiutandoti " -"a rendere anonimela navigazione e la pubblicazione sul web, la " -"messaggistica istantanea, IRC e altro ancora. Vidalia è una interfaccia " -"grafica che semplifica il controllo e la configurazione di Tor.\n" -"\n" -"Polipo è un proxy filtrante che protegge la privacy e rimuove pubblicità " -"(ad, banner e popup).\n" -"\n" -"Torbutton è un'estensione di Firefox che consente di attivare o disattivare " -"rapidamente la navigazione anonima.\n" -"\n" -"Se esistono già precedenti installazioni di Tor, Vidalia, Polipo o Firefox è " -"consigliabile assicurarsi che questi programmi siano chiusi prima di " -"continuare con l'installazione.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Benvenuti nell'installazione guidata di ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Documenti sull'installazione di ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"L'installazione è stata completata.\n" -"Consultare https://www.torproject.org/docs/tor-doc-windows per informazioni " -"sull'uso e sulla configurazione di Tor.\n" -"\n" -"Se Torbutton è stato installato sarà necessario riavviare Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Avvia ora i componenti installati" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia è una interfaccia grafica per controllare, monitorare e configurare " -"Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Disinstalla ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "Installazione di ${VIDALIA_NAME}" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Questa procedura guidata assisterà nell'installazione di Vidalia, un " -"programma grafico di controllo e configurazione di Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Benvenuti nell'installazione guidata di ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Homepage di ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia è una GUI per controllare, monitorare e configurare Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Attiva all'avvio del pc" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Avvia ${VIDALIA_NAME} automaticamente all'accensione del pc." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Aggiungi al menu Avvio" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Aggiunge ${VIDALIA_NAME} alla cartella Progammi del menu Avvio." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Avvia ${VIDALIA_NAME} adesso" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor è un sistema per usare Internet in modo anonimo, permettendoti di " -"rendere anonimi la navigazione e la pubblicazione web, la messaggistica " -"istantanea, IRC, e altro ancora." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Disinstalla ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Installa ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Un file di configurazione Tor è già presente nel sistema.$\n" -"$\n" -"Sovrascriverlo con il file di configurazione standard?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Documentazione" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Installa la documentazione di ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Aggiungi al menu Avvio" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Aggiunge ${TOR_NAME} alla cartella Programmi del menu Avvio." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo è un caching web proxy che migliora le prestazioni dela navigazione " -"web con Tor." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Disinstalla ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Installa ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Aggiungi al menu Avvio" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Aggiunge ${POLIPO_NAME} alla cartella Programmi del menu Avvio." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Attiva all'avvio del pc" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Avvia ${POLIPO_NAME} all'accensione del pc." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton è un'estensione per Firefox che consente di attivare o disattivare " -"rapidamente la navigazione anonima." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Disinstalla ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Installa ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Aggiungi a Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Aggiunge l'estensione ${TORBUTTON_DESC} a Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"Firefox non è stato trovato nel sistema. Torbutton non sarà installato." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Dati dell'applicazione" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Elimina i dati dell'applicazione salvati ed i file di configurazione." - -msgctxt "LanguageCode" -msgid "en" -msgstr "it" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox non è installato" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Consigliamo di installare Firefox prima di continuare, per una maggiore " -"sicurezza" - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Il browser web Mozilla Firefox non è installato sul tuo computer.\n" -"Tor funzionerà con altri browser, come Internet Explorer, ma\n" -"è più semplice da utilizzare con Firefox, che funziona anche meglio\n" -"per proteggere il tuo anonimato.\n" -"\n" -"Se vuoi installare Firefox, premi Annulla, quindi vai\n" -"alla pagina di download di Firefox a" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Quando hai installato Firefox, puoi nuovamente eseguire\n" -"l'installatore di Tor.\n" -"\n" -"O, se preferisci installare Tor senza Firefox,\n" -"premi Avanti per continuare" diff -Nru vidalia-0.2.10/pkg/win32/ja/vidalia_ja.po vidalia-0.2.15/pkg/win32/ja/vidalia_ja.po --- vidalia-0.2.10/pkg/win32/ja/vidalia_ja.po 2010-05-19 06:26:18.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ja/vidalia_ja.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,226 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-04-10 02:25-0600\n" -"Last-Translator: Shinji R. Yamane \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} セットアップ" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" -"このウィザードはTor, Vidalia, Privoxy, and Torbuttonのインストールを案内します.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Privoxy is a filtering web proxy that protects your privacy and helps remove " -"ads, banners, and popups.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Privoxy, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "${BUNDLE_NAME} セットアップウィザードへようこそ" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"インストールは終了しました。\n" -"Torを利用するための設定については、https://www.torproject.org/docs/tor-doc-windows をご覧ください。\n" -"\n" -"Torbuttonをインストールされた方は、Firefoxを再起動する必要があります." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia はTorの制御・監視・設定を支援するグラフィカルユーザーインタフェースです。" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} セットアップ" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "${VIDALIA_NAME} セットアップウィザードへようこそ" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "VidaliaはTorの制御・監視・設定を支援するグラフィカルユーザーインタフェースです。" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "Torはインターネットを介した匿名性によって、ウェブでの閲覧・公表・インスタントメッセージ・チャットを支援するシステムです。" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "Privoxyは、広告・バナー・ポップアップを取り除き、あなたのプライバシを守るフィルタリング用のウェブプロクシです。" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "Torbuttonは匿名でのウェブ閲覧を簡単に有効化・無効化できるFirefoxエクステンションです。" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/jv/vidalia_jv.po vidalia-0.2.15/pkg/win32/jv/vidalia_jv.po --- vidalia-0.2.10/pkg/win32/jv/vidalia_jv.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/jv/vidalia_jv.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ka/vidalia_ka.po vidalia-0.2.15/pkg/win32/ka/vidalia_ka.po --- vidalia-0.2.10/pkg/win32/ka/vidalia_ka.po 2010-05-19 06:26:18.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ka/vidalia_ka.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/km/vidalia_km.po vidalia-0.2.15/pkg/win32/km/vidalia_km.po --- vidalia-0.2.10/pkg/win32/km/vidalia_km.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/km/vidalia_km.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/kn/vidalia_kn.po vidalia-0.2.15/pkg/win32/kn/vidalia_kn.po --- vidalia-0.2.10/pkg/win32/kn/vidalia_kn.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/kn/vidalia_kn.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ko/vidalia_ko.po vidalia-0.2.15/pkg/win32/ko/vidalia_ko.po --- vidalia-0.2.10/pkg/win32/ko/vidalia_ko.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ko/vidalia_ko.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,210 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-02-06 04:37-0700\n" -"Last-Translator: Ui Sung Lee \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} 설치" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "환영합니다. ${BUNDLE_NAME} 설치 마법사" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "설치 설명서" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"설치가 완료됩니다. \\ n자세한 내용은 https://www.torproject.org/docs/tor-doc-windows토르를 " -"사용하여 응용 프로그램을 구성하는 방법을 배울 수있습니다.\n" -"\n" -"Torbutton 설치되어있는 경우, 당신은 파이어 폭스를 다시 시작해야 할 것입니다." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ku/vidalia_ku.po vidalia-0.2.15/pkg/win32/ku/vidalia_ku.po --- vidalia-0.2.10/pkg/win32/ku/vidalia_ku.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ku/vidalia_ku.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/kw/vidalia_kw.po vidalia-0.2.15/pkg/win32/kw/vidalia_kw.po --- vidalia-0.2.10/pkg/win32/kw/vidalia_kw.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/kw/vidalia_kw.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ky/vidalia_ky.po vidalia-0.2.15/pkg/win32/ky/vidalia_ky.po --- vidalia-0.2.10/pkg/win32/ky/vidalia_ky.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ky/vidalia_ky.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/lb/vidalia_lb.po vidalia-0.2.15/pkg/win32/lb/vidalia_lb.po --- vidalia-0.2.10/pkg/win32/lb/vidalia_lb.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/lb/vidalia_lb.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/lg/vidalia_lg.po vidalia-0.2.15/pkg/win32/lg/vidalia_lg.po --- vidalia-0.2.10/pkg/win32/lg/vidalia_lg.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/lg/vidalia_lg.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ln/vidalia_ln.po vidalia-0.2.15/pkg/win32/ln/vidalia_ln.po --- vidalia-0.2.10/pkg/win32/ln/vidalia_ln.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ln/vidalia_ln.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/lo/vidalia_lo.po vidalia-0.2.15/pkg/win32/lo/vidalia_lo.po --- vidalia-0.2.10/pkg/win32/lo/vidalia_lo.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/lo/vidalia_lo.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/lt/vidalia_lt.po vidalia-0.2.15/pkg/win32/lt/vidalia_lt.po --- vidalia-0.2.10/pkg/win32/lt/vidalia_lt.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/lt/vidalia_lt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/lv/vidalia_lv.po vidalia-0.2.15/pkg/win32/lv/vidalia_lv.po --- vidalia-0.2.10/pkg/win32/lv/vidalia_lv.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/lv/vidalia_lv.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/mg/vidalia_mg.po vidalia-0.2.15/pkg/win32/mg/vidalia_mg.po --- vidalia-0.2.10/pkg/win32/mg/vidalia_mg.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/mg/vidalia_mg.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/mi/vidalia_mi.po vidalia-0.2.15/pkg/win32/mi/vidalia_mi.po --- vidalia-0.2.10/pkg/win32/mi/vidalia_mi.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/mi/vidalia_mi.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/mk/vidalia_mk.po vidalia-0.2.15/pkg/win32/mk/vidalia_mk.po --- vidalia-0.2.10/pkg/win32/mk/vidalia_mk.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/mk/vidalia_mk.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ml/vidalia_ml.po vidalia-0.2.15/pkg/win32/ml/vidalia_ml.po --- vidalia-0.2.10/pkg/win32/ml/vidalia_ml.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ml/vidalia_ml.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/mn/vidalia_mn.po vidalia-0.2.15/pkg/win32/mn/vidalia_mn.po --- vidalia-0.2.10/pkg/win32/mn/vidalia_mn.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/mn/vidalia_mn.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/mr/vidalia_mr.po vidalia-0.2.15/pkg/win32/mr/vidalia_mr.po --- vidalia-0.2.10/pkg/win32/mr/vidalia_mr.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/mr/vidalia_mr.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ms/vidalia_ms.po vidalia-0.2.15/pkg/win32/ms/vidalia_ms.po --- vidalia-0.2.10/pkg/win32/ms/vidalia_ms.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ms/vidalia_ms.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/mt/vidalia_mt.po vidalia-0.2.15/pkg/win32/mt/vidalia_mt.po --- vidalia-0.2.10/pkg/win32/mt/vidalia_mt.po 2010-05-19 06:26:18.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/mt/vidalia_mt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/nah/vidalia_nah.po vidalia-0.2.15/pkg/win32/nah/vidalia_nah.po --- vidalia-0.2.10/pkg/win32/nah/vidalia_nah.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/nah/vidalia_nah.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/nap/vidalia_nap.po vidalia-0.2.15/pkg/win32/nap/vidalia_nap.po --- vidalia-0.2.10/pkg/win32/nap/vidalia_nap.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/nap/vidalia_nap.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/nb/vidalia_nb.po vidalia-0.2.15/pkg/win32/nb/vidalia_nb.po --- vidalia-0.2.10/pkg/win32/nb/vidalia_nb.po 2010-05-19 06:26:18.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/nb/vidalia_nb.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,260 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-12-26 17:42-0700\n" -"Last-Translator: Cato Auestad \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} oppsett" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" -"Denne veiledningen vil innstallere Tor, Vidalia, Privoxy og Torbutton.\n" -"\n" -"Tor er et system for å surfe internett anonymt, ved å anonymisere " -"internettlesingen og publiseringen din, lynmeldinger, IRC og mer. Vidalia er " -"et grafisk brukergrensesnitt som hjelper deg med å kontrollere, overvåke og " -"konfigurere Tor.\n" -"\n" -"Privoxy er en web proxy som hjelper deg med å filtere vekk reklame, bannere " -"og sprettvinduer for å beskytte din sikkerhet.\n" -"\n" -"Torbutton er en Firefox-utvidelse som tillater deg å kjapt bytte mellom å " -"aktivere og deaktivere anonym nettlesing.\n" -"\n" -"Hvis du har en tidligere versjon av Tor, Vidalia, Privoxy eller Firefox så " -"vær sikker på at de ikke kjører før du fortsetter med denne innstallasjonen.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Velkommen til ${BUNDLE_NAME} Oppsettveiledning" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} innstallasjonsdokumentasjon" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Innstalleringen er fullført.\n" -"Vennligst se https://www.torproject.org/docs/tor-doc-windows om hvordan du " -"skal konfigurere dine programmer til bruk med Tor.\n" -"\n" -"Hvis du innstallerte Torbutton trenger du å restarte Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Kjør innstallerte komponenter nå." - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia er et grafisk brukergrensesnitt som hjelper deg med å kontrollere, " -"overvåke og konfigurere Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Fjern ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} oppsett" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" -"Denne veiledningen vil vise deg innstallasjonen av Vidalia, et grafisk " -"brukergrensesnitt som hjelper deg med å kontrollere, overvåke og konfigurere " -"Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Velkommen til ${VIDALIA_NAME} Oppsettsveiledning" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} nettside" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia er et grafisk brukergrensesnitt som hjelper deg med å kontrollere, " -"overvåke og konfigurere Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Kjør på oppstart" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Automatisk kjør ${VIDALIA_NAME} på oppstart." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Legg til i Start-menyen" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Legg til ${VIDALIA_NAME} i din Start-meny." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Kjør ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor er et system for å surfe internett anonymt, ved å anonymisere din " -"internettlesing og publisering, lynmeldinger, IRC og mer." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Fjern ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Innstaller ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" -"Hvis du allerede har en Tor-konfigurasjonsfil.$\n" -"$\n" -"Vil du overskrive den med en standard konfigurasjonsfil?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dokumentasjon" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Innstaller ${TOR_NAME} dokumentasjon." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Legg til Start-meny" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Legg til ${TOR_NAME} i din Start-meny." - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" -"Privoxy er en web proxy som hjelper deg med å filtere vekk reklame, bannere " -"og sprettvinduer for å beskytte din sikkerhet." - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "Fjern ${PRIVOXY_DESC}." - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "Innstaller ${PRIVOXY_DESC}." - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "Legg til i Start-meny" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "Legg til ${PRIVOXY_NAME} i din Start-meny." - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "Kjør på oppstart" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "Automatisk kjør ${PRIVOXY_NAME} i oppstart." - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" -"Torbutton er en Firefox-utvidelse som tillater deg å kjapt bytte mellom å " -"aktivere og deaktivere anonym nettlesing." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Fjern ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Innstaller ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Legg til i Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Legg til ${TORBUTTON_DESC} i Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Firefox var ikke funnet på ditt system. Innstallerer ikke Torbutton." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Programdata" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Fjern lagret programdata og konfigurasjonsfiler." - -msgctxt "LanguageCode" -msgid "en" -msgstr "en" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox er ikke innstallert" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Vi anbefaler at du innstallerer Firefox før du fortsetter, for best " -"sikkerhet." - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Mozilla Firefox nettleseren er ikke innstallert på din maskin.\n" -"Tor vil fungere med andre nettlesere, som Internet Explorer, men\n" -"det er enklere og bruke med Firefox, som også gjør en bedre innsats med\n" -"å beskytte din anonymitet.\n" -"\n" -"Hvis du vil innstallere Firefox, vennligst trykk Avbryt og gå\n" -"til Firefox-nedlastingsside hos" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Når du er ferdig med å innstallere Firefox kan du kjøre Tor-innstallasjonen " -"på nytt.\n" -"\n" -"Eller, hvis du vil innstallere Tor uten Firefox, trykk Neste for å " -"fortsette." diff -Nru vidalia-0.2.10/pkg/win32/ne/vidalia_ne.po vidalia-0.2.15/pkg/win32/ne/vidalia_ne.po --- vidalia-0.2.10/pkg/win32/ne/vidalia_ne.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ne/vidalia_ne.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/nl/vidalia_nl.po vidalia-0.2.15/pkg/win32/nl/vidalia_nl.po --- vidalia-0.2.10/pkg/win32/nl/vidalia_nl.po 2009-09-29 23:47:32.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/nl/vidalia_nl.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,295 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-09-22 10:57+0000\n" -"Last-Translator: Flabber \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} setup" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Deze wizard zal u leiden door de installatie van Tor, Vidalia, Privoxy, and " -"Torbutton.\n" -"\n" -"Tor is een systeem om het internet anoniem te gebruiken, om anoniem te " -"surfen, te publiceren, berichten te sturen, IRC enzomeer. Vidalia is een " -"programma om Tor te configureren en op te volgen.\n" -"\n" -"Polipo is een net-proxy dat de performantie van het surfen met Tor verhoogt.\n" -"\n" -"Torbutten is een Firefox-extensie dat toelaat om snel te wisselen tussen " -"gewoon en anoniem surfen.\n" -"\n" -"Indien u eerder Tor, Vidalia, Polipo, of Firefox heeft geïnstalleerd, zorg " -"dan dat deze zijn afgesloten voordat u verder gaat met deze installatie.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Welkom bij de ${BUNDLE_NAME} Setup Wizard" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} installatie documentatie" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"De installatie is voltooid.\n" -"Bekijk alstublieft https://www.torproject.org/docs/tor-doc-windows voor meer " -"informatie over het configureren van applicaties voor gebruik via Tor.\n" -"\n" -"Indien u Torbutton heeft geïnstalleerd, dient u Firefox te herstarten." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Start de geïnstalleerde onderdelen nu" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia is een programma om Tor te configureren en op te volgen." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Verwijder ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} setup" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Deze wizard zal u leiden door de installatie van Vidalia, een programma om " -"Tor te configureren en op te volgen.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Welkom bij de ${VIDALIA_NAME} Setup Wizard" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} webpagina" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia is een programma om Tor te configureren en op te volgen." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Start automatisch" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Start ${VIDALIA_NAME} automatisch bij het opstarten van Windows." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Voeg toe aan Start Menu" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Voeg ${VIDALIA_NAME} toe aan uw Start menu." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Start ${VIDALIA_NAME} nu" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor is een systeem om het internet anoniem te gebruiken, om anoniem op het " -"net te surfen, te publiceren, berichten te sturen, IRC, en zo meer." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Verwijder ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Installeer ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"U heeft reeds een Tor configuratie bestand.$\n" -"$\n" -"Wilt u het overschrijven met het standaard voorbeeld configuratie bestand?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Documentatie" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Installeer ${TOR_NAME} documentatie." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Voeg toe aan Start Menu" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Voeg ${TOR_NAME} toe aan uw Start menu." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo is een net-proxy om de performantie van het surfen via Tor te " -"verhogen." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Verwijder ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Installeer ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Voeg toe aan Start Menu" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Voeg ${POLIPO_NAME} toe aan uw Start menu." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Start automatisch" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Start ${POLIPO_NAME} automatisch bij het opstarten van Windows." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton is een Firefox-extensie dat toelaat snel te wisselen tussen gewoon " -"en anoniem surfen." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Verwijder ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Installeer ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Voeg toe aan Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Voeg de ${TORBUTTON_DESC} extensie toe aan Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"Firefox werd niet gevonden op uw systeem. Torbutton wordt niet geïnstalleerd." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Toepassingsgegevens" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" -"Verwijder de opgeslagen toepassingsgegevens en de configuratiebestanden." - -msgctxt "LanguageCode" -msgid "en" -msgstr "nl" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox is niet geïnstalleerd." - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Wij raden U aan om Firefox te installeren voor de hoogste veiligheid " -"vooraleer verder te gaan." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Mozilla Firefox is niet geïnstalleerd op uw computer.\n" -"Tor werkt wel met andere programma's als Internet Explorer, maar \n" -"is gemakkellijker in gebruik met Firefox, dat daarenboven beter werkt om uw " -"anonimiteit te bewaren.\n" -"\n" -"Als U Firefox wilt installeren, druk op Annuleer, en ga \n" -"naar de Firefox-pagina op" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Als U klaar bent met de installatie van Firefox, \n" -"kan U het Tor-installatieprogramma opnieuw starten.\n" -"\n" -"Of, indien U Tor wil installeren zonder Firefox, druk \n" -"Volgende om verder te gaan." diff -Nru vidalia-0.2.10/pkg/win32/nn/vidalia_nn.po vidalia-0.2.15/pkg/win32/nn/vidalia_nn.po --- vidalia-0.2.10/pkg/win32/nn/vidalia_nn.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/nn/vidalia_nn.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/nso/vidalia_nso.po vidalia-0.2.15/pkg/win32/nso/vidalia_nso.po --- vidalia-0.2.10/pkg/win32/nso/vidalia_nso.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/nso/vidalia_nso.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/oc/vidalia_oc.po vidalia-0.2.15/pkg/win32/oc/vidalia_oc.po --- vidalia-0.2.10/pkg/win32/oc/vidalia_oc.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/oc/vidalia_oc.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/or/vidalia_or.po vidalia-0.2.15/pkg/win32/or/vidalia_or.po --- vidalia-0.2.10/pkg/win32/or/vidalia_or.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/or/vidalia_or.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/pa/vidalia_pa.po vidalia-0.2.15/pkg/win32/pa/vidalia_pa.po --- vidalia-0.2.10/pkg/win32/pa/vidalia_pa.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/pa/vidalia_pa.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/pap/vidalia_pap.po vidalia-0.2.15/pkg/win32/pap/vidalia_pap.po --- vidalia-0.2.10/pkg/win32/pap/vidalia_pap.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/pap/vidalia_pap.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/pl/vidalia_pl.po vidalia-0.2.15/pkg/win32/pl/vidalia_pl.po --- vidalia-0.2.10/pkg/win32/pl/vidalia_pl.po 2009-09-06 14:38:45.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/pl/vidalia_pl.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,304 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia Windows Installers\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-09-06 14:24+0000\n" -"Last-Translator: Lukasz Kieres \n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "Instalator ${BUNDLE_NAME}" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Kreator przeprowadzi Cię przez instalację Tora, Vidalii, Polipo oraz " -"Torbuttona.\n" -"\n" -"Tor jest systemem pozwalającym anonimowo surfować po internecie, pomaga " -"zachować anonimowość podczas przeglądania i publikacji stron www, używania " -"komunikatorów, IRC i innych. Vidalia jest graficznym interfejsem " -"użytkownika, który pomaga sterować, monitorować i konfigurować Tora.\n" -"\n" -"Polipi jest cache'ującym serwerem proxy, który pomaga zwiększyć wydajność " -"podczas przeglądania sieci z użycien Tora.\n" -"Torbutton jest rozszerzeniem Firefoxa, które umożliwa w szybki sposób " -"przełączanie się w tryb anonimowego surfowania.\n" -"\n" -"Jeśli poprzednio instalowałeś Tora, Vidalię, Polipo lub Firefoxa, upewnij " -"się, że żadne z nich nie jest w tej chwili uruchomione, zanim kontynuujesz " -"tę instalację.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Witaj w Kreatorze Instalacji ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Dokumentacja instalacji ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Instalacja zakończona.\n" -"Proszę zobaczyć https://www.torproject.org/docs/tor-doc-windows aby " -"dowiedzieć sić, jak skonfigurować aplikacje do współpracy z Torem.\n" -"\n" -"Jeśli instalowałeś Torbutton'a, będziesz musiał uruchomić ponownie Firefox'a." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Uruchom teraz zainstalowane komponenty." - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia jest graficznym interfejsem użytkownika, który pomaga sterować, " -"monitorować i konfigurować Tora." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Usuń ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "Instalator ${VIDALIA_NAME}" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Kreator przeprowadzi Cię przez proces instalacji Vidalii, graficznego " -"interfejsu użytkownika który umożliwia sterowanie, monitorowanie i " -"konfigurację Tora.\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Witaj w Kreatorze Instalacji ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Strona domowa ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia jest graficznym interfejsem użytkownika, który umożliwa sterowanie, " -"monitorowanie i konfigurację Tora." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Uruchom na starcie" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Automatycznie uruchamia ${VIDALIA_NAME} przy starcie systemu." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Dodaj do Menu Start" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Dodaje skrót ${VIDALIA_NAME} do Twojego Menu Start." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Uruchom ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor jest systemem umożliwiającym anonimowe użytkowanie Internetu, pomagając " -"pozostać Ci anonimowym podczas przeglądania stron www, wysyłania plików, " -"komunikacji, IRC i innych." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Usuń ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Instaluj ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Posiadasz już plik konfiguracyjny Tora.$\n" -"$\n" -"Czy chcesz nadpisać go przykładowym domyślnym plikiem konfiguracyjnym ?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dokumentacja" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Instaluj dokumentację ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Dodaj do Menu Start" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Dodaje ${TOR_NAME} do Twojego Menu Start" - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo jest cache'ującym serwerem proxy, który przyspiesza przeglądanie " -"sieci przy użyciu Tora." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Usuń ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Instaluj ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Dodaj do Menu Start" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Dodaje ${POLIPO_NAME} do Twojego Menu Start" - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Uruchom na starcie" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Automatycznie uruchamia ${POLIPO_NAME} na starcie systemu." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton jest rozszerzeniem Firefoxa, które umożliwia włączanie i " -"wyłączanie anonimowego przeglądania stron www w szybki sposób." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Usuń ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Instaluj ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Dodaj do Firefoxa" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Dodaje rozszerzenie ${TORBUTTON_DESC} do Firefoxa." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"Firefox nie został znaleziony w Twoim systemie. Torbutton nie zostanie " -"zainstalowany.Firefox nie został znaleziony w systemie. Instalacja " -"Torbuttona zaniechana." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Dane aplikacji" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Usuń dane aplikacji oraz pliki konfiguracyjne." - -msgctxt "LanguageCode" -msgid "en" -msgstr "pl" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox nie jest zainstalowany" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Zalecamy zainstalowanie Firefoxa zanim kontynuujesz, dla zachowania " -"najlepszego bezpieczeństwa." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Przeglądarka Mozilla Firefox nie jest zainstalowana na tym komputerze.\n" -"Tor będzie działać z innymi przeglądarkami, jak Internet Explorer, lecz\n" -"jest łatwiejszy w użyciu z Firefoxem, który również pomaga lepiej chronić " -"Twoją anonimowość.\n" -"\n" -"Jeśli chcesz zainstalować Firefoxa, proszę nacisnąć Anuluj, i przejść \n" -"do strony Firefoxa" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Gdy zakończysz instalowanie Firefoxa, możesz ponownie uruchomić instalatora " -"Tor.\n" -"\n" -"Albo, jeśli preferujesz zainstalować Tora bez Firefoxa, po prostu kliknij " -"Kontynuuj." diff -Nru vidalia-0.2.10/pkg/win32/pms/vidalia_pms.po vidalia-0.2.15/pkg/win32/pms/vidalia_pms.po --- vidalia-0.2.10/pkg/win32/pms/vidalia_pms.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/pms/vidalia_pms.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/af/vidalia_af.po vidalia-0.2.15/pkg/win32/po/af/vidalia_af.po --- vidalia-0.2.10/pkg/win32/po/af/vidalia_af.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/af/vidalia_af.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ak/vidalia_ak.po vidalia-0.2.15/pkg/win32/po/ak/vidalia_ak.po --- vidalia-0.2.10/pkg/win32/po/ak/vidalia_ak.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ak/vidalia_ak.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/am/vidalia_am.po vidalia-0.2.15/pkg/win32/po/am/vidalia_am.po --- vidalia-0.2.10/pkg/win32/po/am/vidalia_am.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/am/vidalia_am.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ar/vidalia_ar.po vidalia-0.2.15/pkg/win32/po/ar/vidalia_ar.po --- vidalia-0.2.10/pkg/win32/po/ar/vidalia_ar.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ar/vidalia_ar.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,281 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "إعداد {BUNDLE_NAME}$" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"هذه النافذة سترشدك خلال تنصيب تور وفيداليا وPolipo ومفتاح تور.\n" +"\n" +"تور عبارة عن برنامج لاستخدام الانترنت مع الحفاظ على مجهولية الهوية، بحيث يساعد في إخفاء هويتك أثناء التصفح والنشر على الانترنت، وبرامج التراسل الفوري وغيرها. فيداليا واجهة استخدام تساعدك في التحكم والمراقبة وضبط إعدادات تور.\n" +"\n" +"Polipo وكيل (بروكسي) انترنت يستخدم لحفظ ملفات مؤقتة تساعد في زيادة سرعة التصفح أثناء استخدام تور.\n" +"\n" +"مفتاح تور(Torbutton) هو إضافة لفايرفوكس تسمح لك بتشغيل أو تعطيل إخفاء الهوية أثناء التصفح وبسرعة وسهولة.\n" +"\n" +"إن كنت قد نصبت تور أو فيداليا أو Polipo أو فايرفوكس في السابق يرجى التأكد من أن أنهم غير مشغلين أثناء تنصيب البرنامج.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "أهلاً بكم إلى معالج إعداد ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "مستندات تنصيب ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"اكتملت عملية التنصيب.\n" +"يرجى مراجعة https://www.torproject.org/docs/tor-doc-windows لتعلم كيفية ضبط إعدادات تطبيقاتك لاستخدام تور.\n" +"\n" +"إن كنت قد نصبت مفتاح تور سيتوجب عليك إعادة تشغيل فايرفوكس." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "قم بتشغيل البرنامج الآن" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"فيداليا هو واجهة استخدام تساعدك على التحكم والمراقبة وضبط إعدادات تور." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "إزالة ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} إعداد" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"سيرشدك معالج الإعداد هذا خلال عملية تنصيب فيداليا، وهو واجهة استخدام تساعدك على التحكم والمراقبة وضبط إعدادات تور.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "أهلاً لكم في معالج إعداد ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} الصفحة الرئيسية" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "فيداليا هي واجهة مستخدم تساعدك على التحكم ومراقبة وضبط تور." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "تشغيل عند إقلاع النظام" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "قم بتشغيل ${VIDALIA_NAME} بشكل تلقائي عند الإقلاع." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "أضف إلى قائمة إبدأ" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "أضف ${VIDALIA_NAME} إلى قائمة إبدأ" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "قم بتشغيل ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"تور عبارة عن برنامج لاستخدام الانترنت مع الحفاظ على مجهولية الهوية، بحيث " +"يساعد في إخفاء هويتك أثناء التصفح والنشر على الانترنت، وبرامج التراسل الفوري" +" وغيرها." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "إزالة ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "إعداد ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"لديك ملف ضبط إعدادات تور بشكل مسبق.$\n" +"$\n" +"هل تريد الكتابة فوقه بعينة ملف الإعداد الافتراضية؟" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "ملفات متعلقة" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "تنصيب مستندات ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "أضف إلى قائمة إبدأ" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "أضف ${TOR_NAME} إلى قائمة إبدأ" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo وكيل (بروكسي) انترنت يستخدم لحفظ ملفات مؤقتة تساعد في زيادة سرعة " +"التصفح أثناء استخدام تور." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "إزالة ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "تنصيب ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "أضف إلى قائمة إبدأ" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "أضف ${POLIPO_NAME} إلى قائمة إبدأ" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "تشغيل عند إقلاع النظام" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "تشغيل ${POLIPO_NAME} عند إقلاع الحاسب." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"مفتاح تور هو إضافة لفايرفوكس تسمح لك بتشغيل أو تعطيل إخفاء الهوية أثناء " +"التصفح بسرعة وسهولة." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "إزالة ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "إعداد ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "أضف إلى فايرفوكس" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "أضف ملحق ${TORBUTTON_DESC} للفايرفوكس" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "لم نعثر على فايرفوكس على جهازك. لن يتم تنصيب مفتاح تور (Torbutton)." + +msgctxt "AppData" +msgid "Application Data" +msgstr "بيانات التطبيق" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "إمسح بيانات التطبيق المحفوظة وملفات الإعدادات." + +msgctxt "LanguageCode" +msgid "en" +msgstr "إنكليزي" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "فايرفوكس غير مثبت" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "ينصح بتثبيت فايرفوكس قبل الإستمرار، لأفضل حماية." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"متصفح موزيلا فايفوكس غير مثبت في حاسوبك.\n" +"تور يعمل مع باقي المتصفحات، مثل الإنترنت إكسبلورر، ولكن\n" +"من السهل إسنعماله مع الفايرفوكس، الذي يقوم بحماية هويتك بشكل أفضل.\n" +"\n" +"إذا اردت تنصيب فايرفوكس, رجاءاً إضغط على إلغاء، ثم إذهب \n" +"إلى صفحة تحميل فايرفوكس على" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"بعد اتمام تنصيب فايرفوكس، يمكنك تشغيل\n" +"ملف تنصيب تور مرة أخرى.\n" +"\n" +"أو إذا كنت تفضل تثبيت تور بدون فايرفوكس، ببساطة\n" +"إضغط \"التالي\" للاستمرار" + + diff -Nru vidalia-0.2.10/pkg/win32/po/arn/vidalia_arn.po vidalia-0.2.15/pkg/win32/po/arn/vidalia_arn.po --- vidalia-0.2.10/pkg/win32/po/arn/vidalia_arn.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/arn/vidalia_arn.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: arn\n" +"Plural-Forms: nplurals=2; plural=n > 1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ast/vidalia_ast.po vidalia-0.2.15/pkg/win32/po/ast/vidalia_ast.po --- vidalia-0.2.10/pkg/win32/po/ast/vidalia_ast.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ast/vidalia_ast.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/az/vidalia_az.po vidalia-0.2.15/pkg/win32/po/az/vidalia_az.po --- vidalia-0.2.10/pkg/win32/po/az/vidalia_az.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/az/vidalia_az.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,281 @@ +# +# Ulviyya Guliyeva , 2011. +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} quraşdırılması" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Bu proqram Tor, Vidalia. Polipo və Tordüyməsi yükləmələri ərzində sizə bələdçilik edəcək.⏎ \n" +"⏎ \n" +"Tor İnternetdən anonim istifadə etmək üçün sistemdir. Sizə anonim veb səyyahları və dərcləri, təcili məsajları, İRC və daha çoxunda istifadəyə kömək edir.Vidalia GUİ olmaqla sizə monitoru və Toru təşkil etməkdə kömək edir.⏎ \n" +"⏎ \n" +"Polipo Tor şəbəkəsinin işini gücləndirməyə malik bir sistemdir.⏎ \n" +"⏎ \n" +"Tor düyməsi Firefoxla sizə hüquqi və ya qeyri hüquqi gizli səyyahlarda axtarış aparasınız.⏎ \n" +"⏎ \n" +"Əgər sizdə əvvəlcədən yüklənmiş Tor, Vidalia, Polipo və ya Firefox varsa əmin olunki bu yükləmə getdikdə onlar davaç etməsinlər.⏎ \n" +"⏎ \n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Proqram yükləmələrinə xoş gəldiniz ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Quraşdırma sənədləşməsi ${TOR_NAME} " + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Yüklənmə tamamlandı.\n" +"Zəhmət olmasa Tordan istifadə etmək üçün ərizələrinizi necə hazırlamağı burdan öyrənin https://www.torproject.org/docs/tor-doc-windows \n" +"\n" +"Əgər siz Tor düyməsin yükləmisinizsə onda siz Firefox-a yenidən başlamağa ehtiyac duyacaqsınız." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Yükləməniindi başla" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia GUİ olmaqla sizə monitoru və Toru təşkil etməkdə kömək edir." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Sil ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} qurğu" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Bu proqram GUİ nin qurmalarından olan Vidali yükləmələrində sizə bələdçilik edəcək və sizin idarə etmənizə, monitorunuza və Torun təşkilinə kömək edəcəkdir.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "$ {VIDALIA_NAME} Proqram yükləmələrinə xoş gəldiniz" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} əsas səhifə" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia GUİ olmaqlaq sizə monitoru və Toru təşkil etməkdə kömək edir." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "İşə salarkəndə davam etsin" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "İşə salanda ${VIDALIA_NAME} avtomatik davam etsin." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Başlamaq menyusunu əlavə et" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Başlamaq menyunuza ${VIDALIA_NAME} əlavə edin." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "${VIDALIA_NAME} Davam edir" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor İnternetdən anonim istifadə etmək üçün sistemdir. Sizə anonim veb " +"səyyahları və dərcləri, təcili məsajları, İRC və daha çoxunda istifadəyə " +"kömək edir." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "${TOR_DESC} sil." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "${TOR_DESC} quraşdır." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Siz Tor konfiqurasiyası faylına artıq maliksiniz.$\n" +"$\n" +"Siz tipik konfiqurasiya faylı ilə bunun üstünə yazmaq istəyirsiniz?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Sənədləşmə" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Sənədləşməni ${TOR_NAME} quraşdır." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Başlamaq menyusunu əlavə et" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Başlamaq menyunuza ${TOR_NAME} əlavə et." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "Polipo Tor şəbəkəsinin işini gücləndirməyə malik bir sistemdir." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "${POLIPO_DESC} Sil." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "${POLIPO_DESC} Yüklə." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Başlanğıc Menyunu əlavə et" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Başlanğıc menyunuza əlavə edin ${POLIPO_NAME}." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "İşə salarkəndə davam etsin" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Avtomatik işə salarkən ${POLIPO_NAME} davam etsin." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Tordüyməsi Firefox əlavəsidir.o imkan verirki siz qadağa qoyulmuş veb " +"səyyahlara daxil ola biləsiniz." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "${TORBUTTON_DESC} sil." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "${TORBUTTON_DESC} quraşdır." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Firefox əlavə et." + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Firefox-a ${TORBUTTON_DESC} əlavəsini daxil edin." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "Firefox sizin sisteminizdə tapılmadı. Tordüyməsi yüklənmir." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Tətbiqi Məlumat" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Saxlanılan tətbiqi məlumatı və konfiqurasiya fayllarını silin." + +msgctxt "LanguageCode" +msgid "en" +msgstr "en" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox yüklənmədi." + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Biz məsləhət görürük ki, ən yaxşı təhlükəsizlik üçün davam etməmişdən əvvəl " +"Firefox-u yükləyəsiniz." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Mozilla Firefox Veb səyyahı sizin kompüterinizdə quraşdırılmayıb.\n" +"Tor başqa səyyahlarla işləyəcək, Internet Explorer kimi, amma\n" +"sizin anonimliyinizin qorumağın daha asan yolu Firefox-dan\n" +" istifadə etməkdir.\n" +"\n" +"Əgər siz Firefox-u quraşdırmaq istəyirsinizsə, zəhmət olmasa Ləğv etə vur\n" +"sonra Firefox u yüklyəcəyiniz pəncərəyə gedin" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +" Firefoxu yüklədikdə siz bir dəfədə yenidən\n" +" Tor qurgusunu davam etdirə bilərsiniz.\n" +"\n" +"Və ya əgər siz Firefox-suz Tor quraşdırmağı üstün tutardınızsa, sadəcəSonrakı -nı klikləyərək davam edə bilərsiniz." + + diff -Nru vidalia-0.2.10/pkg/win32/po/be/vidalia_be.po vidalia-0.2.15/pkg/win32/po/be/vidalia_be.po --- vidalia-0.2.10/pkg/win32/po/be/vidalia_be.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/be/vidalia_be.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/bg/vidalia_bg.po vidalia-0.2.15/pkg/win32/po/bg/vidalia_bg.po --- vidalia-0.2.10/pkg/win32/po/bg/vidalia_bg.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/bg/vidalia_bg.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/bn/vidalia_bn.po vidalia-0.2.15/pkg/win32/po/bn/vidalia_bn.po --- vidalia-0.2.10/pkg/win32/po/bn/vidalia_bn.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/bn/vidalia_bn.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/bn_IN/vidalia_bn_IN.po vidalia-0.2.15/pkg/win32/po/bn_IN/vidalia_bn_IN.po --- vidalia-0.2.10/pkg/win32/po/bn_IN/vidalia_bn_IN.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/bn_IN/vidalia_bn_IN.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/bo/vidalia_bo.po vidalia-0.2.15/pkg/win32/po/bo/vidalia_bo.po --- vidalia-0.2.10/pkg/win32/po/bo/vidalia_bo.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/bo/vidalia_bo.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/br/vidalia_br.po vidalia-0.2.15/pkg/win32/po/br/vidalia_br.po --- vidalia-0.2.10/pkg/win32/po/br/vidalia_br.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/br/vidalia_br.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/bs/vidalia_bs.po vidalia-0.2.15/pkg/win32/po/bs/vidalia_bs.po --- vidalia-0.2.10/pkg/win32/po/bs/vidalia_bs.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/bs/vidalia_bs.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/ca/vidalia_ca.po vidalia-0.2.15/pkg/win32/po/ca/vidalia_ca.po --- vidalia-0.2.10/pkg/win32/po/ca/vidalia_ca.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ca/vidalia_ca.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,273 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} instal·lació" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Benvinguts al ${BUNDLE_NAME} Setup Wizard" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} documentació de la instal·lació" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"La instal·lació s'ha completat.\n" +"Siusplau mira https://www.torproject.org/docs/tor-doc-windows per coneixer com configuar les teves aplicacions utilitzant Tor.\n" +"\n" +"Si tens instal·lat Torbutton, necesites reiniciart Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Iniciant components instal·lats" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia es una aplicació GUI que t'ajuda a monitorar, controlar, i " +"configurar Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Esborra ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} setup" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Això et guiara per la instalació de Vidalia, una aplicació GUI que t'ajudara a controlar, monitorar, i configurar Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Benvinguts a la guia d'instal·lació de ${VIDALIA_NAME} " + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Pàgina principal de ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia es una aplicació GUI que t'ajuda a controlar, monitorar, i " +"configurar Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Iniciar al engegar" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Inicia ${VIDALIA_NAME} automaticament al engegar." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Afegeig al menú d'inici" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Afegeig ${VIDALIA_NAME} al teu menu d'inici." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Inicia ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor es un sistema per utilitzar Internet anonimament,t'ajuda a anonimar el " +"teu navegador i publicar, fer chat, IRC, i molt més." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Eliminar ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Instal·lar ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Ja tenies un arxiu de configuració Tor.$\n" +"$\n" +"El vols sobreescriure amb l'arxiu de configuracio per defecte?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Documentació" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Instal·lar documentació ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Afegir al menú d'inici" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Afegir ${TOR_NAME} al teu menu d'inici." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton es una extensió Firefox que et permet activar o desactivar " +"rapidament el teu anonimat al navegar la web." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Eliminar ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Instal·lar ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Afegir a Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Afegir la extensió ${TORBUTTON_DESC} al Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"No s'ha trobat Firefox en el teu sistema. No s'ha instal·lat Torbutton." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Dades de la aplicació" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Eliminar arxiu de dades de la instalació i configuració." + +msgctxt "LanguageCode" +msgid "en" +msgstr "en" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox no está instal·lat" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Et recomanem que instalis Firefox abans de continuar, per més seguretat." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"El navegador Mozilla Firefox no está instal·lat al teu ordinador. \n" +"Tor pot treballar amb altres navegadors, com internet explorer, pero \n" +"es mes facil amb Firefox, amb el que treballa millor per \n" +"protegir el teu anonimat.\n" +"\n" +"Si vols instal·lar Firefox, siusplau cancela , i despres ves\n" +"a la pàgina de descarregues de Firefox a" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Quan tinguis Firefox instal·lat al teu ordinador, pots continuar\n" +"amb la instal·lació de Tor.\n" +"\n" +"O si prefereixes continuar amb la instal·lació de Tor sense Firefox\n" +"prem Next per continuar." + + diff -Nru vidalia-0.2.10/pkg/win32/po/cs/vidalia_cs.po vidalia-0.2.15/pkg/win32/po/cs/vidalia_cs.po --- vidalia-0.2.10/pkg/win32/po/cs/vidalia_cs.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/cs/vidalia_cs.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,278 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "Instalace ${BUNDLE_NAME}" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Vítejte v instalačním průvodci ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Instalace dokumentace aplikace ${TOR_NAME} " + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Instalace je dokončena.\n" +"Prosím navštivte https://www.torproject.org/docs/tor-doc-windows kde získáte více informací, jak nakonfigurovat aplikace tak, aby používaly Tor.\n" +"\n" +"Jestliže jste instalovali Torbutton, je nutné restartovat Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Spustit nainstalované komponenty nyní" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia je uživatelské rozhraní, které vám pomůže ovládat, monitorovat a " +"konfigurovat Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Odstranit ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "Instalace aplikace ${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Tento průvodce vás provede instalací aplikace Vidalia, uživatelského rozhraní, které vám pomůže ovládat, monitorovat a konfigurovat Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Vítejte v instalačním průvodci aplikace ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Domovská stránka aplikace ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia je uživatelské rozhraní, které vám pomůže ovládat, monitorovat a " +"konfigurovat Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Spustit při startu" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Automaticky spustit aplikaci ${VIDALIA_NAME} při startu." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Přidat do Nabídky Start" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Přidat aplikaci ${VIDALIA_NAME} do vaší Nabídky start." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Spustit aplikaci ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor je systém umožňující používat internet anonymně, který vám pomůže " +"anonymně surfovat webem a publikovat informace, používat instant messaging, " +"IRC a mnohem více." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Odstranit ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Instalovat ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Vy již máte Tor konfigurační soubor.$\n" +"$\n" +"Chcete jej přepsat defaultním ukázkovým konfiguračním souborem?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Dokumentace" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Instalovat ${TOR_NAME} dokumentaci." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Přidat do Nabídky start" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Přidat ${TOR_NAME} do vaší Nabídky start." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo je proxy web, který zvyšuje výkon z prohlížení webových stránek " +"prostřednictvím Tor." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Odstranit ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Instalovat ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Přidat do Nabídky Start" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Přidat ${POLIPO_NAME} do vaší Nabídky start." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Spustit při startu" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Automaticky spustit ${POLIPO_NAME} při startu." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton je rozšíření Firefoxu, které vám umožní jednoduše povolit, nebo " +"zakázat anonymní surfování webem." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Odstranit ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Instalovat ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Přidat do Firefoxu" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Přidat rozšíření ${TORBUTTON_DESC} do Firefoxu." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "Firefox nebyl nalezen ve vašem systému. Torbutton nebude instalován." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Data Aplikací" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Odstranit uložená data aplikací a konfigurační soubory." + +msgctxt "LanguageCode" +msgid "en" +msgstr "cs" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Není nainstalován Firefox." + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Než budete pokračovat, doporučujeme nainstalovat prohlížeč Firefox, pro " +"vyšší bezpečnost." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Webový prohlížeč Mozilla Firefox není ve vašem systému nainstalován.\n" +"Tor pracuje i s jinými prohlížeči, jako je např. Internet Explorer,\n" +"ale jeho použití je s Firefoxem snadnější, ten také lépe ochrání\n" +"vaši anonymitu.\n" +"\n" +"Jestli si přejete nainstalovat Firefox, klikněte na Zrušit a jděte\n" +"na stránku stažení Firefoxu na" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Až dokončíte instalaci Firefoxu, můžete Tor instalátor spustit\n" +"ještě jednou.\n" +"\n" +"Pokud preferujete instalovat Tor bez prohlížeče Firefox, jednoduše\n" +"klikněte na Pokračovat." + + diff -Nru vidalia-0.2.10/pkg/win32/po/csb/vidalia_csb.po vidalia-0.2.15/pkg/win32/po/csb/vidalia_csb.po --- vidalia-0.2.10/pkg/win32/po/csb/vidalia_csb.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/csb/vidalia_csb.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: csb\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/cy/vidalia_cy.po vidalia-0.2.15/pkg/win32/po/cy/vidalia_cy.po --- vidalia-0.2.10/pkg/win32/po/cy/vidalia_cy.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/cy/vidalia_cy.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,261 @@ +# +# cymro , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-05-15 14:48+0000\n" +"Last-Translator: cymro \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "$ {BUNDLE_NAME} gosodiad" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Bydd y dewin yma yn eich arweini chi drwy osod Tor, Vidalia, Polipo, a Torbutton.\n" +"\n" +"Mae Tor yn system ar gyfer defnyddio'r Rhyngrwyd yn ddi-enw, gan eich helpu anhysbyseddu pori'r We a chyhoeddi, negeseuon gwib, IRC, a mwy. Mae Vidalia yn GUI sy'n eich helpu chi reoli, monitro, a ffurfweddu Tor.\n" +"\n" +"Mae Polipo yn storfa procsi gwe sy'n helpu perfformiad gynnydd pori'r we drwy Tor.\n" +"\n" +"Mae Torbutton yn estyniad Firefox sy'n caniatáu i chi yn sydun i galluogi neu analluogi pori'r we yn ddienw.\n" +"\n" +"Os ydych chi eisoes wedi gosod Tor, Vidalia, Polipo, neu Firefox, gwnewch yn siwr nad ydynt yn cael eu cynnal cyn parhau gosodiad hwn.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Croeso i ${BUNDLE_NAME} Dewin Gosod" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} ddogfennaeth gosod" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Gosodiad yn gyflawn.\n" +"Gweler https://www.torproject.org/docs/tor-doc-windows i ddysgu sut i ffurfweddu eich ceisiadau i ddefnyddio Tor.\n" +"\n" +"Os rydych wedi gosod Torbutton, bydd angen i chi ailddechrau Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Rhedwch cydrannau sydd wedi cael ei oosod yn awr" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Mae Vidalia yn GUI sy'n eich helpu i reoli, monitro, a ffurfweddu Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Tynnu ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} gosodiad" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Bydd y dewin yma yn eich arwain chi trwy osod Vidalia, GUI sy'n eich helpu i reoli, monitro, a ffurfweddu Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Croeso i'r ${VIDALIA_NAME} Dewin Gosod" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "$ {VIDALIA_NAME} hafan" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Mae Vidalia yn GUI sy'n eich helpu i reoli, monitro, a ffurfweddu Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Rheded Ar Gosodiad" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Rhedeg ${VIDALIA_NAME} yn awtamatig wrth gosod." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Ychwanegu at Ddewislen Cychwyn" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/da/vidalia_da.po vidalia-0.2.15/pkg/win32/po/da/vidalia_da.po --- vidalia-0.2.10/pkg/win32/po/da/vidalia_da.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/da/vidalia_da.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,310 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2009-10-01 09:16+0000\n" +"Last-Translator: Manuel Ojeda \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +# Not much to translate. +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} setup" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" +"Denne guide fører dig gennem installationen af Tor, Vidalia, Privoxy, og " +"Torbutton.\n" +"\n" +"Tor er et system til at bruge internettet anonymt, hjælpe dig med at " +"anonymisere internet browsing og udgivning, instant messaging, IRC, og meget " +"mere. Vidalia er en GUI, som hjælper med at styre, overvåge og konfigurere " +"Tor.\n" +"\n" +"Privoxy er en filtrering web proxy, der beskytter dit privatliv og hjælper " +"med at fjerne annoncer, bannere og popups.\n" +"\n" +"Torbutton er en Firefox udvidelse, som giver dig mulighed for hurtigt at " +"aktivere eller deaktivere anonyme webbrowsing.\n" +"\n" +"Hvis du tidligere har installeret Tor, Vidalia, Privoxy, eller Firefox, skal " +"du sikre, at de ikke kører, før du fortsætter denne installation.\n" +"\n" +"$_CLICK" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Velkommen til ${BUNDLE_NAME} Setup Guide" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} installations dokumentation" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Installationen er fuldført.\n" +"Se her https://www.torproject.org/docs/tor-doc-windows for at lære hvordan " +"du konfigurerer dine programmer til at bruge Tor.\n" +"\n" +"Hvis du har installeret Torbutton, skal du genstarte Firefox." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Kør installerede komponenter nu" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia er en grafisk brugergrænseflade som hjælper dig kontrollere, " +"overvåge og konfigurere Tor." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Fjern ${VIDALIA_DESC}." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} setup" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" +"Denne guide fører dig gennem installationen af Vidalia, en grafisk " +"brugergrænseflade, der hjælper med at styre, overvåge og konfigurere Tor.\n" +"\n" +"$_CLICK" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Velkommen til ${VIDALIA_NAME} Setup Guide" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} hjemmeside" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia er en grafisk brugergrænseflade der hjælper dig kontrollere, " +"overvåge og konfigurere Tor." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Kør ved opstart" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Kør automatisk ${VIDALIA_NAME} ved opstart." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Tilføj til Start Menuen" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Tilføj ${VIDALIA_NAME} til din Start menu." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Kør ${VIDALIA_NAME}" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor er et system til at bruge internettet anonymt, hjælpe dig med at " +"anonymisere web browsing og udgivning, instant messaging, IRC, og meget " +"mere." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Fjern ${TOR_DESC}." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Installer ${TOR_DESC}." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" +"Du har allerede en Tor konfigurations fil.$\n" +"$\n" +"Ønsker du at overskrive den med den standard prøve konfigurations fil?" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Dokumentation" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Installer ${TOR_NAME} dokumentation" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Tilføj til Start menuen" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Tilføj ${TOR_NAME} til din Start menu." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" +"Privoxy er en filtrering web proxy, der beskytter dit privatliv og hjælper " +"med at fjerne annoncer, bannere og popups." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "Fjern ${PRIVOXY_DESC}." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "Installer ${PRIVOXY_DESC}." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "Tilføj til Start Menuen" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "Tilføj ${PRIVOXY_NAME} til din Start menu." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "Kør ved opstart" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "Kør automatisk ${PRIVOXY_NAME} ved opstart." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" +"Torbutton er en Firefox udvidelse, som giver dig mulighed for hurtigt at " +"aktivere eller deaktivere anonymt webbrowsing." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Fjern ${TORBUTTON_DESC}." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Installer ${TORBUTTON_DESC}." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Tilføj til Firefox" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Tilføj ${TORBUTTON_DESC} udvidelsen til Firefox." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "Firefox blev ikke fundet på dit system. Installerer ikke Torbutton." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "AppData" +msgid "Application Data" +msgstr "Program Data" + +# Remove saved application data and configuration files. +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Fjern gemte program data og konfigurations filer." + +# Cant translate languagecode? EN=EN ; DA=DK ? +# Remove saved application data and configuration files. +msgctxt "LanguageCode" +msgid "en" +msgstr "en" + +# Remove saved application data and configuration files. +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox er ikke installeret." + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Vi foreslår at du installere Firefox før du fortsætter, for bedre sikkerhed." + +# You should check the \NewLine markers +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Mozilla Firefox web browser er ikke installeret på din computer.\n" +"Tor kan arbejde sammen med andre browsere, såsom Internet Explorer, men\n" +"er nemmere at bruge med Firefox, som også gør et bedre stykke arbejde\n" +"med at beskytter din anonymitet.\n" +"\n" +"Hvis du ønsker at installere Firefox, skal du trykke på Annuller og derefter " +"gå\n" +"til Firefox download siden på" + +# Translated by Manuel Ojeda - ojeda@ojeda.dk +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Når du er færdig med at installerer Firefox, kan du igen køre Tor " +"installationen.\n" +"\n" +"Eller, hvis du foretrækker at installere Tor uden Firefox, tryk på Næste for " +"at fortsætte." diff -Nru vidalia-0.2.10/pkg/win32/po/de/vidalia_de.po vidalia-0.2.15/pkg/win32/po/de/vidalia_de.po --- vidalia-0.2.10/pkg/win32/po/de/vidalia_de.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/de/vidalia_de.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,287 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} Setup" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Dieser Assistent wird Sie durch die Installation von Tor, Vidalia, Polipo und Torbutton begleiten.\n" +"\n" +"Tor ist ein System, um das Internet anonym zu nutzen. Es anonymisiert das Browsen, das Veröffentlichen von Inhalten, Instant Messaging, IRC, usw. Vidalia ist eine Oberfläche zur Einrichtung, Steuerung und Überwachung von Tor.\n" +"\n" +"Polipo ist ein filternder Webproxy, welcher die Leistung des Webbrowsens mittels Tor erhöht.\n" +"\n" +"Torbutton ist eine Erweiterung für Firefox, die das schnelle Ein- und Ausschalten des anonymes Webbrowsens ermöglicht.\n" +"\n" +"Sollten Sie Tor, Vidalia, Polipo oder Firefox bereits früher installiert haben, stellen Sie sicher, dass diese Programme nicht laufen, bevor Sie die Installation fortsetzen.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Willkommen beim ${BUNDLE_NAME} Installations-Assistent" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} Installations-Dokumentation" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Die Installation ist abgeschlossen.\n" +"Bitte besuchen Sie https://www.torproject.org/docs/tor-doc-windows um zu erfahren, wie Sie Ihre Anwendungen zur Benutzung mit Tor einrichten können.\n" +"\n" +"Sollten Sie Torbutton installiert haben, müssen Sie Firefox neu starten." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Installierte Anwendungen jetzt starten" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia ist eine Oberfläche zur Einrichtung, Steuerung und Überwachung von " +"Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Entferne ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} Setup" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Dieser Assistent führt Sie durch die Installation von ${VIDALIA_DESC}.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Willkommen beim ${VIDALIA_NAME} Installations-Assistent" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} Webseite" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia ist eine Oberfläche zur Einrichtung, Steuerung und Überwachung von " +"Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Beim Systemstart ausführen" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "${VIDALIA_NAME} beim Systemstart automatisch ausführen." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Zum Startmenü hinzufügen" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "${VIDALIA_NAME} zu Ihrem Startmenü hinzufügen." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "${VIDALIA_NAME} jetzt starten" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor ist ein System, um das Internet anonym zu nutzen. Es anonymisiert das " +"Webbrowsen, das Veröffentlichen von Inhalten, Instant Messaging, IRC, usw." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Entferne ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Installiere ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Sie haben bereits eine Tor Konfigurationsdatei.$\n" +"$\n" +"Soll diese mit der allgemeinen Beispiel-Konfigurationsdatei überschrieben werden?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Dokumentation" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Installiere ${TOR_NAME} Dokumentation." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Zum Startmenü hinzufügen" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "${TOR_NAME} zu Ihrem Startmenü hinzufügen." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo ist ein speichernder Web-Proxy, der die Leistung des Webbrowsens " +"durch Tor erhöht." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Entferne ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Installiere ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Zum Startmenü hinzufügen" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "${POLIPO_NAME} zu Ihrem Startmenü hinzufügen." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Beim Systemstart ausführen" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "${POLIPO_NAME} beim Systemstart automatisch ausführen." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton ist eine Erweiterung für Firefox, die das schnelle Ein- und " +"Ausschalten des anonymen Webbrowsens ermöglicht." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Entferne ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Installiere ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Zu Firefox hinzufügen" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Die ${TORBUTTON_DESC}-Erweiterung zu Firefox hinzufügen." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Firefox konnte nicht gefunden werden. Torbutton wird nicht installiert." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Anwendungsdaten" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Entferne gespeicherte Anwendungsdaten und Konfigurationsdateien." + +msgctxt "LanguageCode" +msgid "en" +msgstr "de" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox ist nicht installiert" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Für die maximale Sicherheit empfehlen wir, Firefox zu installieren, bevor " +"Sie fortfahren. " + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Der Mozilla Firefox-Browser ist auf Ihrem Computer nicht installiert.\n" +"Tor arbeitet mit anderen Browsers, wie dem Internet Explorer zusammen, aber\n" +"ist einfacher mit Firefox zu nutzen, der zudem besser\n" +"Ihre Anonymität schützt.\n" +"\n" +"Wenn Sie Firefox installieren wollen, klicken Sie bitte auf Abbrechen und besuchen\n" +"Sie anschliessend die Firefox Downloadseite unter" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Wenn Sie Firefox installiert haben, können Sie das\n" +" Tor Installationsprogramm erneut ausführen.\n" +"\n" +"Falls Sie es vorziehen, Tor ohne Firefox zu installieren, klicken\n" +"Sie einfach auf Weiter," + + diff -Nru vidalia-0.2.10/pkg/win32/po/de_AT/vidalia_de_AT.po vidalia-0.2.15/pkg/win32/po/de_AT/vidalia_de_AT.po --- vidalia-0.2.10/pkg/win32/po/de_AT/vidalia_de_AT.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/de_AT/vidalia_de_AT.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,206 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/de_CH/vidalia_de_CH.po vidalia-0.2.15/pkg/win32/po/de_CH/vidalia_de_CH.po --- vidalia-0.2.10/pkg/win32/po/de_CH/vidalia_de_CH.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/de_CH/vidalia_de_CH.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/de_DE/vidalia_de_DE.po vidalia-0.2.15/pkg/win32/po/de_DE/vidalia_de_DE.po --- vidalia-0.2.10/pkg/win32/po/de_DE/vidalia_de_DE.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/de_DE/vidalia_de_DE.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/dz/vidalia_dz.po vidalia-0.2.15/pkg/win32/po/dz/vidalia_dz.po --- vidalia-0.2.10/pkg/win32/po/dz/vidalia_dz.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/dz/vidalia_dz.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dz\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/el/vidalia_el.po vidalia-0.2.15/pkg/win32/po/el/vidalia_el.po --- vidalia-0.2.10/pkg/win32/po/el/vidalia_el.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/el/vidalia_el.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,286 @@ +# +# Γιάννης , 2011. +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-03-22 16:14+0000\n" +"Last-Translator: Evropi \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "Εγκατάσταση ${BUNDLE_NAME}" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Αυτός ο οδηγός θα σας οδηγείσει μέσα από την εγκατάσταση του Tor, Vidalia, Polipo και Torbutton.\n" +"\n" +"Το Tor είναι σύστημα για την ανώνυμη χρήση του διαδικτύου, βοηθώντας στην ανωνυμοποίηση της περιήγησης του διαδικτύου, άμεσης συνομιλίας, IRC και περισσότερα.Το Vidalia είναι ένα γραφικό περιβάλλον που σας βοηθά στη ρύθμιση, επιτήρηση και στον έλεγχο του Tor.\n" +"\n" +"\n" +"Το Polipo είναι μεσολαβητής της κρυφής μνήμης του δικτύου που αυξάνει την απόδοση της περιήγησης οτάν περιηγήτε μέσω του Tor.\n" +"\n" +"Το Torbutton είναι ένα πρόσθετο για το Firefox που σας αφήνει να γρήγορα ενεργοποιήστε ή απενεργοποιήστε την ανώνυμη περιήγηση του διαδυκτίου.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Καλώς ήρθατε στον Οδηγό Εγκατάστασης ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Τεκμηρίωση της εγκατάστασης ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Η εγκατάσταση ολοκληρώθηκε.\n" +"Διαβάστε το https://www.torproject.org/docs/tor-doc-windows για να μάθετε πώς θα ρυθμίσετε τις εφαρμογές σας ώστε να χρησιμοποιούν το Tor.\n" +"\n" +"Αν εγκαταστήσατε το Torbutton, θα πρέπει να επανεκκινήσετε τον Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Εκτέλεση εγκατεστημένων προγραμμάτων τώρα" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Το Vidalia είναι ένα γραφικό περιβάλλον που σας βοηθά στη ρύθμιση, επιτήρηση" +" και στον έλεγχο του Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Κατάργηση ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "Εγκατάσταση ${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Αυτός ο οδηγός θα σας οδηγήσει μέσα από την εγκατάσταση του Vidalia γραφικό " +"περιβάλλοντος που σας βοηθά στη ρύθμιση, επιτήρηση και στον έλεγχο του Tor." + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Καλώς ήρθατε στον Οδηγό Εγκατάστασης του ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Αρχική σελίδα ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Το Vidalia είναι ένα γραφικό περιβάλλον που σας βοηθά στη ρύθμιση, επιτήρηση" +" και στον έλεγχο του Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Έναρξη Κατά την Εκκίνηση του υπολογιστή" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Αυτόματα εκτελεί το ${VIDALIA_NAME} κατά την εκκίνηση του υπολογιστή." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Καρφίτσωμα στο μενού «Έναρξη»" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Καρίτσωμα του ${VIDALIA_NAME} στο μενού «Έναρξη»." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Έναρξη ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Το Tor είναι σύστημα για την ανώνυμη χρήση του διαδικτύου, βοηθώντας στην " +"ανωνυμοποίηση της περιήγησης του διαδικτύου, άμεσης συνομιλίας, IRC και " +"περισσότερα." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Κατάργηση ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Εγκατάσταση ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Έχετε ήδη ένα αρχείο ρυθμίσεων του Tor.$\n" +"$\n" +"Θέλετε να το αντικαταστήσετε με το αρχικό δείγμα του αρχείου ρυθμίσεων;" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Τεκμηρίωση" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Εγκατάσταση τεκμηρίωσης του ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Καρφίτσωμα στο μενού «Έναρξη»" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Καρφίτσωμα του ${TOR_NAME} στο μενού «Έναρξη»." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Το Polipo είναι μεσολαβητής της κρυφής μνήμης του δικτύου που αυξάνει την " +"απόδοση της περιήγησης οτάν περιηγήτε μέσω του Tor." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Κατάργηση ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Εγκατάσταση ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Καρφίτσωμα στο μενού «Έναρξη»" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Καρφίτσωμα του ${POLIPO_NAME} στο μενού «Έναρξη»" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Έναρξη Κατά την Εκκίνηση του υπολογιστή" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Αυτόματα εκτελεί το ${POLIPO_NAME} κατά την εκκίνηση του υπολογιστή." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Το Torbutton είναι ένα πρόσθετο για το Firefox που σας αφήνει να γρήγορα " +"ενεργοποιήστε ή απενεργοποιήστε την ανώνυμη περιήγηση του διαδυκτίου." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Κατάργηση ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Εγκατάσταση ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Προσθήκη στο Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Προσθήκη του πρόσθετου ${TORBUTTON_DESC} στο Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Το Firefox δεν βρέθηκε στο σύστημά σας. Το Torbutton δεν θα εγκαταστειθεί." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Δεδομένα Εφαρμογής" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Διαγραγή αποθηκευμένων δεδομένων και αρχείων ρυθμίσεων." + +msgctxt "LanguageCode" +msgid "en" +msgstr "en" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Το Firefox δεν είναι εγκατεστημένο" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Σας προτείνουμε να εγκαταστήσετε το Firefox πριν συνεχίσετε, για την " +"καλύτερη δυνατή ασφάλεια." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Ο περιηγητής ιστού Mozilla Firefox δεν είναι εγκατεστημένος στον υπολογιστή σας.\n" +"Το Tor δουλεύει και με άλλους περιηγητές όπως τον Internet Explorer, αλλά\n" +"είναι πιο εύκολο στη χρήση με το Firefox, το οποίο επίσης\n" +"προστατεύει την ανωνυμία σας πιο καλά.\n" +"\n" +"Αν θέλετε να εγκαταστήστε το Firefox, παρακαλούμε κάντε κλικ στο «Άκυρο»\n" +"και μετά να πάτε στη σελίδα λήψης Firefox στη διεύθυνση" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Αφού έχετε τελειώσει την εγκατάσταση του Firefox, τρέξετε τον\n" +"εγκαταστάτη του Tor.\n" +"Ενναλακτικά, εάν θα προτιμούσατε να εγκαταστησετε το Tor χωρίς το Firefox,\n" +"απλώς πατήστε «Επόμενο» για να συνεχίσετε." + + diff -Nru vidalia-0.2.10/pkg/win32/po/en/vidalia_en.po vidalia-0.2.15/pkg/win32/po/en/vidalia_en.po --- vidalia-0.2.10/pkg/win32/po/en/vidalia_en.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/en/vidalia_en.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,293 @@ +msgid "" +msgstr "" +"Project-Id-Version: Vidalia\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2009-08-31 03:26+0000\n" +"Last-Translator: Matt \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 1.1.0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} setup" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " +"and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing " +"the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " +"and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing " +"the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Welcome to the ${BUNDLE_NAME} Setup Wizard" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} installation documentation" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " +"configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " +"configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Run installed components now" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia is a GUI that helps you control, monitor, and configure Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Remove ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} setup" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that " +"helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"This wizard will guide you through the installation of Vidalia, a GUI that " +"helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Welcome to the ${VIDALIA_NAME} Setup Wizard" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} homepage" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia is a GUI that helps you control, monitor, and configure Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Run At Startup" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Automatically run ${VIDALIA_NAME} at startup." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Add to Start Menu" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Add ${VIDALIA_NAME} to your Start menu." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Run ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Remove ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Install ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Documentation" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Install ${TOR_NAME} documentation." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Add to Start Menu" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Add ${TOR_NAME} to your Start menu." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Remove ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Install ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Add to Start Menu" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Add ${POLIPO_NAME} to your Start menu." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Run At Startup" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Automatically run ${POLIPO_NAME} at startup." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Remove ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Install ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Add to Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Add the ${TORBUTTON_DESC} extension to Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "Firefox was not found on your system. Not installing Torbutton." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Application Data" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Remove saved application data and configuration files." + +msgctxt "LanguageCode" +msgid "en" +msgstr "en" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox is not installed" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"We recommend that you install Firefox before continuing, for best safety." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." diff -Nru vidalia-0.2.10/pkg/win32/po/eo/vidalia_eo.po vidalia-0.2.15/pkg/win32/po/eo/vidalia_eo.po --- vidalia-0.2.10/pkg/win32/po/eo/vidalia_eo.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/eo/vidalia_eo.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/es/vidalia_es.po vidalia-0.2.15/pkg/win32/po/es/vidalia_es.po --- vidalia-0.2.10/pkg/win32/po/es/vidalia_es.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/es/vidalia_es.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,285 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/torproject/team/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "Instalación de ${BUNDLE_NAME}" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Este asistente le guiará a través de la instalación de Tor, Vidalia, Privoxy, y Torbutton.\n" +"\n" +"Tor es un sistema para utilizar Internet anónimamente, ayudándolo a hacer anónima su navegación Web, publicaciones, mensajería instantánea, IRC, y más. Vidalia es una interfaz de usuario que le ayuda a controlar, monitorear y configurar Tor.\n" +"\n" +"Polipo es un web proxy cache que ayuda a mejorar el performance al navegar por la web via Tor. Torbutton es una extensión para Firefox que le permite habilitar o deshabilitar rápidamente la navegación anónima por la web.\n" +"\n" +"Si ha instalado previamente Tor, Vidalia, Privoxy, o Firefox, por favor asegúrese que no se estén ejecutando antes de continuar con la instalación.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Bienvenido al asistente de instalación de ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Documentación de instalación de ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"La instalación está completa.\n" +"Por favor, vea https://www.torproject.org/docs/tor-doc-windows para aprender cómo configurar sus aplicaciones para que utilicen Tor.\n" +"\n" +"Si instaló Torbutton, necesitará reiniciar Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Ejecutar los componentes instalados ahora" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia es una interfaz gráfica de usuario que le ayuda a controlar, " +"monitorear y configurar Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Eliminar ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "Instalación de ${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Este asistente le guiará a través de la instalación de Vidalia, una interfaz gáfica de usuario que le ayuda a controlar, monitorear y configurar Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Bienvenido al asistente de instalación de ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Página Principal de ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia es una interfaz gráfica de usuario que le ayuda a controlar, " +"monitorear y configurar Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Ejecutar al inciar sesión" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Ejecutar automáticamente ${VIDALIA_NAME} al iniciar sesión." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Añadir al menú Inicio" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Añadir ${VIDALIA_NAME} al menú Inicio." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Ejecutar ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor es un sistema para anonimizar Internet, ayudándolo a anonimizar su " +"navegación Web y publicaciones, mensajería instantánea, IRC, y más." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Eliminar ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Instalar ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Se ha encontrado una configuración de Tor.$\n" +"$\n" +"¿Desea sobrescribirla con la configuración predeterminada?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Documentación" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Instalar la documentación de ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Añadir al menú Inicio" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Añadir ${TOR_NAME} al menú Inicio" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo es un cache web proxy que mejora el performance de la navegación " +"usando Tor." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Eliminar ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Instalar ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Añadir al menú Inicio" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Añadir ${POLIPO_NAME} al menú Inicio." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Ejecutar al iniciar sesión" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Ejecutar automáticamente ${POLIPO_NAME} al iniciar sesión." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton es una extensión para Firefox que le permite habilitar o " +"deshabilitar rápidamente la navegación anónima por la web." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Eliminar ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Instalar ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Añadir a Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Añadir la extensión ${TORBUTTON_DESC} a Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "Firefox no se encontró en el sistema. No se puede instalar Torbutton." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Datos de la aplicación" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" +"Eliminar archivos de configuración y datos de la aplicación guardados." + +msgctxt "LanguageCode" +msgid "en" +msgstr "es" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox no está instalado" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Le recomendamos que instale Firefox antes de continuar, para mayor " +"seguridad." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"El navegador Mozilla Firefox no está instalado en el ordenador.\n" +"Podrá usar otros navegadores, como Internet Explorer, pero\n" +"es más sencillo el uso con Firefox, el cual también realiza un buen trabajo\n" +"protegiendo su anonimato.\n" +"\n" +"Si quiere instalar Firefox, por favor pulse Cancelar, luego diríjase\n" +"a la web de descarga de Firefox en" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Cuando termines la instalación de Firefox, puedes lanzar de nuevo\n" +"el instalador de Tor.\n" +"\n" +"O, si prefieres instalar Tor sin Firefox, simplemente\n" +"pulse Continuar." + + diff -Nru vidalia-0.2.10/pkg/win32/po/et/vidalia_et.po vidalia-0.2.15/pkg/win32/po/et/vidalia_et.po --- vidalia-0.2.10/pkg/win32/po/et/vidalia_et.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/et/vidalia_et.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,286 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} installeerija" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"See programm juhatab sind läbi Tori, Vidalia, Polipon ning Torbuttoni installeerimise.\n" +"\n" +"Tor on süsteem Interneti anonüümseks kasutamiseks, mis aitab sul jääda anonüümseks veebis surfates ja infot avaldades, ning kasutades kiirsuhtlust, IRCd ja palju muud. Vidalia on graafiline programm, mis aitab sul kontrollida, jälgida ning konfigureerida Tori.\n" +"\n" +"Polipo on vaheserver, mis aitab sul tõsta veebi läbi Tori lehitsemise jõudlust, salvestades ajutiselt osa infot, mille veebiserverid sulle saadavad.\n" +"\n" +"Torbutton on Mozilla Firefoxi lisa, mis laseb sul kiiresti vahetada anonüümse ja mitteanonüümse veebilehitsemise vahel.\n" +"\n" +"Kui sa oled varem installeerinud Tori, Vidalia, Polipo või Firefoxi, siis tee palun kindlaks, et nad ei jookse, enne kui jätkad installatsiooniga.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Tere tulemast ${BUNDLE_NAME} installeerimisprogrammi" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} installatsioonidokumendid" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Installatsioon on lõpetatud.\n" +"Palun vaata https://www.torproject.org/docs/tor-doc-windows selleks, et õppida, kuidas konfigureerida oma rakendused Tori kasutama.\n" +"\n" +"Kui sa installeerisid Torbuttoni, siis sa pead Firefoxi taaskäivitama." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Käivita installeeritud komponendid nüüd" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia on graafiline programm, mis aitab sul kontrollida, jälgida ning " +"konfigureerida Tori." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Eemalda ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} installeerija" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"See programm juhatab su läbi Vidalia installeerimise.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Tere tulemast ${VIDALIA_NAME} installeerimisprogrammi" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} koduleht" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia on graafiline programm, mis aitab sul kontrollida, jälgida ning " +"konfigureerida Tori." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Käivita automaatselt sisselogimisel" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Käivita ${VIDALIA_NAME} automaatselt sisselogimisel." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Lisa Start menüüsse." + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Lisa ${VIDALIA_NAME} sinu Start menüüsse." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Käivita ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor on süsteem Interneti anonüümseks kasutamiseks, aidates sul muuta " +"veebilehitsemise, veebis avaldamise, kiirsuhtluse, IRC jpm anonüümseks." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Eemalda ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Installeeri ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Sul juba on Tori konfiguratsioonifail.$\n" +"$\n" +"Kas sa soovid selle üle kirjutada tavapärase näidiskonfiguratsioonifailiga?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Dokumentatsioon" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Installeeri ${TOR_NAME} dokumentatsioon." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Lisa Start menüüsse" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Lisa ${TOR_NAME} sinu Start menüüsse." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo on veebi vaheserver, mis suurendab veebi läbi Tori lehitsemise " +"jõudlust." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Eemalda ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Installeeri ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Lisa Start menüüsse." + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Lisa ${POLIPO_NAME} sinu Start menüüsse." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Käivita sisselogimisel" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Automaatselt käivita ${POLIPO_NAME} sisselogimisel." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton on Mozilla Firefoxi lisa, mis lubab sul kiiresti lülitada " +"anonüümset veebilehitsemist sisse ja välja." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Eemalda ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Installeeri ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Lisa Mozilla Firefoxile" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Lisa ${TORBUTTON_DESC} lisa Mozilla Firefoxile." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Mozilla Firefoxi ei leitud sinu süsteemist. Torbuttonit ei installeerita." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Rakenduse andmed" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Eemalda salvestatud rakenduse andmed ja konfiguratsioonifailid." + +msgctxt "LanguageCode" +msgid "en" +msgstr "et" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Mozilla Firefox ei ole installeeritud." + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Me soovitame sul installeerida parema turvalisuse huvides enne jätkamist " +"Mozilla Firefox." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Mozilla Firefoxi veebilehitseja ei ole installeeritud sinu arvutis.\n" +"Tor töötab teiste veebilehitsejatega, nagu Internet Explorer, kuid\n" +"on palju lihtsamini kasutatav Firefoxiga, mis ühtlasi kaitseb\n" +"su anonüümsust paremini.\n" +"\n" +"Kui sa soovid installeerida Firefoxi, siis katkesta installatsioon ja mine\n" +"Firefoxi allalaadimislehele siin:" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Kui sa oled Firefoxi installeerimise lõpetanud, siis võid Tori installeri\n" +"uuesti käivitada.\n" +"\n" +"Kui sa soovid Tori installeerida ilma Firefoxita, jätka lihtsalt installatsiooniga." + + diff -Nru vidalia-0.2.10/pkg/win32/po/eu/vidalia_eu.po vidalia-0.2.15/pkg/win32/po/eu/vidalia_eu.po --- vidalia-0.2.10/pkg/win32/po/eu/vidalia_eu.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/eu/vidalia_eu.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/fa/vidalia_fa.po vidalia-0.2.15/pkg/win32/po/fa/vidalia_fa.po --- vidalia-0.2.10/pkg/win32/po/fa/vidalia_fa.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/fa/vidalia_fa.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,292 @@ +msgid "" +msgstr "" +"Project-Id-Version: Vidalia\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2010-07-29 04:40+0200\n" +"Last-Translator: carolyn anhalt \n" +"Language-Team: translations@vidalia-project.net\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.5\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "نصب ${BUNDLE_NAME}" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " +"and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing " +"the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"اين دستيار، شما را در طی بارگذاری تُر، ويداليا، پوليپو، و تُرباتِن راهنمايی " +"می‌کند.\n" +"\n" +"تُر سيستمی برای استفاده از اينترنت به‌صورت ناشناس است و به شما کمک می‌کند که " +"کارهايي مثل گردش و نوشتن در وب، پيام فوری، IRC و برنامه‌هاي ديگري را مخفی " +"کنيد. ويداليا يك واسط گرافيكي است كه به كنترل، مديريت و تنظيم تُر كمك " +"مي‌كند.\n" +"پوليپو يك وب پراكسي كش كننده است كه قابليتهاي مشاهده وب سايت از طريق تُر را " +"افزايش مي‌دهد..\n" +"تُرباتِن يک افزونه فايرفاکس است که به شما اجازه می‌دهد امکان مرور ناشناس در " +"وب را به‌سرعت فعال يا غيرفعال کنيد.\n" +"اگر پيش از اين تُر، ويداليا، پوليپو، يا فايرفاکس را نصب کرده‌ايد، خواهشمند " +"است از بسته بودن آن‌ها در حين نصب اين برنامه اطمينان پيدا کنيد.\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "به دستيار تنظيم ${BUNDLE_NAME} خوش آمديد" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "مستندات نصب ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " +"configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"عمليات نصب انجام شد.\n" +" خواهشمند است براي آگاهي يافتن از چگونگي پيكربندي برنامه هاي كاربردي‌تان در " +"تُر به آدرس https://www.torproject.org/docs/tor-doc-windows مراجعه نماييد. " +"/nاگر شما تُرباتن را نصب كرده‌ايد، نياز خواهيد داشت تا يكبار فايرفاكس را " +"ري‌استارت كنيد." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "اجرا كردن گزينه‌هاي نصب شده" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"ويداليا، يك واسط گرافيكي است كه به شما در كنترل، مديريت و تنظيم كردن تُر كمك " +"مي‌كند. ${VIDALIA_DESC}." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "حذف كردن ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "نصب${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that " +"helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"اين دستيار شما را در سرتاسر مراحل نصب ويداليا كه يك واسط گرافيكي براي كنترل، " +"مديريت و تنظيم تُر است، كمك مي‌كند.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "به دستيار نصب ${VIDALIA_NAME} خوش آمديد." + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "صفحه اصلي ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"ويداليا يك واسط گرافيكي است كه به شما در كنترل، مديريت و تنظيم كردن تُر كمك " +"مي‌كند." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "اجرا شدن در هنگام بوت شدن ويندوز" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "اجرا شدن اتوماتيك ${VIDALIA_NAME} در هنگام بوت شدن ويندوز." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "افزودن به منوي استارت ويندوز" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "افزودن ${VIDALIA_NAME} به منوي استارت ويندوز." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "اجراي ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"تُر سيستمي براي استفاده از اينترنت به صورت ناشناس است كه به شما كمك مي‌كند " +"تا وب سايتها را به صورت ناشناس ديده و يا بارگذاري نماييد، پيام بفرستيد، از " +"آي‌آرسي به صورت ناشناس استفاده كنيد و همچنين براي استفاده‌هاي بيشتر ديگري " +"نيز مورد مصرف قرار مي‌گيرد." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "حذف ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "نصب ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"شما هم اكنون فايل پيكربندي تُر را داريد.$\n" +"$\n" +"آيا مايليد آن‌ را با فايل نمونه پيش فرض پيكربندي جايگزين كنيد؟" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "مستندات" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "نصب مستندات ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "افزودن به منوي استارت ويندوز" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "افزودن ${TOR_NAME} به منوي استارت ويندوز." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"پوليپو يك وب پراكسي كش كننده است كه قابليتهاي مرور وب از طريق تُر را افزايش " +"مي‌دهد." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "حذف ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "نصب ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "افزودن به منوي استارت ويندوز" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "افزودن ${POLIPO_NAME} به منوي استارت ويندوز." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "اجرا شدن در هنگام بوت شدن ويندوز" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "اجرا شدن ${POLIPO_NAME} به صورت اتوماتيك در هنگام بوت شدن ويندوز." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"تُرباتِن يک افزونه فايرفاکس است که به شما اجازه می‌دهد امکان مرور ناشناس در " +"وب را به‌سرعت فعال يا غيرفعال کنيد." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "حذف ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "نصب ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "افزودن به فايرفاكس" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "اضافه‌كردن افزونه ${TORBUTTON_DESC} به فايرفاكس" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "فايرفاكس در سيستم شما نصب نشده است. تُرباتن نصب نخواهد شد." + +msgctxt "AppData" +msgid "Application Data" +msgstr "اطلاعات نرم افزار" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "حذف اطلاعات مربوط به نرم افزار و فايلهاي پيكربندي." + +msgctxt "LanguageCode" +msgid "en" +msgstr "fa" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "فايرفاكس نصب نشده است" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "پيشنهاد مي‌شود قبل از ادامه و براي امنيت بيشتر، فايرفاكس را نصب كنيد." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"مرورگر موزيلا فايرفاكس روي كامپيوتر شما نصب نشده است. /nتُر با مرورگرهاي " +"اينترنتي ديگر مثل اينترنت اكسپلورر نيز كار خواهد كرد ولي /nكار با فايرفاكس " +"به دليل اينكه داراي امكانات بهتري /nجهت حفاظت از ناشناس ماندن شما است،‌ " +"آسانتر است. /nاگر مايل به نصب فايرفاكس هستيد، لطفاً دكمه كنسل را زده و سپس " +"به/nصفحه بارگذاري فايرفاكس در آدرس" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"وقتي نصب فايرفاكس را به اتمام رسانديد، مي‌توانيد مجدداً/nنصب كننده تُر/n/nرا " +"اجرا كنيد يا اگر مايل به نصب آن بدون نصب فايرفاكس هستيد، لطفاً/nدكمه ادامه " +"را بزنيد." diff -Nru vidalia-0.2.10/pkg/win32/po/fi/vidalia_fi.po vidalia-0.2.15/pkg/win32/po/fi/vidalia_fi.po --- vidalia-0.2.10/pkg/win32/po/fi/vidalia_fi.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/fi/vidalia_fi.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,299 @@ +msgid "" +msgstr "" +"Project-Id-Version: Vidalia Windows Installers\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2010-04-08 15:41-0600\n" +"Last-Translator: AmaliaH \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 1.1.0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "{BUNDLE_NAME}n asennus" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " +"and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing " +"the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Tämä velho auttaa asentamaan Tor-ohjelman, Vidalian, Polipon ja Torbuttonin.\n" +"Tor on järjestelmä, jonka avulla voit käyttää Internettiä tuntemattomana " +"tekemällä anonyymiseksi sivujen selailun, pikaviestimisen, irkkaamisen ja " +"muiden vastaavien ohjelmien käytön. Vidalia on graafinen käyttöliittymä " +"jolla ohjataan, seurataan ja säädetään Tor-ohjelman toimintaa.\n" +"\n" +"Polipo on välimuistina toimiva web välityspalvelin, joka auttaa parantaa " +"nettiselailun nopeutta Torria käytettäessä.\n" +"\n" +"Torbutton on Firefoxin lisäosa, jolla voi helposti ottaa käyttöön tai " +"poistaa käytöstä anonyymisen sivujen selailun.\n" +"\n" +"Jos koneelle on jo asennettu Tor, Vidalia, Polipo, Privoxy tai Firefox, on " +"suositeltavaa tarkistaa ettei mikään niistä ole päällä ennen tämän " +"asennuksen jatkamista.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Tervetuloa ${BUNDLE_NAME}n asennukseen" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME}-asennusdokumentaatio" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " +"configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Asennus on valmis.\n" +"Tutustu https://www.torproject.org/docs/tor-doc-windows -ohjesivuun missä " +"kerrotaan kuinka tehdä Tor-ohjelman vaatimat asetukset eri ohjelmille.\n" +"\n" +"Jos asensit Torbuttonin, Firefox tulee käynnistää uudestaan." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Käynnistä asennetut komponentit nyt" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia on käyttöliittymä ohjaamaan, tarkkailemaan ja säätämään Tor-ohjelman " +"asetuksia." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Poista ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME}:n asennus" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that " +"helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Tämä velho auttaa asentamaan Vidalian, joka on käyttöliittymä ohjaamaan, " +"tarkkailemaan ja säätämään Tor-ohjelman toimintaa.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Tervetuloa ${VIDALIA_NAME}:n asennukseen" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME}:n kotisivu" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia on käyttöliittymä, joka auttaa ohjaamaan, tarkkailemaan ja säätämään " +"Tor-ohjelmaa." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Käynnistä Windowsin käynnistyessä" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Käynnistä automaattisesti ${VIDALIA_NAME} Windowsin käynnistyessä." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Lisää Käynnistä-valikkoon" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Lisää ${VIDALIA_NAME} Käynnistä-valikkoon." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Käynnistä ${VIDALIA_NAME} nyt" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor on järjestelmä, jolla voi käyttää Internettiä tuntemattomasti tekemällä " +"anonyymiseksi sivujen selailun, pikaviestimisen, irkkaamisen ja muiden " +"käytön." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Poista ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Asenna ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Sinulla on jo ennestään Tor asetustiedosto.$\n" +"$\n" +"Haluatko, että se korvataan esimerkki asetustiedostolla?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Dokumentaatio" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Asenna ${TOR_NAME}-dokumentaatio." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Lisää Käynnistä-valikkoon" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Lisää ${TOR_NAME} Käynnistä-valikkoon." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo on välimuistiin tallentava web välityspalvelin joka auttaa " +"parantamaan web selailun nopeutta Torria käytettäessä." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Poista ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Asenna ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Lisää Käynnistä-valikkoon" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Lisää ${POLIPO_NAME} Käynnistä-valikkoon." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Käynnistä Windowsin käynnistyessä" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Käynnistä automaattisesti ${POLIPO_NAME} Windowsin käynnistyessä." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton on Firefox lisäosa, jonka avulla voi ottaa nopeasti käyttöön tai " +"poistaa käytöstä anonyymisen web sivujen selailun." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Poista ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Asenna ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Lisää Firefoxiin" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Lisää ${TORBUTTON_DESC} -lisäosa Firefoxiin." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "Firefoxia ei löytynyt koneelta. Torbuttonia ei voitu asentaa." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Sovelluksen tiedot" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Poista tallennetut ohjelmatiedot ja asetustiedostot." + +msgctxt "LanguageCode" +msgid "en" +msgstr "fi" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox ei ole asennettu" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Turvallisuuden vuoksi Firefoxin asentaminen on suositeltavaa ennen " +"jatkamista." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Mozilla Firefox selain ei ole asennettuna tähän tietokoneeseen.\n" +"Tor toimii muillakin selaimilla, kuten Internet Explorer, mutta\n" +"on helpompaa käyttää Firefoxilla, joka lisäksi turvaa yksityisyyden " +"paremmin.\n" +"\n" +"Jos haluat asentaa Firefoxin, paina Peruuta ja mene\n" +"Firefoxin lataussivulle osoitteeseen:" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Kun olet asentanut Firefoxin, voit uudestaan käynnistää\n" +"Tor-asennuksen.\n" +"\n" +"Vaihtoehtoisesti voit asentaa Tor-ohjelman ilman Firefoxia\n" +"painamalla Jatka." diff -Nru vidalia-0.2.10/pkg/win32/po/fil/vidalia_fil.po vidalia-0.2.15/pkg/win32/po/fil/vidalia_fil.po --- vidalia-0.2.10/pkg/win32/po/fil/vidalia_fil.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/fil/vidalia_fil.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fil\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/fo/vidalia_fo.po vidalia-0.2.15/pkg/win32/po/fo/vidalia_fo.po --- vidalia-0.2.10/pkg/win32/po/fo/vidalia_fo.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/fo/vidalia_fo.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/fr/vidalia_fr.po vidalia-0.2.15/pkg/win32/po/fr/vidalia_fr.po --- vidalia-0.2.10/pkg/win32/po/fr/vidalia_fr.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/fr/vidalia_fr.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,304 @@ +msgid "" +msgstr "" +"Project-Id-Version: Vidalia\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2009-09-21 10:44+0000\n" +"Last-Translator: Michael Scherer \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Pootle 1.1.0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "Mise à jour de ${BUNDLE_NAME}" + +# Traduction de la partie sur Polipo +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " +"and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing " +"the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Cet assistant vous guidera pendant l'installation de Tor, Vidalia, Privoxy, " +"et de Torbutton.\n" +"\n" +"Tor est un système pour utiliser internet anonymement, vous aidant à " +"anonymer la navigation Web, la publication, la messagerie instantanée, " +"l'IRC, et plus encore. Vidalia est un logiciel qui vous aide à " +"contrôler,surveiller et configurer Tor.\n" +"\n" +"Polipo est un mandataire proxy de cache qui améliore la navigation web à " +"travers Tor.\n" +"\n" +"Torbutton est un module complémentaire de Firefox qui vous permet d'activer " +"ou de désactiver rapidement la navigation anonyme.\n" +"\n" +"Si vous avez déjà installé Tor, Vidalia, Privoxy, ou Firefox, assurez-vous " +"qu'ils ne sont pas démarrés avant de poursuivre l'installation.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Bienvenue dans l'Assistant d'installation de ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Documentation de l'installation de ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " +"configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"L'installation est terminée.\n" +"Consultez la page https://www.torproject.org/docs/tor-doc-windows pour " +"apprendre comment configurer vos applications avec Tor.\n" +"\n" +"Si vous venez d'installer Torbutton, vous devrez redémarrer Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Démarrer les composants installés maintenant" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia est un logiciel qui vous aide à contrôler,surveiller et configurer " +"Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Supprimer ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "Mise à jour de ${VIDALIA_NAME}" + +# GUI traduit en logiciel pour plus de clarté +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that " +"helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Cet assistant vous guidera pendant l'installation de Vidalia, un logiciel " +"qui vous aide à contrôler,surveiller et configurer Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Bienvenue dans l'Assistant d'installation de ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Site Web de ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia est un logiciel qui vous aide à contrôler,surveiller et configurer " +"Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Lancer au démarrage" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Lancer automatiquement ${VIDALIA_NAME} au démarrage." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Ajouter au Menu Démarrer" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Ajouter ${VIDALIA_NAME} à votre Menu Démarrer." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Lancer ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor est un système pour utiliser internet anonymement, vous aidant à " +"anonymer la navigation Web, la publication, la messagerie instantanée, " +"l'IRC, et plus encore." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Supprimer ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Installer ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Vous avez déjà un fichier de configuration de Tor.$\n" +"$\n" +"Voulez-vous le remplacer par le fichier de configuration par défaut?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Documentation" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Installer la documentation de ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Ajouter au Menu Démarrer" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Ajouter ${TOR_NAME} à votre Menu Démarrer." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo est un mandataire proxy de cache qui améliore la navigation web à " +"travers Tor." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Supprimer ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Installer ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Ajouter au Menu Démarrer" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Ajouter ${POLIPO_NAME} à votre Menu Démarrer." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Lancer au démarrage" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Lancer automatiquement ${POLIPO_NAME} au démarrage." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton est un module complémentaire de Firefox qui vous permet d'activer " +"ou de désactiver rapidement la navigation anonyme." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Supprimer ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Installer ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Ajouter à Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Ajouter l'extension ${TORBUTTON_DESC} à Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Firefox n'a pas été trouvé sur votre système. Torbutton ne sera pas installé." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Données de l'Application" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" +"Supprimer les fichiers de configuration et les données de l'application." + +msgctxt "LanguageCode" +msgid "en" +msgstr "fr" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox n'est pas installé" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Nous recommandons, pour plus de sureté, l'installation de firefox avant de " +"continuer. " + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Le navigateur Mozilla Firefox n'est pas installé sur votre ordinateur.\n" +"Tor fonctionnera avec d'autres navigateurs, tel que Internet Explorer, mais\n" +"il est simple à utiliser avec Firefox, qui est aussi plus adapté pour\n" +"proteger votre anonymat.\n" +"\n" +"Si vous voulez intaller Firefox, merci de presser Annuler, puis allez\n" +"sur la page de téléchargement de Firefox" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Quand vous aurez installé Firefox, vous pourrez à nouveau lancer l'\n" +"installeur de Tor.\n" +"\n" +"Ou, si vous préférez installer Tor sans Firefox, pressez simplement\n" +"Continuer." diff -Nru vidalia-0.2.10/pkg/win32/po/fur/vidalia_fur.po vidalia-0.2.15/pkg/win32/po/fur/vidalia_fur.po --- vidalia-0.2.10/pkg/win32/po/fur/vidalia_fur.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/fur/vidalia_fur.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fur\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/fy/vidalia_fy.po vidalia-0.2.15/pkg/win32/po/fy/vidalia_fy.po --- vidalia-0.2.10/pkg/win32/po/fy/vidalia_fy.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/fy/vidalia_fy.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/ga/vidalia_ga.po vidalia-0.2.15/pkg/win32/po/ga/vidalia_ga.po --- vidalia-0.2.10/pkg/win32/po/ga/vidalia_ga.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ga/vidalia_ga.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/gl/vidalia_gl.po vidalia-0.2.15/pkg/win32/po/gl/vidalia_gl.po --- vidalia-0.2.10/pkg/win32/po/gl/vidalia_gl.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/gl/vidalia_gl.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/gu/vidalia_gu.po vidalia-0.2.15/pkg/win32/po/gu/vidalia_gu.po --- vidalia-0.2.10/pkg/win32/po/gu/vidalia_gu.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/gu/vidalia_gu.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/gun/vidalia_gun.po vidalia-0.2.15/pkg/win32/po/gun/vidalia_gun.po --- vidalia-0.2.10/pkg/win32/po/gun/vidalia_gun.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/gun/vidalia_gun.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gun\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ha/vidalia_ha.po vidalia-0.2.15/pkg/win32/po/ha/vidalia_ha.po --- vidalia-0.2.10/pkg/win32/po/ha/vidalia_ha.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ha/vidalia_ha.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ha\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/he/vidalia_he.po vidalia-0.2.15/pkg/win32/po/he/vidalia_he.po --- vidalia-0.2.10/pkg/win32/po/he/vidalia_he.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/he/vidalia_he.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,254 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "התקנת ${BUNDLE_NAME}" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "ברוכים הבאים לאשף התקנת ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "מסמכי התקנה של ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"ההתקנה הסתיימה.\n" +"אנא ראה https://www.torproject.org/docs/tor-doc-windows על מנת ללמוד כיצד להגדיר את התוכנות לשימוש ב-Tor.\n" +"\n" +" אם התקנת Torbutton יש צורך להתחיל מחדש את Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "הרץ רכיבים מותקנים כעת" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia הינו ממשק גרפי המאפשר שליטה, ניטור והגדרת Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "הסר ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "התקנת ${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"אשף זה ידריך אותך במהלך התקנת Vidalia, ממשק גרפי העוזר בשליטה, ניטור והגדרת Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "ברוכים הבאים לאשף התקנת ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "עמוד הבית של ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia הינו ממשק גרפי המאפשר שליטה, ניטור והגדרת Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "הרץ בעת אתחול" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "הרץ ${VIDALIA_NAME} אוטומטית בעת אתחול." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "הוסף לתפריט התחלה" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "הוסף את ${VIDALIA_NAME} לתפריט התחלה." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "הרץ את ${VIDALIA_NAME} כעת" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor היא מערכת לשימוש אנונימי באינטרנט, לגלישה ופרסום אתרי רשת, תקשרות מסרים " +"מידיים, IRC ועוד." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "הסר ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "התקן ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"קובץ הגדרות Tor נמצא.$\n" +"$\n" +"האם ברצונך להחליפו בקובץ הגדרות ברירת המחדל?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "מסמכים" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "התקן מסמכי ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "הוסף לתפריט התחלה" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "הוסף את ${TOR_NAME} לתפריט התחלה." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton הינה הרחבת Firefox המאפשרת הפעלה וכיבוי מהיר של גלישה אנונימית." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "הסר ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "התקן ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "הוסף ל-Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "הוסף את הרחבת ${TORBUTTON_DESC} ל-Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "Firefox לא נמצא במערכת. לא מתקין Torbutton." + +msgctxt "AppData" +msgid "Application Data" +msgstr "מידע תוכנה" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "הסר מידע תוכנה שמור וקבצי הגדרה." + +msgctxt "LanguageCode" +msgid "en" +msgstr "he" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/hi/vidalia_hi.po vidalia-0.2.15/pkg/win32/po/hi/vidalia_hi.po --- vidalia-0.2.10/pkg/win32/po/hi/vidalia_hi.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/hi/vidalia_hi.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/hr/vidalia_hr.po vidalia-0.2.15/pkg/win32/po/hr/vidalia_hr.po --- vidalia-0.2.10/pkg/win32/po/hr/vidalia_hr.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/hr/vidalia_hr.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ht/vidalia_ht.po vidalia-0.2.15/pkg/win32/po/ht/vidalia_ht.po --- vidalia-0.2.10/pkg/win32/po/ht/vidalia_ht.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ht/vidalia_ht.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/hu/vidalia_hu.po vidalia-0.2.15/pkg/win32/po/hu/vidalia_hu.po --- vidalia-0.2.10/pkg/win32/po/hu/vidalia_hu.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/hu/vidalia_hu.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/hy/vidalia_hy.po vidalia-0.2.15/pkg/win32/po/hy/vidalia_hy.po --- vidalia-0.2.10/pkg/win32/po/hy/vidalia_hy.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/hy/vidalia_hy.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/id/vidalia_id.po vidalia-0.2.15/pkg/win32/po/id/vidalia_id.po --- vidalia-0.2.10/pkg/win32/po/id/vidalia_id.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/id/vidalia_id.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,269 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} setup" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Selamat datang di ${BUNDLE_NAME} Setup" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} dokumentasi instalasi" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Instalasi selesai.\n" +"Mohon kunjungi https://www.torproject.org/docs/tor-doc-windows untuk belajar bagaimana cara mengkonfigurasi aplikasi Anda agar dapat menggunakan Tor." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Menjalankan komponen yang telah diinstall" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia adalah GUI yang membantu Anda untuk mengendalikan, memonitor dan " +"mengkonfigurasi Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Menghapus ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} setup" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Installer ini akan memandu Anda dalam menginstall Vidalia, GUI yang membantu Anda untuk mengendalikan, memonitor dan mengkonfigurasi Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Selamat datang di ${VIDALIA_NAME} Setup" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Website ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia adalah GUI yang membantu Anda untuk mengendalikan, memonitor dan " +"mengkonfigurasi Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Jalankan saat Startup" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Otomatis menjalankan ${VIDALIA_NAME} saat Startup." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Tambahkan pada Start Menu" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Tambahkan ${VIDALIA_NAME} pada Start Menu Anda." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Jalankan ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor adalah sistem yang memungkinkan menggunakan Internet tanpa dikenal " +"(anonymous), membantu Anda untuk browsing, instant messaging, IRC dan lain-" +"lain tanpa dikenal." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Hapus ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Install ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Anda telah mempunyai file konfigurasi Tor.$\n" +"$\n" +"Anda ingin menimpanya dengan file konfigurasi default? " + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Dokumentasi" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Install dokumentasi ${TOR_NAME}" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Tambahkan pada Start Menu" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Tambahkan ${TOR_NAME} pada Start menu Anda." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton adalah ekstensi firefox yang membuat Anda dengan cepat " +"mengaktifkan atau mematikan browsing secara anonymous." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Hapus ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Install ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Tambahkan pada Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Tambahkan ektensi ${TORBUTTON_DESC} pada Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Tidak ditemukan Firefox pada sistem Anda. Tidak menginstall Torbutton." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Application Data" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Hapus semua data dan konfigurasi file yang tersimpan." + +msgctxt "LanguageCode" +msgid "en" +msgstr "id" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox tidak diinstall" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Kami merekomendasikan Anda untuk menginstall Firefox sebelum melanjutkan, " +"untuk keamanan terbaik. " + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Mozilla Firefox browser tidak diinstall di komputer Anda.\n" +"Tor juga dapat bekerja dengan browser lainnya, seperti Internet Explorer, tetapi\n" +"akan lebih mudah apabila menggunakan Firefox. Firefox juga lebih baik dalam menjaga privasi Anda.\n" +"\n" +"Jika Anda ingin menginstall Firefox, mohon tekan tombol Batal, kemudian kunjungi website Firefox di www.mozilla.com/firefox/ " + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Ketika Anda telah selesai menginstall Firefox, Anda harus menjalankan Tor Installer sekali lagi.\n" +"\n" +"Atau, jika Anda memilih untuk menginstall Tor tanpa Firefox, tekan tombol Lanjut." + + diff -Nru vidalia-0.2.10/pkg/win32/po/is/vidalia_is.po vidalia-0.2.15/pkg/win32/po/is/vidalia_is.po --- vidalia-0.2.10/pkg/win32/po/is/vidalia_is.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/is/vidalia_is.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/it/vidalia_it.po vidalia-0.2.15/pkg/win32/po/it/vidalia_it.po --- vidalia-0.2.10/pkg/win32/po/it/vidalia_it.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/it/vidalia_it.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,286 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: Italian (http://www.transifex.net/projects/p/torproject/team/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "Installazione di ${BUNDLE_NAME}" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Questo wizard assisterà nell'installazione di Tor, Vidalia, Privoxy e Torbutton.\n" +"\n" +"Tor è un software che consente di usare Internet in modo anonimo, aiutandoti a rendere anonimela navigazione e la pubblicazione sul web, la messaggistica istantanea, IRC e altro ancora. Vidalia è una interfaccia grafica che semplifica il controllo e la configurazione di Tor.\n" +"\n" +"Polipo è un proxy filtrante che protegge la privacy e rimuove pubblicità (ad, banner e popup).\n" +"\n" +"Torbutton è un'estensione di Firefox che consente di attivare o disattivare rapidamente la navigazione anonima.\n" +"\n" +"Se esistono già precedenti installazioni di Tor, Vidalia, Polipo o Firefox è consigliabile assicurarsi che questi programmi siano chiusi prima di continuare con l'installazione.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Benvenuti nell'installazione guidata di ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Documenti sull'installazione di ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"L'installazione è stata completata.\n" +"Consultare https://www.torproject.org/docs/tor-doc-windows per informazioni sull'uso e sulla configurazione di Tor.\n" +"\n" +"Se Torbutton è stato installato sarà necessario riavviare Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Avvia ora i componenti installati" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia è una interfaccia grafica per controllare, monitorare e configurare " +"Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Disinstalla ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "Installazione di ${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Questa procedura guidata assisterà nell'installazione di Vidalia, un programma grafico di controllo e configurazione di Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Benvenuti nell'installazione guidata di ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Homepage di ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia è una GUI per controllare, monitorare e configurare Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Attiva all'avvio del pc" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Avvia ${VIDALIA_NAME} automaticamente all'accensione del pc." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Aggiungi al menu Avvio" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Aggiunge ${VIDALIA_NAME} alla cartella Progammi del menu Avvio." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Avvia ${VIDALIA_NAME} adesso" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor è un sistema per usare Internet in modo anonimo, permettendoti di " +"rendere anonimi la navigazione e la pubblicazione web, la messaggistica " +"istantanea, IRC, e altro ancora." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Disinstalla ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Installa ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Un file di configurazione Tor è già presente nel sistema.$\n" +"$\n" +"Sovrascriverlo con il file di configurazione standard?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Documentazione" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Installa la documentazione di ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Aggiungi al menu Avvio" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Aggiunge ${TOR_NAME} alla cartella Programmi del menu Avvio." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo è un caching web proxy che migliora le prestazioni dela navigazione " +"web con Tor." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Disinstalla ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Installa ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Aggiungi al menu Avvio" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Aggiunge ${POLIPO_NAME} alla cartella Programmi del menu Avvio." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Attiva all'avvio del pc" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Avvia ${POLIPO_NAME} all'accensione del pc." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton è un'estensione per Firefox che consente di attivare o disattivare" +" rapidamente la navigazione anonima." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Disinstalla ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Installa ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Aggiungi a Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Aggiunge l'estensione ${TORBUTTON_DESC} a Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Firefox non è stato trovato nel sistema. Torbutton non sarà installato." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Dati dell'applicazione" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Elimina i dati dell'applicazione salvati ed i file di configurazione." + +msgctxt "LanguageCode" +msgid "en" +msgstr "it" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox non è installato" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Consigliamo di installare Firefox prima di continuare, per una maggiore " +"sicurezza" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Il browser web Mozilla Firefox non è installato sul tuo computer.\n" +"Tor funzionerà con altri browser, come Internet Explorer, ma\n" +"è più semplice da utilizzare con Firefox, che funziona anche meglio\n" +"per proteggere il tuo anonimato.\n" +"\n" +"Se vuoi installare Firefox, premi Annulla, quindi vai\n" +"alla pagina di download di Firefox a" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Quando hai installato Firefox, puoi nuovamente eseguire\n" +"l'installatore di Tor.\n" +"\n" +"O, se preferisci installare Tor senza Firefox,\n" +"premi Avanti per continuare" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ja/vidalia_ja.po vidalia-0.2.15/pkg/win32/po/ja/vidalia_ja.po --- vidalia-0.2.10/pkg/win32/po/ja/vidalia_ja.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ja/vidalia_ja.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,226 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2010-04-10 02:25-0600\n" +"Last-Translator: Shinji R. Yamane \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} セットアップ" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" +"このウィザードはTor, Vidalia, Privoxy, and Torbuttonのインストールを案内します.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Privoxy is a filtering web proxy that protects your privacy and helps remove " +"ads, banners, and popups.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Privoxy, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "${BUNDLE_NAME} セットアップウィザードへようこそ" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" +"インストールは終了しました。\n" +"Torを利用するための設定については、https://www.torproject.org/docs/tor-doc-windows をご覧ください。\n" +"\n" +"Torbuttonをインストールされた方は、Firefoxを再起動する必要があります." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia はTorの制御・監視・設定を支援するグラフィカルユーザーインタフェースです。" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} セットアップ" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "${VIDALIA_NAME} セットアップウィザードへようこそ" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "VidaliaはTorの制御・監視・設定を支援するグラフィカルユーザーインタフェースです。" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "Torはインターネットを介した匿名性によって、ウェブでの閲覧・公表・インスタントメッセージ・チャットを支援するシステムです。" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "Privoxyは、広告・バナー・ポップアップを取り除き、あなたのプライバシを守るフィルタリング用のウェブプロクシです。" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "Torbuttonは匿名でのウェブ閲覧を簡単に有効化・無効化できるFirefoxエクステンションです。" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/jv/vidalia_jv.po vidalia-0.2.15/pkg/win32/po/jv/vidalia_jv.po --- vidalia-0.2.10/pkg/win32/po/jv/vidalia_jv.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/jv/vidalia_jv.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/ka/vidalia_ka.po vidalia-0.2.15/pkg/win32/po/ka/vidalia_ka.po --- vidalia-0.2.10/pkg/win32/po/ka/vidalia_ka.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ka/vidalia_ka.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/km/vidalia_km.po vidalia-0.2.15/pkg/win32/po/km/vidalia_km.po --- vidalia-0.2.10/pkg/win32/po/km/vidalia_km.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/km/vidalia_km.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/kn/vidalia_kn.po vidalia-0.2.15/pkg/win32/po/kn/vidalia_kn.po --- vidalia-0.2.10/pkg/win32/po/kn/vidalia_kn.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/kn/vidalia_kn.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ko/vidalia_ko.po vidalia-0.2.15/pkg/win32/po/ko/vidalia_ko.po --- vidalia-0.2.10/pkg/win32/po/ko/vidalia_ko.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ko/vidalia_ko.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,210 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2010-02-06 04:37-0700\n" +"Last-Translator: Ui Sung Lee \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} 설치" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "환영합니다. ${BUNDLE_NAME} 설치 마법사" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "설치 설명서" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" +"설치가 완료됩니다. \\ n자세한 내용은 https://www.torproject.org/docs/tor-doc-windows토르를 " +"사용하여 응용 프로그램을 구성하는 방법을 배울 수있습니다.\n" +"\n" +"Torbutton 설치되어있는 경우, 당신은 파이어 폭스를 다시 시작해야 할 것입니다." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/ku/vidalia_ku.po vidalia-0.2.15/pkg/win32/po/ku/vidalia_ku.po --- vidalia-0.2.10/pkg/win32/po/ku/vidalia_ku.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ku/vidalia_ku.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/kw/vidalia_kw.po vidalia-0.2.15/pkg/win32/po/kw/vidalia_kw.po --- vidalia-0.2.10/pkg/win32/po/kw/vidalia_kw.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/kw/vidalia_kw.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/ky/vidalia_ky.po vidalia-0.2.15/pkg/win32/po/ky/vidalia_ky.po --- vidalia-0.2.10/pkg/win32/po/ky/vidalia_ky.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ky/vidalia_ky.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/lb/vidalia_lb.po vidalia-0.2.15/pkg/win32/po/lb/vidalia_lb.po --- vidalia-0.2.10/pkg/win32/po/lb/vidalia_lb.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/lb/vidalia_lb.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/lg/vidalia_lg.po vidalia-0.2.15/pkg/win32/po/lg/vidalia_lg.po --- vidalia-0.2.10/pkg/win32/po/lg/vidalia_lg.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/lg/vidalia_lg.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/ln/vidalia_ln.po vidalia-0.2.15/pkg/win32/po/ln/vidalia_ln.po --- vidalia-0.2.10/pkg/win32/po/ln/vidalia_ln.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ln/vidalia_ln.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ln\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/lo/vidalia_lo.po vidalia-0.2.15/pkg/win32/po/lo/vidalia_lo.po --- vidalia-0.2.10/pkg/win32/po/lo/vidalia_lo.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/lo/vidalia_lo.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/lt/vidalia_lt.po vidalia-0.2.15/pkg/win32/po/lt/vidalia_lt.po --- vidalia-0.2.10/pkg/win32/po/lt/vidalia_lt.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/lt/vidalia_lt.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/lv/vidalia_lv.po vidalia-0.2.15/pkg/win32/po/lv/vidalia_lv.po --- vidalia-0.2.10/pkg/win32/po/lv/vidalia_lv.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/lv/vidalia_lv.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/mg/vidalia_mg.po vidalia-0.2.15/pkg/win32/po/mg/vidalia_mg.po --- vidalia-0.2.10/pkg/win32/po/mg/vidalia_mg.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/mg/vidalia_mg.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mg\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/mi/vidalia_mi.po vidalia-0.2.15/pkg/win32/po/mi/vidalia_mi.po --- vidalia-0.2.10/pkg/win32/po/mi/vidalia_mi.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/mi/vidalia_mi.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mi\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/mk/vidalia_mk.po vidalia-0.2.15/pkg/win32/po/mk/vidalia_mk.po --- vidalia-0.2.10/pkg/win32/po/mk/vidalia_mk.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/mk/vidalia_mk.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ml/vidalia_ml.po vidalia-0.2.15/pkg/win32/po/ml/vidalia_ml.po --- vidalia-0.2.10/pkg/win32/po/ml/vidalia_ml.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ml/vidalia_ml.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/mn/vidalia_mn.po vidalia-0.2.15/pkg/win32/po/mn/vidalia_mn.po --- vidalia-0.2.10/pkg/win32/po/mn/vidalia_mn.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/mn/vidalia_mn.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/mr/vidalia_mr.po vidalia-0.2.15/pkg/win32/po/mr/vidalia_mr.po --- vidalia-0.2.10/pkg/win32/po/mr/vidalia_mr.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/mr/vidalia_mr.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mr\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ms/vidalia_ms.po vidalia-0.2.15/pkg/win32/po/ms/vidalia_ms.po --- vidalia-0.2.10/pkg/win32/po/ms/vidalia_ms.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ms/vidalia_ms.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ms\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/mt/vidalia_mt.po vidalia-0.2.15/pkg/win32/po/mt/vidalia_mt.po --- vidalia-0.2.10/pkg/win32/po/mt/vidalia_mt.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/mt/vidalia_mt.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mt\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/my/vidalia_my.po vidalia-0.2.15/pkg/win32/po/my/vidalia_my.po --- vidalia-0.2.10/pkg/win32/po/my/vidalia_my.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/my/vidalia_my.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,274 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: my\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} ထည့္သြင္းျခင္း" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "${BUNDLE_NAME} ထည့္သြင္းျခင္းလုပ္ငန္းမွ ၾကိဳဆိုပါသည္။" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} ထည့္သြင္းျခင္း မွတ္တမ္းမွတ္ရာမ်ား" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"ထည့္သြငး္ျခင္း လုပ္ငန္းမ်ား ျပီးစီးပါျပီ။ \n" +"ေက်းဇူးျပဳ၍ https://www.torproject.org/docs/tor-doc-windows တြင္ သင္၏ application မ်ားအတြက္ Tor အသံုးျပဳရန္ မည္သို႕ ျပင္ဆင္ရမည္ကုိ ေလ့လာဖတ္ရႈပါ။\n" +"\n" +"Torbutton ကုိ ထည့္သြင္းခဲ့လွ်င္ Firefox ကုိ ျပန္လည္ စတင္ရန္ လိုအပ္ပါသည္။" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "ထည့္သြင္းထားေသာ အစိတ္အပိုင္းမ်ား ကုိ ယခု စတင္ပါ" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia ဆိုသည္မွာ GUI တစ္ခုျဖစ္ျပီး Tor ကုိ ထိန္းခ်ဳပ္ရန္၊ " +"ေစာင့္ၾကပ္ၾကည့္ရႈရန္ႏွင့္ ျပင္ဆင္မႈမ်ား ျပဳလုပ္ရန္ ကူညီေပးပါသည္" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "${VIDALIA_DESC} ကုိ ဖယ္ရွားပါ" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} ထည့္သြင္းျခင္း" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"ဤ တစ္ဆင့္ျခင္း ထည့္သြင္းျခင္းလုပ္ငန္းမွ GUI တစ္ခုျဖစ္ျပီး Tor ကုိ ထိန္းခ်ဳပ္ရန္၊ ေစာင့္ၾကပ္ၾကည့္ရႈရန္ႏွင့္ ျပင္ဆင္မႈမ်ား ျပဳလုပ္ရန္ ကူညီေပးေသာ Vidalia ထည့္သြင္းျခင္း ကုိ ကူညီလမ္းညႊန္ေပးပါမည္။ \n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "${VIDALIA_NAME} ထည့္သြင္းျခင္းမွ ၾကိဳဆိုပါသည္" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} မူလစာမ်က္ႏွာ" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia ဆိုသည္မွာ GUI တစ္ခုျဖစ္ျပီး Tor ကုိ ထိန္းခ်ဳပ္ရန္၊ " +"ေစာင့္ၾကပ္ၾကည့္ရႈရန္ႏွင့္ ျပင္ဆင္မႈမ်ား ျပဳလုပ္ရန္ ကူညီေပးပါသည္" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "စတင္ေသာ အဆင့္တြင္ အလုပ္လုပ္ေဆာင္ပါ" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "${VIDALIA_NAME} စတင္ေသာ အဆင့္တြင္ အလိုအေလ်ာက္ အလုပ္လုပ္ေဆာင္ပါ" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Start Menu ထဲသို႕ ထည့္သြင္းပါ" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "${VIDALIA_NAME} ကို Start Menu ထဲသို႕ ထည့္သြင္းပါ" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "${VIDALIA_NAME} ကုိ လုပ္ေဆာင္ပါ" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor ဆိုသည္မွာ အမည္မသိ အင္တာနက္ အသံုးျပဳျခင္း၊ အမည္မသိ Web အသံုးျပဳျခင္းႏွင့္" +" ထုတ္လႊင့္ျခင္း၊ ခ်က္ခ်င္းပို႕ မက္ေဆ့လုပ္ငန္း၊ IRC ႏွင့္ အျခား " +"လုပ္ငန္းမ်ားကို ကူညီေပးပါသည္။" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "${TOR_DESC} ကုိ ဖယ္ရွားပါ" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "${TOR_DESC} ကုိ ထည့္သြင္းပါ" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"သင့္ထံတြင္ Tor ျပင္ဆင္မႈ ဖုိင္ ရွိျပီး ျဖစ္ပါသည္။$\n" +"$\n" +"၄င္း ဖုိင္ကုိ မူလ ရိုးရွင္းေသာ ျပင္ဆင္မႈဖုိင္ႏွင့္ အစားထုိးလိုပါသလား ?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "မွတ္တမ္းမွတ္ရာမ်ား" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "${TOR_NAME} မွတ္တမ္းမွတ္ရာမ်ားကုိ ထည့္သြင္းပါ" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Start Menu သို႕ ထည့္သြင္းပါ" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "${TOR_NAME} ကုိ Start Menu သို႕ ထည့္သြင္းပါ" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton ဆိုသည္မွာ Firefox extension တစ္ခု ျဖစ္ျပီး အမည္မသိ web browsing " +"ျပဳလုပ္ခြင့္/မျပဳလုပ္ခြင့္ကုိ လ်င္ျမန္စြာ ေျပာင္းလဲေစႏိုင္ပါသည္" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "${TORBUTTON_DESC} ကုိ ဖယ္ရွားပါ" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "${TORBUTTON_DESC} ကုိ ထည့္သြင္းပါ" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Firefox သို႕ ထည့္သြင္းပါ" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "${TORBUTTON_DESC} extension ကို Firefox သို႕ ထည့္သြင္းပါ" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"သင္၏ စနစ္အတြင္း Firefox မေတြ႕ရွိပါ။ Torbutton ကုိ ထည့္သြင္းျခင္း မျပဳလုပ္ပါ" + +msgctxt "AppData" +msgid "Application Data" +msgstr "Application အခ်က္အလက္မ်ား" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Application အခ်က္အလက္မ်ားႏွင့္ ျပင္ဆင္မႈ ဖုိင္မ်ားကုိ ဖယ္ရွားရန္" + +msgctxt "LanguageCode" +msgid "en" +msgstr "en" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox ထည့္သြင္းမႈ မရွိပါ" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"ေရွ႕ဆက္ မလုပ္ေဆာင္မီ အေကာင္းဆံုး လံုျခံဳမႈအတြက္ Firefox ကုိ ထည့္သြင္းရန္ " +"အၾကံျပဳပါသည္" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"The Mozilla Firefox Web browser ကုိ သင္၏ စနစ္အတြင္း ထည့္သြင္းမထားပါ\n" +"Tor သည္ အျခား browsers မ်ား ဥပမာ Internet Explorer တို႕ျဖင့္ အလုပ္လုပ္ႏုိင္ေသာ္လည္း \n" +"Firefox ႏွင့္ အသံုးျပဳလွ်င္ ပိုမိုလြယ္ကူျပီး \n" +"သင္၏ အမည္လွ်ိဳ႕ဝွက္မႈကုိ ပိုမိုေကာင္းမြန္စြာ ျပဳလုပ္ေစႏုိင္ပါသည္\n" +"Firefox ကုိ ထည့္သြင္းလိုလွ်င္ Cancel ကို ကလစ္ႏွိပ္၍\n" +"Firefox Download page သို႕ သြားပါ" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Firefox ထည့္သြင္းျခင္း ျပီးစီးလွ်င္ \n" +"Tor ထည့္သြင္းမႈကုိ ျပန္လည္ လုပ္ေဆာင္ ႏုိင္ပါသည္\n" +"\n" +"သုိ႕မဟုတ္ Firefox ထည့္သြင္းျခင္း မျပဳဘဲ Tor ကို ထည့္သြင္းလုိပါလွ်င္ \n" +"Next ကုိ ႏွိပ္၍ ဆက္လက္လုပ္ေဆာင္ႏုိင္ပါသည္" + + diff -Nru vidalia-0.2.10/pkg/win32/po/nah/vidalia_nah.po vidalia-0.2.15/pkg/win32/po/nah/vidalia_nah.po --- vidalia-0.2.10/pkg/win32/po/nah/vidalia_nah.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/nah/vidalia_nah.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nah\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/nap/vidalia_nap.po vidalia-0.2.15/pkg/win32/po/nap/vidalia_nap.po --- vidalia-0.2.10/pkg/win32/po/nap/vidalia_nap.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/nap/vidalia_nap.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nap\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/nb/vidalia_nb.po vidalia-0.2.15/pkg/win32/po/nb/vidalia_nb.po --- vidalia-0.2.10/pkg/win32/po/nb/vidalia_nb.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/nb/vidalia_nb.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,271 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} oppsett" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Velkommen til ${BUNDLE_NAME} Oppsettveiledning" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} innstallasjonsdokumentasjon" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Innstalleringen er fullført.\n" +"Vennligst se https://www.torproject.org/docs/tor-doc-windows om hvordan du skal konfigurere dine programmer til bruk med Tor.\n" +"\n" +"Hvis du innstallerte Torbutton trenger du å restarte Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Kjør innstallerte komponenter nå." + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia er et grafisk brukergrensesnitt som hjelper deg med å kontrollere, " +"overvåke og konfigurere Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Fjern ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} oppsett" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Denne veiledningen vil vise deg innstallasjonen av Vidalia, et grafisk brukergrensesnitt som hjelper deg med å kontrollere, overvåke og konfigurere Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Velkommen til ${VIDALIA_NAME} Oppsettsveiledning" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} nettside" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia er et grafisk brukergrensesnitt som hjelper deg med å kontrollere, " +"overvåke og konfigurere Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Kjør på oppstart" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Automatisk kjør ${VIDALIA_NAME} på oppstart." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Legg til i Start-menyen" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Legg til ${VIDALIA_NAME} i din Start-meny." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Kjør ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor er et system for å surfe internett anonymt, ved å anonymisere din " +"internettlesing og publisering, lynmeldinger, IRC og mer." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Fjern ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Innstaller ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Hvis du allerede har en Tor-konfigurasjonsfil.$\n" +"$\n" +"Vil du overskrive den med en standard konfigurasjonsfil?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Dokumentasjon" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Innstaller ${TOR_NAME} dokumentasjon." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Legg til Start-meny" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Legg til ${TOR_NAME} i din Start-meny." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton er en Firefox-utvidelse som tillater deg å kjapt bytte mellom å " +"aktivere og deaktivere anonym nettlesing." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Fjern ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Innstaller ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Legg til i Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Legg til ${TORBUTTON_DESC} i Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "Firefox var ikke funnet på ditt system. Innstallerer ikke Torbutton." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Programdata" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Fjern lagret programdata og konfigurasjonsfiler." + +msgctxt "LanguageCode" +msgid "en" +msgstr "en" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox er ikke innstallert" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Vi anbefaler at du innstallerer Firefox før du fortsetter, for best " +"sikkerhet." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Mozilla Firefox nettleseren er ikke innstallert på din maskin.\n" +"Tor vil fungere med andre nettlesere, som Internet Explorer, men\n" +"det er enklere og bruke med Firefox, som også gjør en bedre innsats med\n" +"å beskytte din anonymitet.\n" +"\n" +"Hvis du vil innstallere Firefox, vennligst trykk Avbryt og gå\n" +"til Firefox-nedlastingsside hos" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Når du er ferdig med å innstallere Firefox kan du kjøre Tor-innstallasjonen på nytt.\n" +"\n" +"Eller, hvis du vil innstallere Tor uten Firefox, trykk Neste for å fortsette." + + diff -Nru vidalia-0.2.10/pkg/win32/po/ne/vidalia_ne.po vidalia-0.2.15/pkg/win32/po/ne/vidalia_ne.po --- vidalia-0.2.10/pkg/win32/po/ne/vidalia_ne.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ne/vidalia_ne.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/nl/vidalia_nl.po vidalia-0.2.15/pkg/win32/po/nl/vidalia_nl.po --- vidalia-0.2.10/pkg/win32/po/nl/vidalia_nl.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/nl/vidalia_nl.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,284 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} setup" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Deze wizard zal u leiden door de installatie van Tor, Vidalia, Privoxy, and Torbutton.\n" +"\n" +"Tor is een systeem om het internet anoniem te gebruiken, om anoniem te surfen, te publiceren, berichten te sturen, IRC enzomeer. Vidalia is een programma om Tor te configureren en op te volgen.\n" +"\n" +"Polipo is een net-proxy dat de performantie van het surfen met Tor verhoogt.\n" +"\n" +"Torbutten is een Firefox-extensie dat toelaat om snel te wisselen tussen gewoon en anoniem surfen.\n" +"\n" +"Indien u eerder Tor, Vidalia, Polipo, of Firefox heeft geïnstalleerd, zorg dan dat deze zijn afgesloten voordat u verder gaat met deze installatie.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Welkom bij de ${BUNDLE_NAME} Setup Wizard" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} installatie documentatie" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"De installatie is voltooid.\n" +"Bekijk alstublieft https://www.torproject.org/docs/tor-doc-windows voor meer informatie over het configureren van applicaties voor gebruik via Tor.\n" +"\n" +"Indien u Torbutton heeft geïnstalleerd, dient u Firefox te herstarten." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Start de geïnstalleerde onderdelen nu" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia is een programma om Tor te configureren en op te volgen." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Verwijder ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} setup" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Deze wizard zal u leiden door de installatie van Vidalia, een programma om Tor te configureren en op te volgen.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Welkom bij de ${VIDALIA_NAME} Setup Wizard" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} webpagina" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia is een programma om Tor te configureren en op te volgen." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Start automatisch" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Start ${VIDALIA_NAME} automatisch bij het opstarten van Windows." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Voeg toe aan Start Menu" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Voeg ${VIDALIA_NAME} toe aan uw Start menu." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Start ${VIDALIA_NAME} nu" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor is een systeem om het internet anoniem te gebruiken, om anoniem op het " +"net te surfen, te publiceren, berichten te sturen, IRC, en zo meer." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Verwijder ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Installeer ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"U heeft reeds een Tor configuratie bestand.$\n" +"$\n" +"Wilt u het overschrijven met het standaard voorbeeld configuratie bestand?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Documentatie" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Installeer ${TOR_NAME} documentatie." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Voeg toe aan Start Menu" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Voeg ${TOR_NAME} toe aan uw Start menu." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo is een net-proxy om de performantie van het surfen via Tor te " +"verhogen." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Verwijder ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Installeer ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Voeg toe aan Start Menu" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Voeg ${POLIPO_NAME} toe aan uw Start menu." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Start automatisch" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Start ${POLIPO_NAME} automatisch bij het opstarten van Windows." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton is een Firefox-extensie dat toelaat snel te wisselen tussen gewoon" +" en anoniem surfen." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Verwijder ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Installeer ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Voeg toe aan Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Voeg de ${TORBUTTON_DESC} extensie toe aan Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Firefox werd niet gevonden op uw systeem. Torbutton wordt niet " +"geïnstalleerd." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Toepassingsgegevens" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" +"Verwijder de opgeslagen toepassingsgegevens en de configuratiebestanden." + +msgctxt "LanguageCode" +msgid "en" +msgstr "nl" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox is niet geïnstalleerd." + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Wij raden U aan om Firefox te installeren voor de hoogste veiligheid " +"vooraleer verder te gaan." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Mozilla Firefox is niet geïnstalleerd op uw computer.\n" +"Tor werkt wel met andere programma's als Internet Explorer, maar \n" +"is gemakkellijker in gebruik met Firefox, dat daarenboven beter werkt om uw anonimiteit te bewaren.\n" +"\n" +"Als U Firefox wilt installeren, druk op Annuleer, en ga \n" +"naar de Firefox-pagina op" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Als U klaar bent met de installatie van Firefox, \n" +"kan U het Tor-installatieprogramma opnieuw starten.\n" +"\n" +"Of, indien U Tor wil installeren zonder Firefox, druk \n" +"Volgende om verder te gaan." + + diff -Nru vidalia-0.2.10/pkg/win32/po/nn/vidalia_nn.po vidalia-0.2.15/pkg/win32/po/nn/vidalia_nn.po --- vidalia-0.2.10/pkg/win32/po/nn/vidalia_nn.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/nn/vidalia_nn.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/nso/vidalia_nso.po vidalia-0.2.15/pkg/win32/po/nso/vidalia_nso.po --- vidalia-0.2.10/pkg/win32/po/nso/vidalia_nso.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/nso/vidalia_nso.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nso\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/oc/vidalia_oc.po vidalia-0.2.15/pkg/win32/po/oc/vidalia_oc.po --- vidalia-0.2.10/pkg/win32/po/oc/vidalia_oc.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/oc/vidalia_oc.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: oc\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/or/vidalia_or.po vidalia-0.2.15/pkg/win32/po/or/vidalia_or.po --- vidalia-0.2.10/pkg/win32/po/or/vidalia_or.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/or/vidalia_or.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/pa/vidalia_pa.po vidalia-0.2.15/pkg/win32/po/pa/vidalia_pa.po --- vidalia-0.2.10/pkg/win32/po/pa/vidalia_pa.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/pa/vidalia_pa.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/pap/vidalia_pap.po vidalia-0.2.15/pkg/win32/po/pap/vidalia_pap.po --- vidalia-0.2.10/pkg/win32/po/pap/vidalia_pap.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/pap/vidalia_pap.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pap\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/pl/vidalia_pl.po vidalia-0.2.15/pkg/win32/po/pl/vidalia_pl.po --- vidalia-0.2.10/pkg/win32/po/pl/vidalia_pl.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/pl/vidalia_pl.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,285 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "Instalator ${BUNDLE_NAME}" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Kreator przeprowadzi Cię przez instalację Tora, Vidalii, Polipo oraz Torbuttona.\n" +"\n" +"Tor jest systemem pozwalającym anonimowo surfować po internecie, pomaga zachować anonimowość podczas przeglądania i publikacji stron www, używania komunikatorów, IRC i innych. Vidalia jest graficznym interfejsem użytkownika, który pomaga sterować, monitorować i konfigurować Tora.\n" +"\n" +"Polipi jest cache'ującym serwerem proxy, który pomaga zwiększyć wydajność podczas przeglądania sieci z użycien Tora.\n" +"Torbutton jest rozszerzeniem Firefoxa, które umożliwa w szybki sposób przełączanie się w tryb anonimowego surfowania.\n" +"\n" +"Jeśli poprzednio instalowałeś Tora, Vidalię, Polipo lub Firefoxa, upewnij się, że żadne z nich nie jest w tej chwili uruchomione, zanim kontynuujesz tę instalację.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Witaj w Kreatorze Instalacji ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Dokumentacja instalacji ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Instalacja zakończona.\n" +"Proszę zobaczyć https://www.torproject.org/docs/tor-doc-windows aby dowiedzieć sić, jak skonfigurować aplikacje do współpracy z Torem.\n" +"\n" +"Jeśli instalowałeś Torbutton'a, będziesz musiał uruchomić ponownie Firefox'a." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Uruchom teraz zainstalowane komponenty." + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia jest graficznym interfejsem użytkownika, który pomaga sterować, " +"monitorować i konfigurować Tora." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Usuń ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "Instalator ${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Kreator przeprowadzi Cię przez proces instalacji Vidalii, graficznego interfejsu użytkownika który umożliwia sterowanie, monitorowanie i konfigurację Tora.\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Witaj w Kreatorze Instalacji ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Strona domowa ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia jest graficznym interfejsem użytkownika, który umożliwa sterowanie, " +"monitorowanie i konfigurację Tora." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Uruchom na starcie" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Automatycznie uruchamia ${VIDALIA_NAME} przy starcie systemu." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Dodaj do Menu Start" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Dodaje skrót ${VIDALIA_NAME} do Twojego Menu Start." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Uruchom ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor jest systemem umożliwiającym anonimowe użytkowanie Internetu, pomagając " +"pozostać Ci anonimowym podczas przeglądania stron www, wysyłania plików, " +"komunikacji, IRC i innych." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Usuń ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Instaluj ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Posiadasz już plik konfiguracyjny Tora.$\n" +"$\n" +"Czy chcesz nadpisać go przykładowym domyślnym plikiem konfiguracyjnym ?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Dokumentacja" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Instaluj dokumentację ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Dodaj do Menu Start" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Dodaje ${TOR_NAME} do Twojego Menu Start" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo jest cache'ującym serwerem proxy, który przyspiesza przeglądanie " +"sieci przy użyciu Tora." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Usuń ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Instaluj ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Dodaj do Menu Start" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Dodaje ${POLIPO_NAME} do Twojego Menu Start" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Uruchom na starcie" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Automatycznie uruchamia ${POLIPO_NAME} na starcie systemu." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton jest rozszerzeniem Firefoxa, które umożliwia włączanie i " +"wyłączanie anonimowego przeglądania stron www w szybki sposób." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Usuń ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Instaluj ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Dodaj do Firefoxa" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Dodaje rozszerzenie ${TORBUTTON_DESC} do Firefoxa." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Firefox nie został znaleziony w Twoim systemie. Torbutton nie zostanie " +"zainstalowany.Firefox nie został znaleziony w systemie. Instalacja " +"Torbuttona zaniechana." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Dane aplikacji" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Usuń dane aplikacji oraz pliki konfiguracyjne." + +msgctxt "LanguageCode" +msgid "en" +msgstr "pl" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox nie jest zainstalowany" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Zalecamy zainstalowanie Firefoxa zanim kontynuujesz, dla zachowania " +"najlepszego bezpieczeństwa." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Przeglądarka Mozilla Firefox nie jest zainstalowana na tym komputerze.\n" +"Tor będzie działać z innymi przeglądarkami, jak Internet Explorer, lecz\n" +"jest łatwiejszy w użyciu z Firefoxem, który również pomaga lepiej chronić Twoją anonimowość.\n" +"\n" +"Jeśli chcesz zainstalować Firefoxa, proszę nacisnąć Anuluj, i przejść \n" +"do strony Firefoxa" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Gdy zakończysz instalowanie Firefoxa, możesz ponownie uruchomić instalatora Tor.\n" +"\n" +"Albo, jeśli preferujesz zainstalować Tora bez Firefoxa, po prostu kliknij Kontynuuj." + + diff -Nru vidalia-0.2.10/pkg/win32/po/pms/vidalia_pms.po vidalia-0.2.15/pkg/win32/po/pms/vidalia_pms.po --- vidalia-0.2.10/pkg/win32/po/pms/vidalia_pms.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/pms/vidalia_pms.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pms\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ps/vidalia_ps.po vidalia-0.2.15/pkg/win32/po/ps/vidalia_ps.po --- vidalia-0.2.10/pkg/win32/po/ps/vidalia_ps.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ps/vidalia_ps.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/pt/vidalia_pt.po vidalia-0.2.15/pkg/win32/po/pt/vidalia_pt.po --- vidalia-0.2.10/pkg/win32/po/pt/vidalia_pt.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/pt/vidalia_pt.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,283 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "Instalação do ${BUNDLE_NAME}" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Este assistente irá guiá-lo na instalação do Tor, Vidalia, Privoxy e Torbutton.\n" +"\n" +"Tor é um sistema que lhe permite utilizar a Internet de uma forma anónima, ajudando-o a manter o anonimato no seu navegador e publicador, mensagens instantâneas, IRC, e outras aplicações. Vidalia é uma aplicação gráfica que o ajuda a controlar, monitorizar e configurar o Tor.\n" +"\n" +"Polipo é um proxy que mantém cópias locais das páginas visitadas, melhorando a velocidade de acesso a páginas enquanto utiliza Tor.\n" +"\n" +"Torbutton é uma extensão do Firefox que permite activar e desactivar rapidamente o anonimato de seu navegador.\n" +"\n" +"Se já instalou previamente o Tor, Vidalia, Polipo ou Firefox, por favor certifique-se de que nenhuma das aplicações está actualmente em funcionamento, antes de prosseguir com esta instalação.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Bem vindo ao Assistente de Instalação do ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Documentação da instalação ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"A instalação foi completada.\n" +"Por favor visite https://www.torproject.org/docs/tor-doc-windows para aprender como configurar as suas aplicaçãoes para utilizar o Tor.\n" +"\n" +"Se instalou o Torbutton, terá que reiniciar o Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Executar os componentes instalados agora" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia é uma aplicação gráfica que o ajuda a controlar, monitorizar e " +"configurar o Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Remover ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "Instalação do ${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Este assistente irá guiá-lo na instalação do Vidalia, uma aplicação gráfica que lhe permite controlar, monitorizar e configurar o Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Bem vindo ao Assistente de Instalação do ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} website" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia é uma aplicação gráfica que o ajuda a controlar, monitorizar, e " +"configurar o Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Executar Na Inicialização" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Executar o ${VIDALIA_NAME} automaticamente na inicialização." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Adicionar ao Menu Iniciar" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Adicionar ${VIDALIA_NAME} ao seu Menu Iniciar." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Executar o ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor é um sistema para utilizar a Internet anonimamente, ajudando-o a manter " +"o anonimato no navegador e publicador, aplicação de mensagens instantâneas, " +"IRC, e outras." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Remover ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Instalar ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Você já tem um ficheiro de configuração do Tor.$\n" +"$\n" +"Você deseja substituí-lo com o ficheiro de exemplo de configuração padrão?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Documentação" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Instalar a documentação do ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Adicionar ao Menu Iniciar" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Adicionar o ${TOR_NAME} ao seu Menu Iniciar." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"O Polipo é um proxy de cópias locais que melhora o desempenho da rede " +"enquanto utiliza Tor." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Remover ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Instalar ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Adicionar ao Menu Iniciar" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Adicionar o ${POLIPO_NAME} ao seu Menu Iniciar." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Executar Na Inicialização" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Executar o ${POLIPO_NAME} automaticamente na inicialização." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton é uma extensão do Firefox que permite activar e desactivar " +"rapidamente o anonimato do seu navegador." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Remover ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Instalar ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Adicionar ao Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Adicionar a extensão ${TORBUTTON_DESC} ao Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"O Firefox não foi encontrado no seu sistema. O Torbutton não será instalado." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Dados de Aplicação" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Remover dados da aplicação e ficheiros de configuração salvos." + +msgctxt "LanguageCode" +msgid "en" +msgstr "pt" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "O Firefox não está instalado" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Nós recomendamos a instalação do Firefox antes de continuar, para maior " +"segurança." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"O navegador de Internet Mozilla Firefox não está instalado no seu computador.\n" +"O Tor vai funcionar com outros navegadores, assim como no Internet Explorer, mas é mais fácil a sua utilização com o Firefox, que fará um melhor trabalho para manter o seu anonimato.\n" +"\n" +"Se quer instalar o Firefox, por favor clique no botão Cancelar, e será redireccionado para a página de download do Firefox " + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Quando terminar de instalar o Firefox, pode executar o instalador do Tor novamente.\n" +"\n" +"Ou, se você preferir instalar o Tor sem o Firefox, simplesmente clique Seguinte para continuar." + + diff -Nru vidalia-0.2.10/pkg/win32/po/pt_BR/vidalia_pt_BR.po vidalia-0.2.15/pkg/win32/po/pt_BR/vidalia_pt_BR.po --- vidalia-0.2.10/pkg/win32/po/pt_BR/vidalia_pt_BR.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/pt_BR/vidalia_pt_BR.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ro/vidalia_ro.po vidalia-0.2.15/pkg/win32/po/ro/vidalia_ro.po --- vidalia-0.2.10/pkg/win32/po/ro/vidalia_ro.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ro/vidalia_ro.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,306 @@ +msgid "" +msgstr "" +"Project-Id-Version: Vidalia\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2010-05-15 14:48-0600\n" +"Last-Translator: Pepelea Paul \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Generator: Pootle 1.1.0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "Instalare ${BUNDLE_NAME}" + +# "supliment Firefox" este terminologia folosita de Mozilla in interfata in limba romana a mozilla.org. De aceea am preferat aceasta exprimare in locul "extensie Firefox". +# Pe viitor, incercati ca in traduceri, atunci cand va adresati utiliyatorului, sa folositi persoana a II-a plural si nu singular. +# De asemenea, evitati articularea inutila a numelor proprii, de exemplu "Tor-ului". "Tor" e mai corect, mai curat si mai simplu. +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " +"and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing " +"the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Acest program vă va ghida prin instalarea Tor, Vidalia, Privoxy şi " +"Torbutton.\n" +"\n" +"Tor este un sistem pentru folosirea în mod anonim a Internetului, ce vă " +"ajută la anonimizarea navigării pe internet, mesageriei instant, IRC şi " +"multe altele. Vidalia este o interfaţă grafică ce vă ajută să controlaţi, " +"monitorizaţi şi configuraţi Tor.\n" +"\n" +"Privoxy este un proxy web pentru filtrare care îţi protejează intimitatea şi " +"ajută la înlăturarea reclamelor, bannerelor şi ferestrelor de tip pop-up.\n" +"\n" +"Torbutton este un supliment Firefox care vă permite activarea sau " +"dezactivarea rapidă a Tor.\n" +"\n" +"Daca aţi instalat în trecut Tor, Vidalia, Privoxy sau Firefox, vă rugăm să " +"vă asiguraţi că acestea nu rulează, înainte de a continua cu instalarea.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Bine aţi venit la instalarea ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Instalarea documentaţiei ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " +"configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Instalarea s-a terminat cu succes.\n" +"Vă rugăm vizitaţi https://www.torproject.org/docs/tor-doc-windows pentru a " +"învăţa cum să configuraţi diferite aplicaţii pentru folosirea Tor.\n" +"\n" +"Daca aţi instalat Torbutton, este nevoie să reporniţi Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Porneşte acum componentele instalate" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia este o interfaţă grafică ce vă ajută să controlaţi, monitorizaţi şi " +"configuraţi Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Înlătură ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "Instalare ${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that " +"helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Acest program vă va ghida prin instalarea Vidalia, un program ce vă ajută să " +"controlaţi, monitorizaţi şi configuraţi Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Bine aţi venit la instalarea ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Site-ul oficial ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia este o interfaţă grafică ce vă ajută să controlaţi, monitorizaţi şi " +"configuraţi Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Porneşte odată cu sistemul de operare" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Rulează automat ${VIDALIA_NAME} la pornire." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Adaugă în meniul Start" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Adaugă ${VIDALIA_NAME} în meniul Start." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Porneşte ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor este un sistem pentru folosirea în mod anonim a internetului, ce vă " +"ajută la anonimizarea navigării pe web, mesageriei instant, IRC şi multe " +"altele." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Înlătură ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Instalează ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Există deja un fişier de configurare pentru Tor.$\n" +"$\n" +"Doriţi să îl suprascrieţi cu un fişier implicit de configurare?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Documentaţie" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Instalează documentaţia ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Adaugă în meniul Start" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Adaugă ${TOR_NAME} în meniul Start." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo este un proxy web pentru depozitare care creşte performanţele " +"navigării pe Web prin Tor." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Elimini ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Instalezi ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Adaugă în meniul Start" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Adaugă ${POLIPO_NAME} în meniul Start." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Porneşte odată cu sistemul de operare" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Rulează ${POLIPO_NAME} la pornire." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton este un supliment Firefox care vă permite activarea sau " +"dezactivarea rapidă a Tor." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Înlătură ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Instalează ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Adaugă la Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Adaugă suplimentul ${TORBUTTON_DESC} la Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Firefox nu a fost găsit pe sistemul dumneavoastră. Torbutton nu va fi " +"instalat." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Date aplicaţie" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Înlătură datele salvate şi fişierele de configurare a aplicaţiei." + +msgctxt "LanguageCode" +msgid "en" +msgstr "ro" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox nu este instalat." + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Vă recomandăm să instalaţi Firefox înainte să continuaţi, pentru o siguranţă " +"sporită." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Navigatorul Mozilla Firefox nu este instalat pe computerul dumneavoastră.\n" +"Tor va funcţiona cu alte navigatoare, precum Internet Explorer, dar\n" +"este mai uşor de folosit cu Firefox, care protejează mai bine\n" +"anonimitatea dumneavoastră.\n" +"\n" +"Dacă doriţi să instalaţi Firefox, apăsaţi Revocare, apoi vizitaţi\n" +" pagina oficială a Firefox, la" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"După ce Firefox a fost instalat cu success, puteţi rula încă o dată\n" +"programul de instalare Tor.\n" +"\n" +"Dacă preferaţi să instalaţi Tor fără Firefox,\n" +"apăsaţi Înainte pentru a continua." diff -Nru vidalia-0.2.10/pkg/win32/po/ru/vidalia_ru.po vidalia-0.2.15/pkg/win32/po/ru/vidalia_ru.po --- vidalia-0.2.10/pkg/win32/po/ru/vidalia_ru.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ru/vidalia_ru.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,286 @@ +# +# RK2 , 2011. +# Андрей Костенко , 2011. +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-04-12 10:00+0000\n" +"Last-Translator: runasand \n" +"Language-Team: Russian (http://www.transifex.net/projects/p/torproject/team/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "установка ${BUNDLE_NAME}" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Этот мастер поможет вам установить программы Tor, Vidalia, Polipo и Torbutton.⏎\n" +"⏎\n" +"Tor - это система для работы в интернете анонимно, помогая вам анонимно просматривать веб-страницы, публиковать данные, общаться в IM-клиентах, IRC и многое другое. Vidalia - интерфейс, облегчающий настроку и управление Tor.⏎\n" +"⏎\n" +"Polipo - кэширующий прокси-сервер, увеличивающий скорость соединения при работе черезTor.⏎\n" +"⏎\n" +"Torbutton - расширение Firefox, предоставляющее быстрый доступ к основным функциям Tor.⏎\n" +"⏎\n" +"Если у вас уже установлены предыдущие версии Tor, Vidalia, Polipo или Firefox, убедитесь, что эти программы не запущены пред тем, как продолжить установку.⏎\n" +"⏎\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Добро пожаловать в мастер установки ${BUNDLE_NAME} " + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "документация по установке ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Установка завершена. Пожалуйста, см. https:// www.torproject.org/docs/tор-" +"doc-windows, чтобы узнать, как настроить приложения для использования Tor. " +"Если вы установили Torbutton, вам нужно перезапустить Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Запустить установленные компоненты сейчас" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia - это графический интерфейс, который позволяет контроллировать, " +"мониторить и настраивать Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Удалить ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "установка ${VIDALIA_NAME}" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Этот мастер поможет вам установить Vidalia - интерфейс, облегчающий настроку и управление Tor.⏎\n" +"⏎\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Вас приветствует мастер установки ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Домашняя страница ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia - интерфейс, облегчающий настроку и управление Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Запускаться при старте" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Автоматически запускать ${VIDALIA_NAME} при входе в систему." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Добавить в меню Пуск" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Добавить ${VIDALIA_NAME} в меню Пуск" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Выполнить ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor - это система для работы в интернете анонимно, помогая вам анонимно " +"просматривать веб-страницы, публиковать данные, общаться в IM-клиентах, IRC " +"и многое другое." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Удалить ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Установить ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"У вас уже есть файл конфигурации Tor. $\n" +"$ \n" +"Вы хотите перезаписать его с файлом конфигурации по умолчанию?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Документация" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Установить документацию ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Добавить в меню Пуск" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Добавить ${TOR_NAME} в меню Пуск" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polipo - кэширующий прокси-сервер, увеличивающий скорость соединения при " +"работе через Tor." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Удалить ${POLIPO_DESC}." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Установить ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Добавить в меню Пуск" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Добавить ${POLIPO_NAME} в меню Пуск" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Запускать при старте" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Загружать ${POLIPO_NAME} при загрузке" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton - расширение Firefox, предоставляющее быстрый доступ к основным " +"функциям Tor." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Удалить ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Установить ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Добавить в Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Добавить расширение ${TORBUTTON_DESC} в Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Firefox не установлена на данном компьютере. Torbutton не будет установлена." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Данные программы" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Удалить сохранённые программой данные и файлы настройки." + +msgctxt "LanguageCode" +msgid "en" +msgstr "ru" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox не установлена" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Для достижения максимальной безопасности рекомендуется установить Firefox" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Браузер Mozilla Firefox не установлен на данном компьютере.⏎\n" +"Tor работает и с остальными браузерами, однако⏎\n" +"мы рекомендуем вам Firefox, как самый простой и⏎\n" +"лучше обеспечивающий анонимность.⏎\n" +"⏎\n" +"Если Вы хотите установить Firefox, нажмите⏎\n" +"\"Отмена\", а затем зайдите на страницу Firefox:" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"После установки Firefox Вы можете снова запустить⏎\n" +"программу установки Tor.⏎\n" +"⏎\n" +"Если вы не хотите устанавливать Firefox, просто⏎\n" +"нажмите \"Далее\"." + + diff -Nru vidalia-0.2.10/pkg/win32/po/sco/vidalia_sco.po vidalia-0.2.15/pkg/win32/po/sco/vidalia_sco.po --- vidalia-0.2.10/pkg/win32/po/sco/vidalia_sco.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/sco/vidalia_sco.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:09+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sco\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/sk/vidalia_sk.po vidalia-0.2.15/pkg/win32/po/sk/vidalia_sk.po --- vidalia-0.2.10/pkg/win32/po/sk/vidalia_sk.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/sk/vidalia_sk.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/sl/vidalia_sl.po vidalia-0.2.15/pkg/win32/po/sl/vidalia_sl.po --- vidalia-0.2.10/pkg/win32/po/sl/vidalia_sl.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/sl/vidalia_sl.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,181 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/so/vidalia_so.po vidalia-0.2.15/pkg/win32/po/so/vidalia_so.po --- vidalia-0.2.10/pkg/win32/po/so/vidalia_so.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/so/vidalia_so.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/son/vidalia_son.po vidalia-0.2.15/pkg/win32/po/son/vidalia_son.po --- vidalia-0.2.10/pkg/win32/po/son/vidalia_son.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/son/vidalia_son.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: son\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/sq/vidalia_sq.po vidalia-0.2.15/pkg/win32/po/sq/vidalia_sq.po --- vidalia-0.2.10/pkg/win32/po/sq/vidalia_sq.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/sq/vidalia_sq.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/sr/vidalia_sr.po vidalia-0.2.15/pkg/win32/po/sr/vidalia_sr.po --- vidalia-0.2.10/pkg/win32/po/sr/vidalia_sr.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/sr/vidalia_sr.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,217 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, " +"Vidalia, Polipo, and Torbutton.\n\nTor is a system for using the " +"Internet anonymously, helping you anonymize Web browsing and publishing, " +"instant messaging, IRC, and more. Vidalia is a GUI that helps you " +"control, monitor, and configure Tor.\n\nPolipo is a caching web proxy " +"that helps increase performance of browsing the web through " +"Tor.\n\nTorbutton is a Firefox extension that allows you to quickly " +"enable or disable anonymous web browsing.\n\nIf you have previously " +"installed Tor, Vidalia, Polipo, or Firefox, please make sure they are " +"not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "Polipo is a caching web proxy that increases performance of web browsing through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/st/vidalia_st.po vidalia-0.2.15/pkg/win32/po/st/vidalia_st.po --- vidalia-0.2.10/pkg/win32/po/st/vidalia_st.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/st/vidalia_st.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/su/vidalia_su.po vidalia-0.2.15/pkg/win32/po/su/vidalia_su.po --- vidalia-0.2.10/pkg/win32/po/su/vidalia_su.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/su/vidalia_su.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/sv/vidalia_sv.po vidalia-0.2.15/pkg/win32/po/sv/vidalia_sv.po --- vidalia-0.2.10/pkg/win32/po/sv/vidalia_sv.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/sv/vidalia_sv.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,306 @@ +msgid "" +msgstr "" +"Project-Id-Version: Vidalia Windows Installers\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2009-01-23 20:42+0000\n" +"Last-Translator: Robin \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 1.1.0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME}-installer" + +#, fuzzy +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " +"and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing " +"the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Denna guide tar dig igenom installationen av Tor, Vidalia, Privoxy och " +"Torbutton.\n" +"\\nTor är ett program för att vara anonym på Internet och gör det möjligt " +"att anonymt surfa och publicera information, skicka snabbmeddelanden, " +"använda IRC, och mycket annat. Vidalia är ett användargränssnitt till Tor " +"som gör det enkelt att hantera, övervaka och konfigurera Tor.\n" +"\n" +"Privoxy är en filtrerande webbproxy som tar bort reklam, bannrar och pop-" +"ups.\n" +"\n" +"Torbutton är ett tillägg till Firefox som gör det möjligt att snabbt " +"aktivera eller inaktivera anonym surfning.\n" +"\n" +"Om du tidigare har installerat Tor, Vidalia, Privoxy eller Firefox, vänligen " +"försäkra dig om att de inte är igång innan du fortsätter installationen.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Välkommen till installationsguiden för ${BUNDLE_NAME}" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "Installeringsdokumentation för ${TOR_NAME}" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " +"configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Installationen är klar. \n" +"Vänligen se https://www.torproject.org/docs/tor-doc-windows för information " +"om hur du använder Tor med dina existerande program.\n" +"\n" +"Om du valde att installera Torbutton, måste du starta om Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Kör igång installerade program" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia är ett användargränssnitt som gör det enkelt att hantera, övervaka " +"och konfigurera Tor." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Ta bort ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME}-installer" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that " +"helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Denna guide tar dig igenom installationen av Vidalia, ett användargränssnitt " +"som gör det enkelt att hantera, övervaka och konfigurera Tor.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Välkommen till installationsguiden för ${VIDALIA_NAME}" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME}-websidan" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia är ett användargränssnitt som gör det enkelt att hantera, övervaka " +"och konfigurera Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Kör vid uppstart" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Kör automatiskt igång ${VIDALIA_NAME} vid uppstart." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Lägg till i startmenyn" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Lägg till ${VIDALIA_NAME} i din startmeny." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Kör igång ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor är ett program för att vara anonym på Internet och gör det möjligt att " +"anonymt surfa och publicera information, skicka snabbmeddelanden, använda " +"IRC, och mycket annat." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Ta bort ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Installera ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Du har redan en konfigurationsfil för Tor.$\n" +"$\n" +"Vill du skriva över den med standardkonfigurationsfilen?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Dokumentation" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Installera dokumentationen för ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Lägg till i startmenyn" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Lägg till ${TOR_NAME} i din startmeny." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +#, fuzzy +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Ta bort ${POLIPO_DESC}." + +#, fuzzy +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Installera ${POLIPO_DESC}." + +#, fuzzy +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Lägg till i startmenyn" + +#, fuzzy +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Lägg till ${POLIPO_NAME} i din startmeny." + +#, fuzzy +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Kör vid uppstart" + +#, fuzzy +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Kör automatiskt igång ${POLIPO_NAME} vid uppstart." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton är ett tillägg till Firefox som gör det möjligt att snabbt " +"aktivera eller inaktivera anonym surfning." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Ta bort ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Installera ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Lägg till i Mozilla Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Lägg till tillägget ${TORBUTTON_DESC} till Mozilla Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Torbutton kan ej installeras: Mozilla Firefox hittades ej på din dator." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Programdata" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Ta bort tilläggat programdata och konfigurationsfiler." + +msgctxt "LanguageCode" +msgid "en" +msgstr "sv" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox är inte installerat" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Vi rekommenderar att du installerar Firefox innan du fortsätter för bästa " +"skydd." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Mozilla Firefox Web browsern är inte installerad på din dator.\n" +"Tor kommer att fungera med andra browsers t.ex. Internet Explorer, Men\n" +"det är enklare att använda Firefox vilket också gör ett bättre jobb att\n" +"skydda din anonymitet.\n" +"\n" +"Om du vill installera Firefox, tryck på Avsluta,gå sedan\n" +"till Firefox hemsidan" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"När du är färdig med att installera Firefox så kan du köra om\n" +"Tor installationen.\n" +"\n" +"Eller om du föredrar att installera Tor utan Firefox, så\n" +"tryck på Nästa för att fortsätta" + diff -Nru vidalia-0.2.10/pkg/win32/po/sw/vidalia_sw.po vidalia-0.2.15/pkg/win32/po/sw/vidalia_sw.po --- vidalia-0.2.10/pkg/win32/po/sw/vidalia_sw.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/sw/vidalia_sw.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ta/vidalia_ta.po vidalia-0.2.15/pkg/win32/po/ta/vidalia_ta.po --- vidalia-0.2.10/pkg/win32/po/ta/vidalia_ta.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ta/vidalia_ta.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/te/vidalia_te.po vidalia-0.2.15/pkg/win32/po/te/vidalia_te.po --- vidalia-0.2.10/pkg/win32/po/te/vidalia_te.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/te/vidalia_te.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/templates/vidalia.pot vidalia-0.2.15/pkg/win32/po/templates/vidalia.pot --- vidalia-0.2.10/pkg/win32/po/templates/vidalia.pot 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/templates/vidalia.pot 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,217 @@ +msgid "" +msgstr "" +"Project-Id-Version: Vidalia Windows Installers\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, " +"Vidalia, Polipo, and Torbutton.\n\nTor is a system for using the " +"Internet anonymously, helping you anonymize Web browsing and publishing, " +"instant messaging, IRC, and more. Vidalia is a GUI that helps you " +"control, monitor, and configure Tor.\n\nPolipo is a caching web proxy " +"that helps increase performance of browsing the web through " +"Tor.\n\nTorbutton is a Firefox extension that allows you to quickly " +"enable or disable anonymous web browsing.\n\nIf you have previously " +"installed Tor, Vidalia, Polipo, or Firefox, please make sure they are " +"not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "Polipo is a caching web proxy that increases performance of web browsing through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/tg/vidalia_tg.po vidalia-0.2.15/pkg/win32/po/tg/vidalia_tg.po --- vidalia-0.2.10/pkg/win32/po/tg/vidalia_tg.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/tg/vidalia_tg.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tg\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/th/vidalia_th.po vidalia-0.2.15/pkg/win32/po/th/vidalia_th.po --- vidalia-0.2.10/pkg/win32/po/th/vidalia_th.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/th/vidalia_th.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,247 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "ยินดีต้อนรับสู่ ${BUNDLE_NAME} Setup Wizard" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"ติดตั้งสำเร็จ\n" +"เพื่อที่จะกำหนดให้โปรแกรมของท่านใช้ Tor กรุณาไปยัง https://www.torproject.org/docs/tor-doc-windows \n" +"\n" +"ถ้าท่านติดตั้ง Torbutton กรุณาเปิดโปรแกรม Firefox ใหม่" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "กำลังติดตั้ง Components " + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia คือโปรแกรมที่ช่วยให้ท่านควบคุม, ติดตาม, และกำหนดค่าให้แก่ Tor " +"ในรูปแบบกราฟฟิก" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "ติดตั้งใน Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "ไม่พบ Firefox ในระบบ ยกเลิกการติดตั้ง Torbutton" + +msgctxt "AppData" +msgid "Application Data" +msgstr "ข้อมูลโปรแกรม" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "ภาษาอังกฤษ" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "ไม่ได้ติดตั้ง Firefox " + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "เพื่อความปลอดภัย กรุณาติดตั้ง Firefox ก่อนที่จะดำเนินการต่อ" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ti/vidalia_ti.po vidalia-0.2.15/pkg/win32/po/ti/vidalia_ti.po --- vidalia-0.2.10/pkg/win32/po/ti/vidalia_ti.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ti/vidalia_ti.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ti\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/tk/vidalia_tk.po vidalia-0.2.15/pkg/win32/po/tk/vidalia_tk.po --- vidalia-0.2.10/pkg/win32/po/tk/vidalia_tk.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/tk/vidalia_tk.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tk\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/tr/vidalia_tr.po vidalia-0.2.15/pkg/win32/po/tr/vidalia_tr.po --- vidalia-0.2.10/pkg/win32/po/tr/vidalia_tr.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/tr/vidalia_tr.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,285 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} Kurulumu" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"Bu sihirbaz Tor, Vidalia, Polipo ve Torbutonu yüklerken size yardımcı olacak.\n" +"\n" +"Tor internette gezinmenizi, anlık mesajlaşmayı ve bir çok hizmeti güvenli ve gizli şekilde kullanmanızı sağlar. Vidalia bu sistemi kontrol etmenizi, görüntülemenizi ve yapılandırmanızı sağlayan bir arayüzüdür.\n" +"\n" +"Polipo, Tor kullanarak web gezintisi yaparken performansın arttırılmasında yardımcı olacak bir vekil sunucudur.\n" +"\n" +"Torbutton anonim web gezintisini kolayca aktif, pasif duruma getirebileceğiniz bir Firefox eklentisidir.\n" +"\n" +"Eğer daha önceden Tor, Vidalia, Polipo veya Firefox'u yüklemişseniz lütfen kurulum bitene kadar çalışmamalarına dikkat edin.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "${BUNDLE_NAME} Kurulum Sihirbazına hoş geldiniz" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} kurulum belgeleri" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Kurulum tamamlandı.\n" +"Uygulamalarınızın Tor kullanması için nasıl yapılandırılacağına https://www.torproject.org/docs/tor-doc-windows adresinden ulaşabilirsiniz.\n" +"\n" +"Torbutonu yüklediyseniz, Firefox'u yeniden başlatmanız gerekecektir." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Yüklü bileşenleri şimdi çalıştır" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia, Tor'u kontrol etmenize, görüntülemenize ve yapılandırmanıza imkan " +"sağlayan bir arayüzdür." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "${VIDALIA_DESC}'yı kaldır." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} Kurulumu" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Bu sihirbaz Tor'u kontrol etmenize, görüntülemenize ve yapılandırmanıza imkan sağlayan bir arayüz olan Vidalia'nın kurulumuna yardımcı olacaktır.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "${VIDALIA_NAME} Kurulum Sihirbazına Hoş Geldiniz" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} anasayfası" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia, Tor'u kontrol etmenize, görüntülemenize ve yapılandırmanıza imkan " +"sağlayan bir arayüzdür." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Başlangıçta çalıştır." + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Başlangıçta ${VIDALIA_NAME} otomatik çalışsın." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Başlangıç Menüsüne Ekle" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr " ${VIDALIA_NAME} başlangıç menüsüne eklensin." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "${VIDALIA_NAME}'yı çalıştır" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor web gezintinizi ve yayınlamanızı, anında mesajlaşmanızı ve başka bir çok" +" şeyi anonimleştirerek internette anonim kalmanızı sağlayan bir sistemdir." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "${TOR_DESC}'u kaldır." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "${TOR_DESC}'u kur." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Bir Tor yapılandırma dosyanız bulunuyor.$\n" +"$\n" +"Öntanımlı örnek yapılandırma dosyasının mevcut dosyanın üzerine kaydedilmesini ister misiniz?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Belgelendirme" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "${TOR_NAME} kurulum belgelerini kur." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Başlangıç menüsüne ekle" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr " ${TOR_NAME} Başlangıç menüsüne eklensin." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" +"Polippo web gezintinizin daha hızlı olması için önbellekleme yapan bir " +"hizmettir." + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "${POLIPO_DESC}'yu kaldır." + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Kur ${POLIPO_DESC}." + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Başlangıç Menüsüne Ekle" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr " ${POLIPO_NAME} Başlangıca ekle." + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Başlangıçta Çalıştır" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "${POLIPO_NAME} başlangıçta otomatik olarak çalıştır." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbuton hızlıca Tor'u aktif/pasif konuma getirebileceğiniz bir Firefox " +"eklentisidir." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Kaldır ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Kur ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Firefox'a ekle" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr " ${TORBUTTON_DESC} eklentisini Firefox'a ekle." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "Yüklü Firefox bulunamadı, Torbutton kurulmadı." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Uygulama Verisi" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Uygulama verilerini ve yapılandırma dosyalarını kaldır." + +msgctxt "LanguageCode" +msgid "en" +msgstr "ing" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox yüklü değil" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Devam etmeden önce güvenlik açısından Firefox yüklemenizi tavsiye ederiz." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Firefox bilgisayarınızda yüklü değil.\n" +"Tor Internet Explorer gibi diğer web tarayıcılarıyla da çalışabilir ama\n" +"Firefox ile kullanımı daha kolaydır ve\n" +"anonimliği sağlamak konusunda Firefox daha iyidir.\n" +"\n" +"Eğer Firefox kurmak isterseniz İptal'e tıklayın ve\n" +"Firefox indirme sayfasına gidin." + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Firefox'u kurduğunuzda Tor kurulum yazılımını tekrar\n" +"çalıştırabilirsiniz.\n" +"\n" +"Ya da Tor'u Firefox olmadan kullanmak istiyorsanız\n" +"basitçe Devam'a tıklayın." + + diff -Nru vidalia-0.2.10/pkg/win32/po/.tx/config vidalia-0.2.15/pkg/win32/po/.tx/config --- vidalia-0.2.10/pkg/win32/po/.tx/config 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/.tx/config 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,127 @@ +[main] +host = https://www.transifex.net + +[torproject.2-vidalia-installer-vidalia-pot] +source_file = templates/vidalia.pot +source_lang = en +trans.af = af/vidalia_af.po +trans.ak = ak/vidalia_ak.po +trans.am = am/vidalia_am.po +trans.ar = ar/vidalia_ar.po +trans.arn = arn/vidalia_arn.po +trans.ast = ast/vidalia_ast.po +trans.az = az/vidalia_az.po +trans.be = be/vidalia_be.po +trans.bg = bg/vidalia_bg.po +trans.bn = bn/vidalia_bn.po +trans.bn_IN = bn_IN/vidalia_bn_IN.po +trans.bo = bo/vidalia_bo.po +trans.br = br/vidalia_br.po +trans.bs = bs/vidalia_bs.po +trans.ca = ca/vidalia_ca.po +trans.cs = cs/vidalia_cs.po +trans.csb = csb/vidalia_csb.po +trans.cy = cy/vidalia_cy.po +trans.da = da/vidalia_da.po +trans.de = de/vidalia_de.po +trans.de_AT = de_AT/vidalia_de_AT.po +trans.de_CH = de_CH/vidalia_de_CH.po +trans.de_DE = de_DE/vidalia_de_DE.po +trans.dz = dz/vidalia_dz.po +trans.el = el/vidalia_el.po +trans.eo = eo/vidalia_eo.po +trans.es = es/vidalia_es.po +trans.et = et/vidalia_et.po +trans.eu = eu/vidalia_eu.po +trans.fa = fa/vidalia_fa.po +trans.fi = fi/vidalia_fi.po +trans.fil = fil/vidalia_fil.po +trans.fo = fo/vidalia_fo.po +trans.fr = fr/vidalia_fr.po +trans.fur = fur/vidalia_fur.po +trans.fy = fy/vidalia_fy.po +trans.ga = ga/vidalia_ga.po +trans.gl = gl/vidalia_gl.po +trans.gu = gu/vidalia_gu.po +trans.gun = gun/vidalia_gun.po +trans.ha = ha/vidalia_ha.po +trans.he = he/vidalia_he.po +trans.hi = hi/vidalia_hi.po +trans.hr = hr/vidalia_hr.po +trans.ht = ht/vidalia_ht.po +trans.hu = hu/vidalia_hu.po +trans.hy = hy/vidalia_hy.po +trans.id = id/vidalia_id.po +trans.is = is/vidalia_is.po +trans.it = it/vidalia_it.po +trans.ja = ja/vidalia_ja.po +trans.jv = jv/vidalia_jv.po +trans.ka = ka/vidalia_ka.po +trans.km = km/vidalia_km.po +trans.kn = kn/vidalia_kn.po +trans.ko = ko/vidalia_ko.po +trans.ku = ku/vidalia_ku.po +trans.kw = kw/vidalia_kw.po +trans.ky = ky/vidalia_ky.po +trans.lb = lb/vidalia_lb.po +trans.lg = lg/vidalia_lg.po +trans.ln = ln/vidalia_ln.po +trans.lo = lo/vidalia_lo.po +trans.lt = lt/vidalia_lt.po +trans.lv = lv/vidalia_lv.po +trans.mg = mg/vidalia_mg.po +trans.mi = mi/vidalia_mi.po +trans.mk = mk/vidalia_mk.po +trans.ml = ml/vidalia_ml.po +trans.mn = mn/vidalia_mn.po +trans.mr = mr/vidalia_mr.po +trans.ms = ms/vidalia_ms.po +trans.mt = mt/vidalia_mt.po +trans.my = my/vidalia_my.po +trans.nah = nah/vidalia_nah.po +trans.nap = nap/vidalia_nap.po +trans.nb = nb/vidalia_nb.po +trans.ne = ne/vidalia_ne.po +trans.nl = nl/vidalia_nl.po +trans.nn = nn/vidalia_nn.po +trans.nso = nso/vidalia_nso.po +trans.oc = oc/vidalia_oc.po +trans.or = or/vidalia_or.po +trans.pa = pa/vidalia_pa.po +trans.pap = pap/vidalia_pap.po +trans.pl = pl/vidalia_pl.po +trans.pms = pms/vidalia_pms.po +trans.ps = ps/vidalia_ps.po +trans.pt = pt/vidalia_pt.po +trans.pt_BR = pt_BR/vidalia_pt_BR.po +trans.ro = ro/vidalia_ro.po +trans.ru = ru/vidalia_ru.po +trans.sco = sco/vidalia_sco.po +trans.sk = sk/vidalia_sk.po +trans.sl = sl/vidalia_sl.po +trans.so = so/vidalia_so.po +trans.son = son/vidalia_son.po +trans.sq = sq/vidalia_sq.po +trans.sr = sr/vidalia_sr.po +trans.st = st/vidalia_st.po +trans.su = su/vidalia_su.po +trans.sv = sv/vidalia_sv.po +trans.sw = sw/vidalia_sw.po +trans.ta = ta/vidalia_ta.po +trans.te = te/vidalia_te.po +trans.tg = tg/vidalia_tg.po +trans.th = th/vidalia_th.po +trans.ti = ti/vidalia_ti.po +trans.tk = tk/vidalia_tk.po +trans.tr = tr/vidalia_tr.po +trans.uk = uk/vidalia_uk.po +trans.ur = ur/vidalia_ur.po +trans.ve = ve/vidalia_ve.po +trans.vi = vi/vidalia_vi.po +trans.wa = wa/vidalia_wa.po +trans.wo = wo/vidalia_wo.po +trans.zh_CN = zh_CN/vidalia_zh_CN.po +trans.zh_HK = zh_HK/vidalia_zh_HK.po +trans.zh_TW = zh_TW/vidalia_zh_TW.po +trans.zu = zu/vidalia_zu.po + diff -Nru vidalia-0.2.10/pkg/win32/po/uk/vidalia_uk.po vidalia-0.2.15/pkg/win32/po/uk/vidalia_uk.po --- vidalia-0.2.10/pkg/win32/po/uk/vidalia_uk.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/uk/vidalia_uk.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,261 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2008-12-24 21:56+0000\n" +"Last-Translator: Roger Dingledine \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} інсталяція" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " +"and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing " +"the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " +"configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Запустити встановленні компоненти зараз" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that " +"helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "Домашня сторінка ${VIDALIA_NAME}" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia це інтерфейс який допоможе вам керувати, спостерігати, та " +"налаштовувати Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "Запускати при завантаженні" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Автоматично запускати ${VIDALIA_NAME} при завантаженні." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "Додати до меню Пуск" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Додати ${VIDALIA_NAME} до вашого меню Пуск." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Запустити ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor це система для анонімного користування Інтернет, допомагає зберегти " +"анонімність при перегляді Веб сторінок та публікації, обміну миттєвими " +"повідомленнями, IRC, і багато чого іншого." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Видалити ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Встановити ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"У вас вже є конфігураційний файл Tor.$\n" +"$\n" +"Бажаєте перезаписати його типовим зразком конфігураційного файла?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Документація" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Встановити документацію ${TOR_NAME}." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "Додати до меню Пуск" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Додати ${TOR_NAME} до вашого меню Пуск." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +#, fuzzy +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Видалити ${POLIPO_DESC}." + +#, fuzzy +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "Встановити ${POLIPO_DESC}." + +#, fuzzy +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "Додати до меню Пуск" + +#, fuzzy +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "Додати ${POLIPO_NAME} до вашого меню Пуск." + +#, fuzzy +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "Запускати при завантаженні" + +#, fuzzy +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "Автоматично запускати ${POLIPO_NAME} при завантаженні." + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton це розширення для Firefox яке дозволяє вам швидко включати або " +"виключати анонімний перегляд веб сторінок." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Видалити ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Встановити ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Додати до Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Додати розширення ${TORBUTTON_DESC} до Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "Дані програми" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Видалити збережені дані програми та файли конфігурації." + +msgctxt "LanguageCode" +msgid "en" +msgstr "en" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox не встановлено" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + diff -Nru vidalia-0.2.10/pkg/win32/po/ur/vidalia_ur.po vidalia-0.2.15/pkg/win32/po/ur/vidalia_ur.po --- vidalia-0.2.10/pkg/win32/po/ur/vidalia_ur.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ur/vidalia_ur.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/ve/vidalia_ve.po vidalia-0.2.15/pkg/win32/po/ve/vidalia_ve.po --- vidalia-0.2.10/pkg/win32/po/ve/vidalia_ve.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/ve/vidalia_ve.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ve\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/vi/vidalia_vi.po vidalia-0.2.15/pkg/win32/po/vi/vidalia_vi.po --- vidalia-0.2.10/pkg/win32/po/vi/vidalia_vi.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/vi/vidalia_vi.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,270 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:09+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} thiết lập" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "Chào mừng đến với ${BUNDLE_NAME} Pháp thuật Thiết lập" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} tài liệu hướng dẫn cài đặt" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"Cài đặt xong.\n" +"Vui lòng xem https://www.torproject.org/docs/tor-doc-windows để tìm hiểu làm thế nào để cấu hình những ứng dụng của bạn để dùng Tor.\n" +"\n" +"Nếu bạn đã cài đặt nút Torbutton, bạn sẽ cần phải khởi động lại Firefox." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "Cho chạy các thành phần đã cài đặt bây giờ" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Gỡ bỏ ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} thiết lập" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"Pháp thuật này sẽ hướng dẫn bạn thông qua việc cài đặt Vidalia, một giao diện giúp bạn kiểm soát, giám sát, và cấu hình Tor.\n" +"\n" +" $_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "Chào mừng đến với ${VIDALIA_NAME} Pháp thuật Thiết lập" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} trang chủ" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" +"Vidalia là một giao diện giúp bạn kiểm soát, giám sát, và cấu hình Tor." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "Tự động cho chạy ${VIDALIA_NAME} lúc khởi chạy." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "Thêm ${VIDALIA_NAME} vào Trình đơn Start của bạn." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "Cho chạy ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" +"Tor là một hệ thống để sử dụng Internet nặc danh, giúp bạn dấu tên mạng Web " +"duyệt lước và xuất bản, tin nhắn tức thì, IRC, và nhiều hơn nữa." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Gỡ bỏ ${TOR_DESC}" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "Cài đặt ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"Bạn đã có một tập tin cấu hình Tor.$\n" +"$\n" +" Bạn có muốn ghi đè lên nó với tập tin mặc định các cấu hình mẫu không?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "Tài liệu" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "Cài đặt ${TOR_NAME} tài liệu." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "Thêm ${TOR_NAME} vào Trình đơn Start của bạn." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" +"Torbutton là một phần mở rộng của Firefox để cho phép bạn nhanh chóng bật " +"hoặc tắt chức năng duyệt web ẩn danh." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "Gỡ bỏ ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "Cài đặt ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "Thêm vào Firefox" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "Thêm ${TORBUTTON_DESC} vào phần mở rộng cho Firefox." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" +"Không tìm thấy Firefox trên hệ thống của bạn. Không cài đặt Torbutton." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Dữ liệu Ứng dụng " + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "Gỡ bỏ dữ liệu ứng dụng và những tập tin cấu hình lưu trữ." + +msgctxt "LanguageCode" +msgid "en" +msgstr "en" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "Firefox không được cài đặt" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" +"Chúng tôi khuyên bạn cài đặt Firefox trước khi tiếp tục, để an toàn nhất." + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"Các trình duyệt Web Mozilla Firefox không được cài đặt trên máy tính của bạn.\n" +"Tor sẽ làm việc với các trình duyệt khác, chẳng hạn như Internet Explorer, nhưng\n" +"dễ xử dụng với Firefox hơn, cũng như làm việc tốt hơn để\n" +"bảo vệ danh tính của bạn.\n" +"\n" +" Nếu bạn muốn cài đặt Firefox, xin vui lòng nhấn Hủy bỏ, sau đó đi \n" +" đến trang download Firefox tại" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"Khi bạn đã thực hiện xong việc cài đặt Firefox, bạn có thể chạy Bộ cài đặt\n" +"Tor một lần nữa.\n" +"\n" +" Hoặc, nếu bạn muốn cài đặt Tor mà không có Firefox, bạn chỉ cần\n" +" nhấn nút Kế tiếp để tiếp tục." + + diff -Nru vidalia-0.2.10/pkg/win32/po/wa/vidalia_wa.po vidalia-0.2.15/pkg/win32/po/wa/vidalia_wa.po --- vidalia-0.2.10/pkg/win32/po/wa/vidalia_wa.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/wa/vidalia_wa.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/wo/vidalia_wo.po vidalia-0.2.15/pkg/win32/po/wo/vidalia_wo.po --- vidalia-0.2.10/pkg/win32/po/wo/vidalia_wo.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/wo/vidalia_wo.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,207 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyGroupDesc" +msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." +msgstr "" + +msgctxt "PrivoxyUninstDesc" +msgid "Remove ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyAppDesc" +msgid "Install ${PRIVOXY_DESC}." +msgstr "" + +msgctxt "PrivoxyShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PrivoxyShortcutsDesc" +msgid "Add ${PRIVOXY_NAME} to your Start menu." +msgstr "" + +msgctxt "PrivoxyStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PrivoxyStartupDesc" +msgid "Automatically run ${PRIVOXY_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity." +"\n\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "When you are done installing Firefox, you can once again run the\n" +"Tor installer." +"\n\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/po/zh_CN/vidalia_zh_CN.po vidalia-0.2.15/pkg/win32/po/zh_CN/vidalia_zh_CN.po --- vidalia-0.2.10/pkg/win32/po/zh_CN/vidalia_zh_CN.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/zh_CN/vidalia_zh_CN.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,269 @@ +# +# runasand , 2011. +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} 安装向导" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"该向导将会引导您完成 Tor、Vidalia、Polipo 和 Torbutton 的安装。\n" +"\n" +"Tor 是可以匿名访问 Internt 的系统,能够帮助您隐匿网页的浏览与发布、即时聊天、IRC 及其他活动。Vidalia 是一个用户图形界面,能帮助您控制、监视和配置Tor。\n" +"\n" +"Polipo 是一种缓冲型网页代理可以帮助增强 Tor 的网页浏览性能。\n" +"\n" +"Torbutton 是一个 Firefox 浏览器扩展,可以快速启用或禁用匿名网页浏览。\n" +"\n" +"如果您曾经安装过 Tor、Vidalia、Polipo 或 Firefox,请确保在运行此安装向导前这些程序未在运行。\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "欢迎使用 ${BUNDLE_NAME} 安装向导" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} 安装文档" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"安装完成。\n" +"请访问 https://www.torproject.org/docs/tor-doc-windows 了解如何配置应用程序使用 Tor。\n" +"\n" +"如果您选择了安装 Torbutton,您需要重新启动火狐 (Firefox) 浏览器。" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "现在运行已安装组件" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia 是能帮助您控制、监视及配置 Tor 的图形化界面。" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "移除 ${VIDALIA_DESC}。" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} 安装向导" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"该向导将会引导您安装 Vidalia - 一种能帮助您控制、监视及配置 Tor 的图形化界面。\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "欢迎使用 ${VIDALIA_NAME} 安装向导" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} 主页快捷方式" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "Vidalia 是能帮助您控制、监视及配置 Tor 的图形化界面。" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "在系统启动时运行" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "自动在系统启动时运行 ${VIDALIA_NAME}。" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "添加至开始菜单程序组" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "添加 ${VIDALIA_NAME} 至开始菜单程序组。" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "现在运行 ${VIDALIA_NAME}" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "Tor 是一种可以匿名访问 Internt 的系统,它可以帮助您隐匿网页的浏览与发布、即时聊天、IRC 及其他更多活动。" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "移除 ${TOR_DESC}。" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "安装 ${TOR_DESC}。" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"安装程序检测到已存在的 Tor 配置文件。$\n" +"$\n" +"是否要使用默认的配置文件覆盖它?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "文档" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "安装 ${TOR_NAME} 文档。" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "添加至开始菜单程序组" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "添加 ${TOR_NAME} 至开始菜单程序组。" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "Polipo 是缓冲型网页代理能够增强使用 Tor 时的网页浏览性能。" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "移除 ${POLIPO_DESC}。" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "安装 ${POLIPO_DESC}。" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "添加至开始菜单" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "添加 ${POLIPO_NAME} 至开始菜单。" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "在系统启动时运行" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "自动在系统启动时运行 ${POLIPO_NAME}。" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "Torbutton 是一个 Firefox 浏览器扩展,可以快速开启或关闭匿名网页浏览。" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "移除 ${TORBUTTON_DESC}。" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "安装 ${TORBUTTON_DESC}。" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "添加至火狐 (Firefox) 浏览器" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "添加 ${TORBUTTON_DESC} 扩展至火狐 (Firefox) 浏览器。" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "安装程序未检测到火狐 (Firefox) 浏览器,因此将停止添加 Torbutton 扩展。" + +msgctxt "AppData" +msgid "Application Data" +msgstr "Application Data" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "删除保存的程序数据和配置文件。" + +msgctxt "LanguageCode" +msgid "en" +msgstr "zh-cn" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "尚未安装 Firefox 浏览器" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "我们建议您在继续安装前安装 Firefox 浏览器,以获得最佳的安全性。" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" +"您的计算机尚未安装 Mozilla Firefox 网页浏览器。\n" +"Tor 将与配合其他浏览器工作,例如 Internet Explorer,但 Firefox 更易于使用,并能更好的保护您的匿名性。\n" +"\n" +"如果您想安装 Firefox,请点击 取消 并访问 Firefox 的下载页面 " + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" +"当您完成 Firefox 的安装后,再运行 Tor 安装程序。\n" +"\n" +"如果您希望仅安装 Tor 而不使用 Firefox,请点击 下一步 继续安装。" + + diff -Nru vidalia-0.2.10/pkg/win32/po/zh_HK/vidalia_zh_HK.po vidalia-0.2.15/pkg/win32/po/zh_HK/vidalia_zh_HK.po --- vidalia-0.2.10/pkg/win32/po/zh_HK/vidalia_zh_HK.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/zh_HK/vidalia_zh_HK.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:10+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_HK\n" +"Plural-Forms: nplurals=1; plural=0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/po/zh_TW/vidalia_zh_TW.po vidalia-0.2.15/pkg/win32/po/zh_TW/vidalia_zh_TW.po --- vidalia-0.2.10/pkg/win32/po/zh_TW/vidalia_zh_TW.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/zh_TW/vidalia_zh_TW.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,274 @@ +msgid "" +msgstr "" +"Project-Id-Version: Vidalia\n" +"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2008-07-17 03:22+0000\n" +"Last-Translator: Matt \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 1.1.0\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "${BUNDLE_NAME} 安裝精靈" + +#, fuzzy +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " +"and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " +"GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing " +"the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " +"make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" +"安裝精靈將會引導您安裝 Tor,Vidalia,Privoxy 和 Torbutton.\n" +"\n" +"如果您曾經安裝過 Tor,Vidalia,Privoxy 或 Firefox,請確保在執行此安裝精靈前這些" +"程式未在執行中.\n" +"\n" +"$_CLICK" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "歡迎使用 ${BUNDLE_NAME} 安裝精靈" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "${TOR_NAME} 安裝文檔" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " +"configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" +"安裝完成.\n" +"請訪問 https://www.torproject.org/docs/tor-doc-windows 來獲取關於 Tor 的配置" +"訊息.\n" +"\n" +"如果選擇了安裝 Torbutton,您需要重新啟動火狐(Firefox)瀏覽器." + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "現在執行已安裝組件" + +#, fuzzy +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "安裝 ${VIDALIA_DESC}." + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "Remove ${VIDALIA_DESC}." + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "${VIDALIA_NAME} 安裝嚮導" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that " +"helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" +"安裝精靈將會引導您安裝 ${VIDALIA_DESC}.\n" +"\n" +"$_CLICK" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "歡迎使用 ${VIDALIA_NAME} 安裝精靈" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "${VIDALIA_NAME} 主頁捷徑" + +#, fuzzy +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "安裝 ${VIDALIA_DESC}." + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "在系統啟動時執行" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "自動在系統啟動時執行 ${VIDALIA_NAME}." + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "添加至開始菜單程式集" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "添加 ${VIDALIA_NAME} 至開始菜單程式集." + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "現在執行 ${VIDALIA_NAME}" + +#, fuzzy +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "安裝 ${TOR_DESC}." + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "Remove ${TOR_DESC}." + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "安裝 ${TOR_DESC}." + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" +"安裝程式檢測到已存在的 Tor 配置檔案.$\n" +"$\n" +"是否要使用默認的配置檔案覆蓋它?" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "文檔" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "安裝 ${TOR_NAME} 文檔." + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "添加至開始菜單程式集" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "添加 ${TOR_NAME} 至開始菜單程式集." + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +#, fuzzy +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "Remove ${POLIPO_DESC}." + +#, fuzzy +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "安裝 ${POLIPO_DESC}." + +#, fuzzy +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "添加至開始菜單程式集" + +#, fuzzy +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "添加 ${POLIPO_NAME} 至開始菜單程式集." + +#, fuzzy +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "在系統啟動時執行" + +#, fuzzy +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "自動在系統啟動時執行 ${POLIPO_NAME}." + +#, fuzzy +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "安裝 ${TORBUTTON_DESC}." + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "安裝 ${TORBUTTON_DESC}." + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "添加至火狐(Firefox)瀏覽器" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "添加 ${TORBUTTON_DESC} 擴展至火狐(Firefox)瀏覽器." + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "安裝程序未檢測到火狐(Firefox)瀏覽器,因此將停止添加 Torbutton 擴展." + +msgctxt "AppData" +msgid "Application Data" +msgstr "Application Data" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "zh_TW" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + diff -Nru vidalia-0.2.10/pkg/win32/po/zu/vidalia_zu.po vidalia-0.2.15/pkg/win32/po/zu/vidalia_zu.po --- vidalia-0.2.10/pkg/win32/po/zu/vidalia_zu.po 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/po/zu/vidalia_zu.po 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,240 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: The Tor Project\n" +"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n" +"POT-Creation-Date: 2008-07-12 05:29+0000\n" +"PO-Revision-Date: 2011-08-10 11:11+0000\n" +"Last-Translator: \n" +"Language-Team: translations@vidalia-project.net\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +msgctxt "BundleSetupCaption" +msgid "${BUNDLE_NAME} setup" +msgstr "" + +msgctxt "BundleWelcomeText" +msgid "" +"This wizard will guide you through the installation of Tor, Vidalia, Polipo, and Torbutton.\n" +"\n" +"Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"Polipo is a caching web proxy that helps increase performance of browsing the web through Tor.\n" +"\n" +"Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n" +"\n" +"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please make sure they are not running before continuing this installation.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "BundleWelcomeTitle" +msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" +msgstr "" + +msgctxt "BundleLinkText" +msgid "${TOR_NAME} installation documentation" +msgstr "" + +msgctxt "BundleFinishText" +msgid "" +"Installation is complete.\n" +"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n" +"\n" +"If you installed Torbutton, you will need to restart Firefox." +msgstr "" + +msgctxt "BundleRunNow" +msgid "Run installed components now" +msgstr "" + +msgctxt "VidaliaGroupDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaUninstDesc" +msgid "Remove ${VIDALIA_DESC}." +msgstr "" + +msgctxt "VidaliaSetupCaption" +msgid "${VIDALIA_NAME} setup" +msgstr "" + +msgctxt "VidaliaWelcomeText" +msgid "" +"This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n" +"\n" +"$_CLICK" +msgstr "" + +msgctxt "VidaliaWelcomeTitle" +msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" +msgstr "" + +msgctxt "VidaliaLinkText" +msgid "${VIDALIA_NAME} homepage" +msgstr "" + +msgctxt "VidaliaAppDesc" +msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." +msgstr "" + +msgctxt "VidaliaStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "VidaliaStartupDesc" +msgid "Automatically run ${VIDALIA_NAME} at startup." +msgstr "" + +msgctxt "VidaliaShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "VidaliaShortcutsDesc" +msgid "Add ${VIDALIA_NAME} to your Start menu." +msgstr "" + +msgctxt "VidaliaRunNow" +msgid "Run ${VIDALIA_NAME}" +msgstr "" + +msgctxt "TorGroupDesc" +msgid "" +"Tor is a system for using the Internet anonymously, helping you anonymize " +"Web browsing and publishing, instant messaging, IRC, and more." +msgstr "" + +msgctxt "TorUninstDesc" +msgid "Remove ${TOR_DESC}." +msgstr "" + +msgctxt "TorAppDesc" +msgid "Install ${TOR_DESC}." +msgstr "" + +msgctxt "TorAskOverwriteTorrc" +msgid "" +"You already have a Tor configuration file.$\n" +"$\n" +"Do you want to overwrite it with the default sample configuration file?" +msgstr "" + +msgctxt "TorDocumentation" +msgid "Documentation" +msgstr "" + +msgctxt "TorDocumentationDesc" +msgid "Install ${TOR_NAME} documentation." +msgstr "" + +msgctxt "TorShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "TorShortcutsDesc" +msgid "Add ${TOR_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoGroupDesc" +msgid "" +"Polipo is a caching web proxy that increases performance of web browsing " +"through Tor." +msgstr "" + +msgctxt "PolipoUninstDesc" +msgid "Remove ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoAppDesc" +msgid "Install ${POLIPO_DESC}." +msgstr "" + +msgctxt "PolipoShortcuts" +msgid "Add to Start Menu" +msgstr "" + +msgctxt "PolipoShortcutsDesc" +msgid "Add ${POLIPO_NAME} to your Start menu." +msgstr "" + +msgctxt "PolipoStartup" +msgid "Run At Startup" +msgstr "" + +msgctxt "PolipoStartupDesc" +msgid "Automatically run ${POLIPO_NAME} at startup." +msgstr "" + +msgctxt "TorbuttonGroupDesc" +msgid "" +"Torbutton is a Firefox extension that allows you to quickly enable or " +"disable anonymous web browsing." +msgstr "" + +msgctxt "TorbuttonUninstDesc" +msgid "Remove ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAppDesc" +msgid "Install ${TORBUTTON_DESC}." +msgstr "" + +msgctxt "TorbuttonAddToFirefox" +msgid "Add to Firefox" +msgstr "" + +msgctxt "TorbuttonAddToFirefoxDesc" +msgid "Add the ${TORBUTTON_DESC} extension to Firefox." +msgstr "" + +msgctxt "TorbuttonFirefoxNotFound" +msgid "Firefox was not found on your system. Not installing Torbutton." +msgstr "" + +msgctxt "AppData" +msgid "Application Data" +msgstr "" + +msgctxt "AppDataUninstDesc" +msgid "Remove saved application data and configuration files." +msgstr "" + +msgctxt "LanguageCode" +msgid "en" +msgstr "" + +msgctxt "FirefoxWarningPageTitle" +msgid "Firefox is not installed" +msgstr "" + +msgctxt "FirefoxWarningPageSubtitle" +msgid "" +"We recommend that you install Firefox before continuing, for best safety." +msgstr "" + +msgctxt "FirefoxWarningPageUpperText" +msgid "" +"The Mozilla Firefox Web browser is not installed on your computer.\n" +"Tor will work with other browsers, such as Internet Explorer, but\n" +"is easier to use with Firefox, which also does a better job of\n" +"protecting your anonymity.\n" +"\n" +"If you would like to install Firefox, please press Cancel, then go\n" +"to the Firefox download page at" +msgstr "" + +msgctxt "FirefoxWarningPageLowerText" +msgid "" +"When you are done installing Firefox, you can once again run the\n" +"Tor installer.\n" +"\n" +"Or, if you would prefer to install Tor without Firefox, simply\n" +"press Next to continue." +msgstr "" + + diff -Nru vidalia-0.2.10/pkg/win32/polipo.conf vidalia-0.2.15/pkg/win32/polipo.conf --- vidalia-0.2.10/pkg/win32/polipo.conf 2009-12-22 16:09:23.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/polipo.conf 2011-10-07 19:16:56.000000000 +0000 @@ -1,4 +1,4 @@ -### $Id: polipo.conf 4189 2009-12-22 16:09:23Z phobos $ +### $Id$ # ### Basic configuration ### ******************* diff -Nru vidalia-0.2.10/pkg/win32/ps/vidalia_ps.po vidalia-0.2.15/pkg/win32/ps/vidalia_ps.po --- vidalia-0.2.10/pkg/win32/ps/vidalia_ps.po 2010-06-23 12:23:40.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ps/vidalia_ps.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,217 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, " -"Vidalia, Polipo, and Torbutton.\n\nTor is a system for using the " -"Internet anonymously, helping you anonymize Web browsing and publishing, " -"instant messaging, IRC, and more. Vidalia is a GUI that helps you " -"control, monitor, and configure Tor.\n\nPolipo is a caching web proxy " -"that helps increase performance of browsing the web through " -"Tor.\n\nTorbutton is a Firefox extension that allows you to quickly " -"enable or disable anonymous web browsing.\n\nIf you have previously " -"installed Tor, Vidalia, Polipo, or Firefox, please make sure they are " -"not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PolipoGroupDesc" -msgid "Polipo is a caching web proxy that increases performance of web browsing through Tor." -msgstr "" - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "" - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "" - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "" - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/pt/vidalia_pt.po vidalia-0.2.15/pkg/win32/pt/vidalia_pt.po --- vidalia-0.2.10/pkg/win32/pt/vidalia_pt.po 2009-12-14 11:22:09.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/pt/vidalia_pt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,304 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-12-14 04:19-0700\n" -"Last-Translator: Tiago Faria \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "Instalação do ${BUNDLE_NAME}" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Este assistente irá guiá-lo na instalação do Tor, Vidalia, Privoxy e " -"Torbutton.\n" -"\n" -"Tor é um sistema que lhe permite utilizar a Internet de uma forma anónima, " -"ajudando-o a manter o anonimato no seu navegador e publicador, mensagens " -"instantâneas, IRC, e outras aplicações. Vidalia é uma aplicação gráfica que " -"o ajuda a controlar, monitorizar e configurar o Tor.\n" -"\n" -"Polipo é um proxy que mantém cópias locais das páginas visitadas, melhorando " -"a velocidade de acesso a páginas enquanto utiliza Tor.\n" -"\n" -"Torbutton é uma extensão do Firefox que permite activar e desactivar " -"rapidamente o anonimato de seu navegador.\n" -"\n" -"Se já instalou previamente o Tor, Vidalia, Polipo ou Firefox, por favor " -"certifique-se de que nenhuma das aplicações está actualmente em " -"funcionamento, antes de prosseguir com esta instalação.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Bem vindo ao Assistente de Instalação do ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Documentação da instalação ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"A instalação foi completada.\n" -"Por favor visite https://www.torproject.org/docs/tor-doc-windows para " -"aprender como configurar as suas aplicaçãoes para utilizar o Tor.\n" -"\n" -"Se instalou o Torbutton, terá que reiniciar o Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Executar os componentes instalados agora" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia é uma aplicação gráfica que o ajuda a controlar, monitorizar e " -"configurar o Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Remover ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "Instalação do ${VIDALIA_NAME}" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Este assistente irá guiá-lo na instalação do Vidalia, uma aplicação gráfica " -"que lhe permite controlar, monitorizar e configurar o Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Bem vindo ao Assistente de Instalação do ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} website" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia é uma aplicação gráfica que o ajuda a controlar, monitorizar, e " -"configurar o Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Executar Na Inicialização" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Executar o ${VIDALIA_NAME} automaticamente na inicialização." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Adicionar ao Menu Iniciar" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Adicionar ${VIDALIA_NAME} ao seu Menu Iniciar." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Executar o ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor é um sistema para utilizar a Internet anonimamente, ajudando-o a manter " -"o anonimato no navegador e publicador, aplicação de mensagens instantâneas, " -"IRC, e outras." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Remover ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Instalar ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Você já tem um ficheiro de configuração do Tor.$\n" -"$\n" -"Você deseja substituí-lo com o ficheiro de exemplo de configuração padrão?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Documentação" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Instalar a documentação do ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Adicionar ao Menu Iniciar" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Adicionar o ${TOR_NAME} ao seu Menu Iniciar." - -# caching web proxy? Acham bem? - Tiago -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"O Polipo é um proxy de cópias locais que melhora o desempenho da rede " -"enquanto utiliza Tor." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Remover ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Instalar ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Adicionar ao Menu Iniciar" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Adicionar o ${POLIPO_NAME} ao seu Menu Iniciar." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Executar Na Inicialização" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Executar o ${POLIPO_NAME} automaticamente na inicialização." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton é uma extensão do Firefox que permite activar e desactivar " -"rapidamente o anonimato do seu navegador." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Remover ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Instalar ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Adicionar ao Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Adicionar a extensão ${TORBUTTON_DESC} ao Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"O Firefox não foi encontrado no seu sistema. O Torbutton não será instalado." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Dados de Aplicação" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Remover dados da aplicação e ficheiros de configuração salvos." - -msgctxt "LanguageCode" -msgid "en" -msgstr "pt" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "O Firefox não está instalado" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Nós recomendamos a instalação do Firefox antes de continuar, para maior " -"segurança." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"O navegador de Internet Mozilla Firefox não está instalado no seu " -"computador.\n" -"O Tor vai funcionar com outros navegadores, assim como no Internet Explorer, " -"mas é mais fácil a sua utilização com o Firefox, que fará um melhor " -"trabalho para manter o seu anonimato.\n" -"\n" -"Se quer instalar o Firefox, por favor clique no botão Cancelar, e será " -"redireccionado para a página de download do Firefox " - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Quando terminar de instalar o Firefox, pode executar o instalador do Tor " -"novamente.\n" -"\n" -"Ou, se você preferir instalar o Tor sem o Firefox, simplesmente clique " -"Seguinte para continuar." diff -Nru vidalia-0.2.10/pkg/win32/pt_BR/vidalia_pt_BR.po vidalia-0.2.15/pkg/win32/pt_BR/vidalia_pt_BR.po --- vidalia-0.2.10/pkg/win32/pt_BR/vidalia_pt_BR.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/pt_BR/vidalia_pt_BR.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ro/vidalia_ro.po vidalia-0.2.15/pkg/win32/ro/vidalia_ro.po --- vidalia-0.2.10/pkg/win32/ro/vidalia_ro.po 2010-05-16 06:42:36.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ro/vidalia_ro.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,306 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-05-15 14:48-0600\n" -"Last-Translator: Pepelea Paul \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "Instalare ${BUNDLE_NAME}" - -# "supliment Firefox" este terminologia folosita de Mozilla in interfata in limba romana a mozilla.org. De aceea am preferat aceasta exprimare in locul "extensie Firefox". -# Pe viitor, incercati ca in traduceri, atunci cand va adresati utiliyatorului, sa folositi persoana a II-a plural si nu singular. -# De asemenea, evitati articularea inutila a numelor proprii, de exemplu "Tor-ului". "Tor" e mai corect, mai curat si mai simplu. -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Acest program vă va ghida prin instalarea Tor, Vidalia, Privoxy şi " -"Torbutton.\n" -"\n" -"Tor este un sistem pentru folosirea în mod anonim a Internetului, ce vă " -"ajută la anonimizarea navigării pe internet, mesageriei instant, IRC şi " -"multe altele. Vidalia este o interfaţă grafică ce vă ajută să controlaţi, " -"monitorizaţi şi configuraţi Tor.\n" -"\n" -"Privoxy este un proxy web pentru filtrare care îţi protejează intimitatea şi " -"ajută la înlăturarea reclamelor, bannerelor şi ferestrelor de tip pop-up.\n" -"\n" -"Torbutton este un supliment Firefox care vă permite activarea sau " -"dezactivarea rapidă a Tor.\n" -"\n" -"Daca aţi instalat în trecut Tor, Vidalia, Privoxy sau Firefox, vă rugăm să " -"vă asiguraţi că acestea nu rulează, înainte de a continua cu instalarea.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Bine aţi venit la instalarea ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Instalarea documentaţiei ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Instalarea s-a terminat cu succes.\n" -"Vă rugăm vizitaţi https://www.torproject.org/docs/tor-doc-windows pentru a " -"învăţa cum să configuraţi diferite aplicaţii pentru folosirea Tor.\n" -"\n" -"Daca aţi instalat Torbutton, este nevoie să reporniţi Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Porneşte acum componentele instalate" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia este o interfaţă grafică ce vă ajută să controlaţi, monitorizaţi şi " -"configuraţi Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Înlătură ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "Instalare ${VIDALIA_NAME}" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Acest program vă va ghida prin instalarea Vidalia, un program ce vă ajută să " -"controlaţi, monitorizaţi şi configuraţi Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Bine aţi venit la instalarea ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Site-ul oficial ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia este o interfaţă grafică ce vă ajută să controlaţi, monitorizaţi şi " -"configuraţi Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Porneşte odată cu sistemul de operare" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Rulează automat ${VIDALIA_NAME} la pornire." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Adaugă în meniul Start" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Adaugă ${VIDALIA_NAME} în meniul Start." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Porneşte ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor este un sistem pentru folosirea în mod anonim a internetului, ce vă " -"ajută la anonimizarea navigării pe web, mesageriei instant, IRC şi multe " -"altele." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Înlătură ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Instalează ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Există deja un fişier de configurare pentru Tor.$\n" -"$\n" -"Doriţi să îl suprascrieţi cu un fişier implicit de configurare?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Documentaţie" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Instalează documentaţia ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Adaugă în meniul Start" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Adaugă ${TOR_NAME} în meniul Start." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo este un proxy web pentru depozitare care creşte performanţele " -"navigării pe Web prin Tor." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Elimini ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Instalezi ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Adaugă în meniul Start" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Adaugă ${POLIPO_NAME} în meniul Start." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Porneşte odată cu sistemul de operare" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Rulează ${POLIPO_NAME} la pornire." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton este un supliment Firefox care vă permite activarea sau " -"dezactivarea rapidă a Tor." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Înlătură ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Instalează ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Adaugă la Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Adaugă suplimentul ${TORBUTTON_DESC} la Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"Firefox nu a fost găsit pe sistemul dumneavoastră. Torbutton nu va fi " -"instalat." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Date aplicaţie" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Înlătură datele salvate şi fişierele de configurare a aplicaţiei." - -msgctxt "LanguageCode" -msgid "en" -msgstr "ro" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox nu este instalat." - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Vă recomandăm să instalaţi Firefox înainte să continuaţi, pentru o siguranţă " -"sporită." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Navigatorul Mozilla Firefox nu este instalat pe computerul dumneavoastră.\n" -"Tor va funcţiona cu alte navigatoare, precum Internet Explorer, dar\n" -"este mai uşor de folosit cu Firefox, care protejează mai bine\n" -"anonimitatea dumneavoastră.\n" -"\n" -"Dacă doriţi să instalaţi Firefox, apăsaţi Revocare, apoi vizitaţi\n" -" pagina oficială a Firefox, la" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"După ce Firefox a fost instalat cu success, puteţi rula încă o dată\n" -"programul de instalare Tor.\n" -"\n" -"Dacă preferaţi să instalaţi Tor fără Firefox,\n" -"apăsaţi Înainte pentru a continua." diff -Nru vidalia-0.2.10/pkg/win32/ru/vidalia_ru.po vidalia-0.2.15/pkg/win32/ru/vidalia_ru.po --- vidalia-0.2.10/pkg/win32/ru/vidalia_ru.po 2009-10-31 21:19:53.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ru/vidalia_ru.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,298 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-10-30 18:56+0000\n" -"Last-Translator: Alexey Vertinsky \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "Установка ${BUNDLE_NAME}" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Этот помощник поможет вам установить Tor, Vidalia, Privoxy, и Torbutton.\n" -"\n" -"Tor это система анонимного использования сети Internet, которая поможет " -"анонимизировать просмотр страниц, публикации, обмен сообщениями, IRC, и " -"многое другое. Vidalia это программа с оконным интерфейсом для настройки, " -"управления и контроля Tor.\n" -"\n" -"Privoxy это кэширующий веб-прокси который ускоряет работу в интернете.\n" -"\n" -"Torbutton это расширение Firefox позволяющее быстро включить или выключить " -"режим анонимного просмотра страниц.\n" -"\n" -"Если у вас уже установлены Tor, Vidalia, Privoxy, или Firefox; Прежде чем " -"продолжить установку: убедитесь что эти программы не запущены.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Вас приветствует мастер установки ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Инструкция по установке ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Установка завершена.\n" -"Пожалуйста прочитайте https://www.torproject.org/docs/tor-doc-windows чтобы " -"узнать, как настроить другие приложения использовать Tor.\n" -"\n" -"Если вы установили Torbutton, вам придётся перезапустить Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Запустить установленные компоненты" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia это программа с оконным интерфейсом для настройки, управления и " -"контроля Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Удалить ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "Установка ${VIDALIA_NAME}" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Этот мастер установит Vidalia, программу с оконным интерфейсом для " -"настройки, управления и контроля Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Вас приветствует мастер установки ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Страница проекта ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia это программа с оконным интерфейсом для настройки, управления и " -"контроля Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Автозапуск" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Автоматически запускать ${VIDALIA_NAME} при загрузке системы." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Ярлыки в Главное Меню" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Добавить ${VIDALIA_NAME} в Главное Меню." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Запустить ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor это система анонимного использования сети Internet, которая поможет " -"анонимизировать Вашу веб-деятельность, системы мгновенного обмена " -"сообщениями, IRC, и многое другое." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Удалить ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Установить ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"У вас уже есть файл настроек Tor.$\n" -"$\n" -"Хотите ли вы перезаписать его файлом из дистрибутива?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Документация" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Установить документацию ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Ярлыки в Главное Меню" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Добавить ${TOR_NAME} в Главное Меню." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polipo это кэширующий прокси сервер, он ускоряет работу с интернетом через " -"Tor." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Удалить ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Установить ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Добавить в Меню \"Пуск\"" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Добавить ${POLIPO_NAME} в ваше меню \"Пуск\"." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Запускать при старте системы" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Автоматически запускать ${POLIPO_NAME} при загрузке системы." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton это расширение Firefox для быстрого включения/выключения режима " -"анонимного использования браузера." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Удалить ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Установить ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Добавить в Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Добавить расширение ${TORBUTTON_DESC} в Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"Не удалось найти Firefox на вашем компьютере. Torbutton не будет установлен." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Application Data" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Удалить данные приложений и файлы настроек." - -msgctxt "LanguageCode" -msgid "en" -msgstr "ru" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox не установлен на компьютере" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "Из соображений безопасности, мы рекомендуем сначала установить Firefox" - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Firefox не установлен на вашем компьютере.\n" -"Tor будет работать с другими браузерами, такими как Internet Explorer, но\n" -"лучше использовать Firefox, который, к тому же, заботится о Вашей " -"анонимности.\n" -"\n" -"Если Вы хотите установить Firefox , нажмите Отмена, а затем перейдите \n" -"на страницу для скачиваания Firefox" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Когда Вы закончите установку Firefox, Вы можете опять запустить\n" -"установку Tor. \n" -"\n" -"Или, если Вы хотите установить Tor без Firefox, просто\n" -"нажмите Далее." diff -Nru vidalia-0.2.10/pkg/win32/sco/vidalia_sco.po vidalia-0.2.15/pkg/win32/sco/vidalia_sco.po --- vidalia-0.2.10/pkg/win32/sco/vidalia_sco.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/sco/vidalia_sco.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/sk/vidalia_sk.po vidalia-0.2.15/pkg/win32/sk/vidalia_sk.po --- vidalia-0.2.10/pkg/win32/sk/vidalia_sk.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/sk/vidalia_sk.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/sl/vidalia_sl.po vidalia-0.2.15/pkg/win32/sl/vidalia_sl.po --- vidalia-0.2.10/pkg/win32/sl/vidalia_sl.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/sl/vidalia_sl.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,181 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/so/vidalia_so.po vidalia-0.2.15/pkg/win32/so/vidalia_so.po --- vidalia-0.2.10/pkg/win32/so/vidalia_so.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/so/vidalia_so.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/son/vidalia_son.po vidalia-0.2.15/pkg/win32/son/vidalia_son.po --- vidalia-0.2.10/pkg/win32/son/vidalia_son.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/son/vidalia_son.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/sq/vidalia_sq.po vidalia-0.2.15/pkg/win32/sq/vidalia_sq.po --- vidalia-0.2.10/pkg/win32/sq/vidalia_sq.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/sq/vidalia_sq.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/sr/vidalia_sr.po vidalia-0.2.15/pkg/win32/sr/vidalia_sr.po --- vidalia-0.2.10/pkg/win32/sr/vidalia_sr.po 2010-05-04 17:44:21.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/sr/vidalia_sr.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,217 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, " -"Vidalia, Polipo, and Torbutton.\n\nTor is a system for using the " -"Internet anonymously, helping you anonymize Web browsing and publishing, " -"instant messaging, IRC, and more. Vidalia is a GUI that helps you " -"control, monitor, and configure Tor.\n\nPolipo is a caching web proxy " -"that helps increase performance of browsing the web through " -"Tor.\n\nTorbutton is a Firefox extension that allows you to quickly " -"enable or disable anonymous web browsing.\n\nIf you have previously " -"installed Tor, Vidalia, Polipo, or Firefox, please make sure they are " -"not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PolipoGroupDesc" -msgid "Polipo is a caching web proxy that increases performance of web browsing through Tor." -msgstr "" - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "" - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "" - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "" - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/st/vidalia_st.po vidalia-0.2.15/pkg/win32/st/vidalia_st.po --- vidalia-0.2.10/pkg/win32/st/vidalia_st.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/st/vidalia_st.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/su/vidalia_su.po vidalia-0.2.15/pkg/win32/su/vidalia_su.po --- vidalia-0.2.10/pkg/win32/su/vidalia_su.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/su/vidalia_su.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/sv/vidalia_sv.po vidalia-0.2.15/pkg/win32/sv/vidalia_sv.po --- vidalia-0.2.10/pkg/win32/sv/vidalia_sv.po 2009-08-31 02:49:46.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/sv/vidalia_sv.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,306 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia Windows Installers\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-01-23 20:42+0000\n" -"Last-Translator: Robin \n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME}-installer" - -#, fuzzy -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Denna guide tar dig igenom installationen av Tor, Vidalia, Privoxy och " -"Torbutton.\n" -"\\nTor är ett program för att vara anonym på Internet och gör det möjligt " -"att anonymt surfa och publicera information, skicka snabbmeddelanden, " -"använda IRC, och mycket annat. Vidalia är ett användargränssnitt till Tor " -"som gör det enkelt att hantera, övervaka och konfigurera Tor.\n" -"\n" -"Privoxy är en filtrerande webbproxy som tar bort reklam, bannrar och pop-" -"ups.\n" -"\n" -"Torbutton är ett tillägg till Firefox som gör det möjligt att snabbt " -"aktivera eller inaktivera anonym surfning.\n" -"\n" -"Om du tidigare har installerat Tor, Vidalia, Privoxy eller Firefox, vänligen " -"försäkra dig om att de inte är igång innan du fortsätter installationen.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Välkommen till installationsguiden för ${BUNDLE_NAME}" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "Installeringsdokumentation för ${TOR_NAME}" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Installationen är klar. \n" -"Vänligen se https://www.torproject.org/docs/tor-doc-windows för information " -"om hur du använder Tor med dina existerande program.\n" -"\n" -"Om du valde att installera Torbutton, måste du starta om Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Kör igång installerade program" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia är ett användargränssnitt som gör det enkelt att hantera, övervaka " -"och konfigurera Tor." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Ta bort ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME}-installer" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Denna guide tar dig igenom installationen av Vidalia, ett användargränssnitt " -"som gör det enkelt att hantera, övervaka och konfigurera Tor.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Välkommen till installationsguiden för ${VIDALIA_NAME}" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME}-websidan" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia är ett användargränssnitt som gör det enkelt att hantera, övervaka " -"och konfigurera Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Kör vid uppstart" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Kör automatiskt igång ${VIDALIA_NAME} vid uppstart." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Lägg till i startmenyn" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Lägg till ${VIDALIA_NAME} i din startmeny." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Kör igång ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor är ett program för att vara anonym på Internet och gör det möjligt att " -"anonymt surfa och publicera information, skicka snabbmeddelanden, använda " -"IRC, och mycket annat." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Ta bort ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Installera ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Du har redan en konfigurationsfil för Tor.$\n" -"$\n" -"Vill du skriva över den med standardkonfigurationsfilen?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dokumentation" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Installera dokumentationen för ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Lägg till i startmenyn" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Lägg till ${TOR_NAME} i din startmeny." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" - -#, fuzzy -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Ta bort ${POLIPO_DESC}." - -#, fuzzy -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Installera ${POLIPO_DESC}." - -#, fuzzy -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Lägg till i startmenyn" - -#, fuzzy -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Lägg till ${POLIPO_NAME} i din startmeny." - -#, fuzzy -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Kör vid uppstart" - -#, fuzzy -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Kör automatiskt igång ${POLIPO_NAME} vid uppstart." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton är ett tillägg till Firefox som gör det möjligt att snabbt " -"aktivera eller inaktivera anonym surfning." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Ta bort ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Installera ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Lägg till i Mozilla Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Lägg till tillägget ${TORBUTTON_DESC} till Mozilla Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" -"Torbutton kan ej installeras: Mozilla Firefox hittades ej på din dator." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Programdata" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Ta bort tilläggat programdata och konfigurationsfiler." - -msgctxt "LanguageCode" -msgid "en" -msgstr "sv" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox är inte installerat" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Vi rekommenderar att du installerar Firefox innan du fortsätter för bästa " -"skydd." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Mozilla Firefox Web browsern är inte installerad på din dator.\n" -"Tor kommer att fungera med andra browsers t.ex. Internet Explorer, Men\n" -"det är enklare att använda Firefox vilket också gör ett bättre jobb att\n" -"skydda din anonymitet.\n" -"\n" -"Om du vill installera Firefox, tryck på Avsluta,gå sedan\n" -"till Firefox hemsidan" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"När du är färdig med att installera Firefox så kan du köra om\n" -"Tor installationen.\n" -"\n" -"Eller om du föredrar att installera Tor utan Firefox, så\n" -"tryck på Nästa för att fortsätta" - diff -Nru vidalia-0.2.10/pkg/win32/sw/vidalia_sw.po vidalia-0.2.15/pkg/win32/sw/vidalia_sw.po --- vidalia-0.2.10/pkg/win32/sw/vidalia_sw.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/sw/vidalia_sw.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ta/vidalia_ta.po vidalia-0.2.15/pkg/win32/ta/vidalia_ta.po --- vidalia-0.2.10/pkg/win32/ta/vidalia_ta.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ta/vidalia_ta.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/te/vidalia_te.po vidalia-0.2.15/pkg/win32/te/vidalia_te.po --- vidalia-0.2.10/pkg/win32/te/vidalia_te.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/te/vidalia_te.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/templates/vidalia.pot vidalia-0.2.15/pkg/win32/templates/vidalia.pot --- vidalia-0.2.10/pkg/win32/templates/vidalia.pot 2009-08-31 02:05:02.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/templates/vidalia.pot 1970-01-01 00:00:00.000000000 +0000 @@ -1,216 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia Windows Installers\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, " -"Vidalia, Polipo, and Torbutton.\n\nTor is a system for using the " -"Internet anonymously, helping you anonymize Web browsing and publishing, " -"instant messaging, IRC, and more. Vidalia is a GUI that helps you " -"control, monitor, and configure Tor.\n\nPolipo is a caching web proxy " -"that helps increase performance of browsing the web through " -"Tor.\n\nTorbutton is a Firefox extension that allows you to quickly " -"enable or disable anonymous web browsing.\n\nIf you have previously " -"installed Tor, Vidalia, Polipo, or Firefox, please make sure they are " -"not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PolipoGroupDesc" -msgid "Polipo is a caching web proxy that increases performance of web browsing through Tor." -msgstr "" - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "" - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "" - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "" - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/tg/vidalia_tg.po vidalia-0.2.15/pkg/win32/tg/vidalia_tg.po --- vidalia-0.2.10/pkg/win32/tg/vidalia_tg.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/tg/vidalia_tg.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/th/vidalia_th.po vidalia-0.2.15/pkg/win32/th/vidalia_th.po --- vidalia-0.2.10/pkg/win32/th/vidalia_th.po 2010-05-19 06:34:24.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/th/vidalia_th.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,213 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-07-14 19:59+0000\n" -"Last-Translator: Teerawat Kunlayanopakorn \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "ยินดีต้อนรับสู่ ${BUNDLE_NAME} Setup Wizard" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"ติดตั้งสำเร็จ\n" -"เพื่อที่จะกำหนดให้โปรแกรมของท่านใช้ Tor กรุณาไปยัง " -"https://www.torproject.org/docs/tor-doc-windows \n" -"\n" -"ถ้าท่านติดตั้ง Torbutton กรุณาเปิดโปรแกรม Firefox ใหม่" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "กำลังติดตั้ง Components " - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia คือโปรแกรมที่ช่วยให้ท่านควบคุม, ติดตาม, และกำหนดค่าให้แก่ Tor " -"ในรูปแบบกราฟฟิก" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "ติดตั้งใน Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "ไม่พบ Firefox ในระบบ ยกเลิกการติดตั้ง Torbutton" - -msgctxt "AppData" -msgid "Application Data" -msgstr "ข้อมูลโปรแกรม" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "ภาษาอังกฤษ" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "ไม่ได้ติดตั้ง Firefox " - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "เพื่อความปลอดภัย กรุณาติดตั้ง Firefox ก่อนที่จะดำเนินการต่อ" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/ti/vidalia_ti.po vidalia-0.2.15/pkg/win32/ti/vidalia_ti.po --- vidalia-0.2.10/pkg/win32/ti/vidalia_ti.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ti/vidalia_ti.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/tk/vidalia_tk.po vidalia-0.2.15/pkg/win32/tk/vidalia_tk.po --- vidalia-0.2.10/pkg/win32/tk/vidalia_tk.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/tk/vidalia_tk.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/tr/vidalia_tr.po vidalia-0.2.15/pkg/win32/tr/vidalia_tr.po --- vidalia-0.2.10/pkg/win32/tr/vidalia_tr.po 2010-06-12 15:57:52.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/tr/vidalia_tr.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,269 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-06-11 06:14-0600\n" -"Last-Translator: yunus kaba \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} Kurulumu" - -#, fuzzy -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"Bu sihirbaz Tor, Vidalia, Polipo ve Torbutonu yüklerken size yardımcı " -"olacak.Tor internette gezinmenizi, anlık mesajlaşmayı ve bir çok hizmeti " -"güvenli ve gizli şekilde kullanmanızı sağlar.Vidalia bu sistemi kontrol ve " -"ayarlamanızı sağlar." - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "${BUNDLE_NAME} Kurulum sihibazına Hoş Geldiniz" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} kurulum dökümanları" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Kurulum tamamlandı.\n" -"Uygulama ayarları için detaylı bilgiye https://www.torproject.org/docs/tor-" -"doc-windows adresinden ulaşabilirsiniz.\n" -"\n" -"Torbutonu yüklediyseniz, Firefox'u yeniden başlatmanız gerekiyor." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Yüklü bileşenleri çalıştır" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia arayüzü Tor'unuz kontrol ve ayarlamanızda yardımcı olan bir " -"programdır." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Kaldır ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} Kurulumu" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"Bu sihirbaz Tor, Vidalia, Polipo ve Torbutonu yüklerken size yardımcı " -"olacak.Vidalia bu sistemi kontrol ve ayarlamanızı sağlar.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "${VIDALIA_NAME} Kurulum sihibazına Hoş Geldiniz" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} anasayfası" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia arayüzü Tor'u kolayca yönetmenize yardımcı eder." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Başlangıçta çalıştır." - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "${VIDALIA_NAME} başlangıçta çalıştır." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Başlat'a ekle" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr " ${VIDALIA_NAME} Başlangıca ekle." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Çalıştır ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor internette gezinmenizi, anlık mesajlaşmayı ve bir çok hizmeti güvenli ve " -"gizli şekilde kullanmanızı sağlar." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Kaldır ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Kur ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"Ayar dosyasayı mevcut.$\n" -"$\n" -"Varsayılan ayarları üzerine yazmak ister misin?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Dökümanlar" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "${TOR_NAME} kurulum dökümanlarını yükle." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Başlat'a ekle" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr " ${TOR_NAME} Başlangıca ekle." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" -"Polippo web gezintinizi daha hızlı olması için önbellekleme yapan bir " -"hizmettir." - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Kaldır ${POLIPO_DESC}." - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Kur ${POLIPO_DESC}." - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Başlangıç Menüsüne Ekle" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr " ${POLIPO_NAME} Başlangıca ekle." - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Başlangıçta Çalıştır" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "${POLIPO_NAME} başlangıçta otomaik olarak çalıştır." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbuton bir Firefox eklentisi olup gizli ve güvenli şekilde internette " -"gezinmenizi sağlar." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Kaldır ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Kur ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Firefox'a ekle" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr " ${TORBUTTON_DESC} eklentisini Firefoxa ekle." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Yüklü Firefox bulunamadı, torbutton kurulmadı." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Uygulama Verisi" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Uygulama veriliverini ve ayar dosylarını kaldır." - -msgctxt "LanguageCode" -msgid "en" -msgstr "İngilizce" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox yüklü değil" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "Devam etmeden önce Firefoxu yüklemenizi tavsiye ederiz." - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/uk/vidalia_uk.po vidalia-0.2.15/pkg/win32/uk/vidalia_uk.po --- vidalia-0.2.10/pkg/win32/uk/vidalia_uk.po 2009-08-31 02:49:46.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/uk/vidalia_uk.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,261 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2008-12-24 21:56+0000\n" -"Last-Translator: Roger Dingledine \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} інсталяція" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Запустити встановленні компоненти зараз" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "Домашня сторінка ${VIDALIA_NAME}" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" -"Vidalia це інтерфейс який допоможе вам керувати, спостерігати, та " -"налаштовувати Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "Запускати при завантаженні" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Автоматично запускати ${VIDALIA_NAME} при завантаженні." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "Додати до меню Пуск" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Додати ${VIDALIA_NAME} до вашого меню Пуск." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Запустити ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor це система для анонімного користування Інтернет, допомагає зберегти " -"анонімність при перегляді Веб сторінок та публікації, обміну миттєвими " -"повідомленнями, IRC, і багато чого іншого." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Видалити ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Встановити ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"У вас вже є конфігураційний файл Tor.$\n" -"$\n" -"Бажаєте перезаписати його типовим зразком конфігураційного файла?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Документація" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Встановити документацію ${TOR_NAME}." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "Додати до меню Пуск" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Додати ${TOR_NAME} до вашого меню Пуск." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" - -#, fuzzy -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Видалити ${POLIPO_DESC}." - -#, fuzzy -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "Встановити ${POLIPO_DESC}." - -#, fuzzy -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "Додати до меню Пуск" - -#, fuzzy -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "Додати ${POLIPO_NAME} до вашого меню Пуск." - -#, fuzzy -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "Запускати при завантаженні" - -#, fuzzy -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "Автоматично запускати ${POLIPO_NAME} при завантаженні." - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "" -"Torbutton це розширення для Firefox яке дозволяє вам швидко включати або " -"виключати анонімний перегляд веб сторінок." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Видалити ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Встановити ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Додати до Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Додати розширення ${TORBUTTON_DESC} до Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "Дані програми" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Видалити збережені дані програми та файли конфігурації." - -msgctxt "LanguageCode" -msgid "en" -msgstr "en" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox не встановлено" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" - diff -Nru vidalia-0.2.10/pkg/win32/ve/vidalia_ve.po vidalia-0.2.15/pkg/win32/ve/vidalia_ve.po --- vidalia-0.2.10/pkg/win32/ve/vidalia_ve.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/ve/vidalia_ve.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/vi/vidalia_vi.po vidalia-0.2.15/pkg/win32/vi/vidalia_vi.po --- vidalia-0.2.10/pkg/win32/vi/vidalia_vi.po 2010-05-19 06:26:18.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/vi/vidalia_vi.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,256 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2010-03-05 22:28+0930\n" -"Last-Translator: Lyndon Johnson \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} thiết lập" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" -"Pháp thuật này sẽ hướng dẫn bạn thông qua sự cài đặt của Tor, Vidalia, " -"Privoxy, và Torbutton. \n" -"\n" -"Tor là một hệ thống để sử dụng Internet nặc danh, giúp bạn dấu lước duyệt " -"mạng web và xuất bản, tin nhắn tức thì, IRC, và nhiều hơn nữa. Vidalia là " -"một giao diện GUI giúp bạn kiểm soát, giám sát, và cấu hình Tor.\n" -"\n" -"Privoxy là một bộ lọc cho web ủy nhiệm để bảo vệ quyền riêng tư của bạn và " -"giúp loại bỏ các quảng cáo, biểu ngữ, và bộ tự mở.\n" -" \n" -"Torbutton là một phần mở rộng của Firefox để cho phép bạn nhanh chóng bật " -"hoặc tắt chức năng duyệt web ẩn danh.\n" -"\n" -"Nếu trước đó bạn đã cài đặt Tor, Vidalia, Privoxy, hoặc Firefox, hãy đảm bảo " -"rằng chúng không đang chạy trước khi tiếp tục sự cài đặt này.\n" -" \n" -" $_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "Chào mừng đến với ${BUNDLE_NAME} Pháp thuật Thiết lập" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} tài liệu hướng dẫn cài đặt" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" -"Cài đặt xong.\n" -"Vui lòng xem https://www.torproject.org/docs/tor-doc-windows để tìm hiểu làm " -"thế nào để cấu hình những ứng dụng của bạn để dùng Tor.\n" -"\n" -"Nếu bạn đã cài đặt nút Torbutton, bạn sẽ cần phải khởi động lại Firefox." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "Cho chạy các thành phần đã cài đặt bây giờ" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Gỡ bỏ ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} thiết lập" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" -"Pháp thuật này sẽ hướng dẫn bạn thông qua việc cài đặt Vidalia, một giao " -"diện giúp bạn kiểm soát, giám sát, và cấu hình Tor.\n" -"\n" -" $_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "Chào mừng đến với ${VIDALIA_NAME} Pháp thuật Thiết lập" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} trang chủ" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia là một giao diện giúp bạn kiểm soát, giám sát, và cấu hình Tor." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "Tự động cho chạy ${VIDALIA_NAME} lúc khởi chạy." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "Thêm ${VIDALIA_NAME} vào Trình đơn Start của bạn." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "Cho chạy ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" -"Tor là một hệ thống để sử dụng Internet nặc danh, giúp bạn dấu tên mạng Web " -"duyệt lước và xuất bản, tin nhắn tức thì, IRC, và nhiều hơn nữa." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Gỡ bỏ ${TOR_DESC}" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "Cài đặt ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" -"Bạn đã có một tập tin cấu hình Tor.$\n" -"$\n" -" Bạn có muốn ghi đè lên nó với tập tin mặc định các cấu hình mẫu không?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "Tài liệu" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "Cài đặt ${TOR_NAME} tài liệu." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "Thêm ${TOR_NAME} vào Trình đơn Start của bạn." - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" -"Privoxy là một proxy web lọc để bảo vệ quyền riêng tư của bạn và giúp loại " -"bỏ các quảng cáo, biểu ngữ, và bộ tự mở." - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "Gỡ bỏ ${PRIVOXY_DESC}." - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "Cài đặt ${PRIVOXY_DESC}." - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "Thêm vào Trình đơn Start" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "Thêm ${PRIVOXY_NAME} vào Trình đơn Start của bạn." - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "Cho chạy lúc Khởi chạy" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "Tự động cho chạy ${PRIVOXY_NAME} lúc khởi chạy." - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" -"Torbutton là một phần mở rộng của Firefox để cho phép bạn nhanh chóng bật " -"hoặc tắt chức năng duyệt web ẩn danh." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "Gỡ bỏ ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "Cài đặt ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "Thêm vào Firefox" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "Thêm ${TORBUTTON_DESC} vào phần mở rộng cho Firefox." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "Không tìm thấy Firefox trên hệ thống của bạn. Không cài đặt Torbutton." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Dữ liệu Ứng dụng " - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "Gỡ bỏ dữ liệu ứng dụng và những tập tin cấu hình lưu trữ." - -msgctxt "LanguageCode" -msgid "en" -msgstr "en" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "Firefox không được cài đặt" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" -"Chúng tôi khuyên bạn cài đặt Firefox trước khi tiếp tục, để an toàn nhất." - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"Các trình duyệt Web Mozilla Firefox không được cài đặt trên máy tính của " -"bạn.\n" -"Tor sẽ làm việc với các trình duyệt khác, chẳng hạn như Internet Explorer, " -"nhưng\n" -"dễ xử dụng với Firefox hơn, cũng như làm việc tốt hơn để\n" -"bảo vệ danh tính của bạn.\n" -"\n" -" Nếu bạn muốn cài đặt Firefox, xin vui lòng nhấn Hủy bỏ, sau đó đi \n" -" đến trang download Firefox tại" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"Khi bạn đã thực hiện xong việc cài đặt Firefox, bạn có thể chạy Bộ cài đặt\n" -"Tor một lần nữa.\n" -"\n" -" Hoặc, nếu bạn muốn cài đặt Tor mà không có Firefox, bạn chỉ cần\n" -" nhấn nút Kế tiếp để tiếp tục." diff -Nru vidalia-0.2.10/pkg/win32/vidalia-bundle.nsi.in vidalia-0.2.15/pkg/win32/vidalia-bundle.nsi.in --- vidalia-0.2.10/pkg/win32/vidalia-bundle.nsi.in 2010-05-17 16:15:27.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/vidalia-bundle.nsi.in 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ;; -;; $Id: vidalia-bundle.nsi.in 4290 2010-05-17 16:15:27Z phobos $ +;; $Id$ ;; ;; This file is part of Vidalia, and is subject to the license terms in the ;; LICENSE file, found in the top level directory of this distribution. If ;; you did not receive the LICENSE file with this file, you may obtain it ;; from the Vidalia source package distributed by the Vidalia Project at -;; http://www.vidalia-project.net/. No part of Vidalia, including this file, -;; may be copied, modified, propagated, or distributed except according to -;; the terms described in the LICENSE file. +;; http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/pkg/win32/vidalia.wxs.in vidalia-0.2.15/pkg/win32/vidalia.wxs.in --- vidalia-0.2.10/pkg/win32/vidalia.wxs.in 2010-04-29 05:12:49.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/vidalia.wxs.in 2011-10-07 19:16:56.000000000 +0000 @@ -1,6 +1,6 @@ diff -Nru vidalia-0.2.10/pkg/win32/wa/vidalia_wa.po vidalia-0.2.15/pkg/win32/wa/vidalia_wa.po --- vidalia-0.2.10/pkg/win32/wa/vidalia_wa.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/wa/vidalia_wa.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/wo/vidalia_wo.po vidalia-0.2.15/pkg/win32/wo/vidalia_wo.po --- vidalia-0.2.10/pkg/win32/wo/vidalia_wo.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/wo/vidalia_wo.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/zh_CN/vidalia_zh_CN.po vidalia-0.2.15/pkg/win32/zh_CN/vidalia_zh_CN.po --- vidalia-0.2.10/pkg/win32/zh_CN/vidalia_zh_CN.po 2009-12-01 02:41:49.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/zh_CN/vidalia_zh_CN.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,274 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2009-11-28 12:14-0700\n" -"Last-Translator: yfdyh000 \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} 安装向导" - -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"该向导将会引导您完成 Tor、Vidalia、Polipo 和 Torbutton 的安装。\n" -"\n" -"Tor 是可以匿名访问 Internt 的系统,能够帮助您隐匿网页的浏览与发布、即时聊天、IRC 及其他活动。Vidalia " -"是一个用户图形界面,能帮助您控制、监视和配置Tor。\n" -"\n" -"Polipo 是一种缓冲型网页代理可以帮助增强 Tor 的网页浏览性能。\n" -"\n" -"Torbutton 是一个 Firefox 浏览器扩展,可以快速启用或禁用匿名网页浏览。\n" -"\n" -"如果您曾经安装过 Tor、Vidalia、Polipo 或 Firefox,请确保在运行此安装向导前这些程序未在运行。\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "欢迎使用 ${BUNDLE_NAME} 安装向导" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} 安装文档" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"安装完成。\n" -"请访问 https://www.torproject.org/docs/tor-doc-windows 了解如何配置应用程序使用 Tor。\n" -"\n" -"如果您选择了安装 Torbutton,您需要重新启动火狐 (Firefox) 浏览器。" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "现在运行已安装组件" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia 是能帮助您控制、监视及配置 Tor 的图形化界面。" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "移除 ${VIDALIA_DESC}。" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} 安装向导" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"该向导将会引导您安装 Vidalia - 一种能帮助您控制、监视及配置 Tor 的图形化界面。\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "欢迎使用 ${VIDALIA_NAME} 安装向导" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} 主页快捷方式" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "Vidalia 是能帮助您控制、监视及配置 Tor 的图形化界面。" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "在系统启动时运行" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "自动在系统启动时运行 ${VIDALIA_NAME}。" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "添加至开始菜单程序组" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "添加 ${VIDALIA_NAME} 至开始菜单程序组。" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "现在运行 ${VIDALIA_NAME}" - -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "Tor 是一种可以匿名访问 Internt 的系统,它可以帮助您隐匿网页的浏览与发布、即时聊天、IRC 及其他更多活动。" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "移除 ${TOR_DESC}。" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "安装 ${TOR_DESC}。" - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"安装程序检测到已存在的 Tor 配置文件。$\n" -"$\n" -"是否要使用默认的配置文件覆盖它?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "文档" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "安装 ${TOR_NAME} 文档。" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "添加至开始菜单程序组" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "添加 ${TOR_NAME} 至开始菜单程序组。" - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "Polipo 是缓冲型网页代理能够增强使用 Tor 时的网页浏览性能。" - -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "移除 ${POLIPO_DESC}。" - -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "安装 ${POLIPO_DESC}。" - -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "添加至开始菜单" - -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "添加 ${POLIPO_NAME} 至开始菜单。" - -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "在系统启动时运行" - -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "自动在系统启动时运行 ${POLIPO_NAME}。" - -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "Torbutton 是一个 Firefox 浏览器扩展,可以快速开启或关闭匿名网页浏览。" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "移除 ${TORBUTTON_DESC}。" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "安装 ${TORBUTTON_DESC}。" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "添加至火狐 (Firefox) 浏览器" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "添加 ${TORBUTTON_DESC} 扩展至火狐 (Firefox) 浏览器。" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "安装程序未检测到火狐 (Firefox) 浏览器,因此将停止添加 Torbutton 扩展。" - -msgctxt "AppData" -msgid "Application Data" -msgstr "Application Data" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "删除保存的程序数据和配置文件。" - -msgctxt "LanguageCode" -msgid "en" -msgstr "zh-cn" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "尚未安装 Firefox 浏览器" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "我们建议您在继续安装前安装 Firefox 浏览器,以获得最佳的安全性。" - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" -"您的计算机尚未安装 Mozilla Firefox 网页浏览器。\n" -"Tor 将与配合其他浏览器工作,例如 Internet Explorer,但 Firefox 更易于使用,并能更好的保护您的匿名性。\n" -"\n" -"如果您想安装 Firefox,请点击 取消 并访问 Firefox 的下载页面 " - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" -"当您完成 Firefox 的安装后,再运行 Tor 安装程序。\n" -"\n" -"如果您希望仅安装 Tor 而不使用 Firefox,请点击 下一步 继续安装。" diff -Nru vidalia-0.2.10/pkg/win32/zh_HK/vidalia_zh_HK.po vidalia-0.2.15/pkg/win32/zh_HK/vidalia_zh_HK.po --- vidalia-0.2.10/pkg/win32/zh_HK/vidalia_zh_HK.po 2010-05-19 06:26:18.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/zh_HK/vidalia_zh_HK.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/pkg/win32/zh_TW/vidalia_zh_TW.po vidalia-0.2.15/pkg/win32/zh_TW/vidalia_zh_TW.po --- vidalia-0.2.10/pkg/win32/zh_TW/vidalia_zh_TW.po 2009-08-31 02:49:46.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/zh_TW/vidalia_zh_TW.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,274 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Vidalia\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: 2008-07-17 03:22+0000\n" -"Last-Translator: Matt \n" -"Language-Team: translations@vidalia-project.net\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 1.1.0\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "${BUNDLE_NAME} 安裝精靈" - -#, fuzzy -msgctxt "BundleWelcomeText" -msgid "" -"This wizard will guide you through the installation of Tor, Vidalia, Polipo, " -"and Torbutton.\n" -"\n" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a " -"GUI that helps you control, monitor, and configure Tor.\n" -"\n" -"Polipo is a caching web proxy that helps increase performance of browsing " -"the web through Tor.\n" -"\n" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing.\n" -"\n" -"If you have previously installed Tor, Vidalia, Polipo, or Firefox, please " -"make sure they are not running before continuing this installation.\n" -"\n" -"$_CLICK" -msgstr "" -"安裝精靈將會引導您安裝 Tor,Vidalia,Privoxy 和 Torbutton.\n" -"\n" -"如果您曾經安裝過 Tor,Vidalia,Privoxy 或 Firefox,請確保在執行此安裝精靈前這些" -"程式未在執行中.\n" -"\n" -"$_CLICK" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "歡迎使用 ${BUNDLE_NAME} 安裝精靈" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "${TOR_NAME} 安裝文檔" - -msgctxt "BundleFinishText" -msgid "" -"Installation is complete.\n" -"Please see https://www.torproject.org/docs/tor-doc-windows to learn how to " -"configure your applications to use Tor.\n" -"\n" -"If you installed Torbutton, you will need to restart Firefox." -msgstr "" -"安裝完成.\n" -"請訪問 https://www.torproject.org/docs/tor-doc-windows 來獲取關於 Tor 的配置" -"訊息.\n" -"\n" -"如果選擇了安裝 Torbutton,您需要重新啟動火狐(Firefox)瀏覽器." - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "現在執行已安裝組件" - -#, fuzzy -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "安裝 ${VIDALIA_DESC}." - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "Remove ${VIDALIA_DESC}." - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "${VIDALIA_NAME} 安裝嚮導" - -msgctxt "VidaliaWelcomeText" -msgid "" -"This wizard will guide you through the installation of Vidalia, a GUI that " -"helps you control, monitor, and configure Tor.\n" -"\n" -"$_CLICK" -msgstr "" -"安裝精靈將會引導您安裝 ${VIDALIA_DESC}.\n" -"\n" -"$_CLICK" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "歡迎使用 ${VIDALIA_NAME} 安裝精靈" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "${VIDALIA_NAME} 主頁捷徑" - -#, fuzzy -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "安裝 ${VIDALIA_DESC}." - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "在系統啟動時執行" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "自動在系統啟動時執行 ${VIDALIA_NAME}." - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "添加至開始菜單程式集" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "添加 ${VIDALIA_NAME} 至開始菜單程式集." - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "現在執行 ${VIDALIA_NAME}" - -#, fuzzy -msgctxt "TorGroupDesc" -msgid "" -"Tor is a system for using the Internet anonymously, helping you anonymize " -"Web browsing and publishing, instant messaging, IRC, and more." -msgstr "安裝 ${TOR_DESC}." - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "Remove ${TOR_DESC}." - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "安裝 ${TOR_DESC}." - -msgctxt "TorAskOverwriteTorrc" -msgid "" -"You already have a Tor configuration file.$\n" -"$\n" -"Do you want to overwrite it with the default sample configuration file?" -msgstr "" -"安裝程式檢測到已存在的 Tor 配置檔案.$\n" -"$\n" -"是否要使用默認的配置檔案覆蓋它?" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "文檔" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "安裝 ${TOR_NAME} 文檔." - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "添加至開始菜單程式集" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "添加 ${TOR_NAME} 至開始菜單程式集." - -msgctxt "PolipoGroupDesc" -msgid "" -"Polipo is a caching web proxy that increases performance of web browsing " -"through Tor." -msgstr "" - -#, fuzzy -msgctxt "PolipoUninstDesc" -msgid "Remove ${POLIPO_DESC}." -msgstr "Remove ${POLIPO_DESC}." - -#, fuzzy -msgctxt "PolipoAppDesc" -msgid "Install ${POLIPO_DESC}." -msgstr "安裝 ${POLIPO_DESC}." - -#, fuzzy -msgctxt "PolipoShortcuts" -msgid "Add to Start Menu" -msgstr "添加至開始菜單程式集" - -#, fuzzy -msgctxt "PolipoShortcutsDesc" -msgid "Add ${POLIPO_NAME} to your Start menu." -msgstr "添加 ${POLIPO_NAME} 至開始菜單程式集." - -#, fuzzy -msgctxt "PolipoStartup" -msgid "Run At Startup" -msgstr "在系統啟動時執行" - -#, fuzzy -msgctxt "PolipoStartupDesc" -msgid "Automatically run ${POLIPO_NAME} at startup." -msgstr "自動在系統啟動時執行 ${POLIPO_NAME}." - -#, fuzzy -msgctxt "TorbuttonGroupDesc" -msgid "" -"Torbutton is a Firefox extension that allows you to quickly enable or " -"disable anonymous web browsing." -msgstr "安裝 ${TORBUTTON_DESC}." - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "安裝 ${TORBUTTON_DESC}." - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "添加至火狐(Firefox)瀏覽器" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "添加 ${TORBUTTON_DESC} 擴展至火狐(Firefox)瀏覽器." - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "安裝程序未檢測到火狐(Firefox)瀏覽器,因此將停止添加 Torbutton 擴展." - -msgctxt "AppData" -msgid "Application Data" -msgstr "Application Data" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "zh_TW" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "" -"We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "" -"The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity.\n" -"\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "" -"When you are done installing Firefox, you can once again run the\n" -"Tor installer.\n" -"\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" - diff -Nru vidalia-0.2.10/pkg/win32/zu/vidalia_zu.po vidalia-0.2.15/pkg/win32/zu/vidalia_zu.po --- vidalia-0.2.10/pkg/win32/zu/vidalia_zu.po 2010-08-05 19:20:48.000000000 +0000 +++ vidalia-0.2.15/pkg/win32/zu/vidalia_zu.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,207 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: translations@vidalia-project.net\n" -"POT-Creation-Date: 2008-07-12 05:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgctxt "BundleSetupCaption" -msgid "${BUNDLE_NAME} setup" -msgstr "" - -msgctxt "BundleWelcomeText" -msgid "This wizard will guide you through the installation of Tor, Vidalia, Privoxy, and Torbutton.\n\nTor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more. Vidalia is a GUI that helps you control, monitor, and configure Tor.\n\nPrivoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups.\n\nTorbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing.\n\nIf you have previously installed Tor, Vidalia, Privoxy, or Firefox, please make sure they are not running before continuing this installation.\n\n$_CLICK" -msgstr "" - -msgctxt "BundleWelcomeTitle" -msgid "Welcome to the ${BUNDLE_NAME} Setup Wizard" -msgstr "" - -msgctxt "BundleLinkText" -msgid "${TOR_NAME} installation documentation" -msgstr "" - -msgctxt "BundleFinishText" -msgid "Installation is complete.\nPlease see https://www.torproject.org/docs/tor-doc-windows to learn how to configure your applications to use Tor.\n\nIf you installed Torbutton, you will need to restart Firefox." -msgstr "" - -msgctxt "BundleRunNow" -msgid "Run installed components now" -msgstr "" - -msgctxt "VidaliaGroupDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaUninstDesc" -msgid "Remove ${VIDALIA_DESC}." -msgstr "" - -msgctxt "VidaliaSetupCaption" -msgid "${VIDALIA_NAME} setup" -msgstr "" - -msgctxt "VidaliaWelcomeText" -msgid "This wizard will guide you through the installation of Vidalia, a GUI that helps you control, monitor, and configure Tor.\n\n$_CLICK" -msgstr "" - -msgctxt "VidaliaWelcomeTitle" -msgid "Welcome to the ${VIDALIA_NAME} Setup Wizard" -msgstr "" - -msgctxt "VidaliaLinkText" -msgid "${VIDALIA_NAME} homepage" -msgstr "" - -msgctxt "VidaliaAppDesc" -msgid "Vidalia is a GUI that helps you control, monitor, and configure Tor." -msgstr "" - -msgctxt "VidaliaStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "VidaliaStartupDesc" -msgid "Automatically run ${VIDALIA_NAME} at startup." -msgstr "" - -msgctxt "VidaliaShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "VidaliaShortcutsDesc" -msgid "Add ${VIDALIA_NAME} to your Start menu." -msgstr "" - -msgctxt "VidaliaRunNow" -msgid "Run ${VIDALIA_NAME}" -msgstr "" - -msgctxt "TorGroupDesc" -msgid "Tor is a system for using the Internet anonymously, helping you anonymize Web browsing and publishing, instant messaging, IRC, and more." -msgstr "" - -msgctxt "TorUninstDesc" -msgid "Remove ${TOR_DESC}." -msgstr "" - -msgctxt "TorAppDesc" -msgid "Install ${TOR_DESC}." -msgstr "" - -msgctxt "TorAskOverwriteTorrc" -msgid "You already have a Tor configuration file.$\n$\nDo you want to overwrite it with the default sample configuration file?" -msgstr "" - -msgctxt "TorDocumentation" -msgid "Documentation" -msgstr "" - -msgctxt "TorDocumentationDesc" -msgid "Install ${TOR_NAME} documentation." -msgstr "" - -msgctxt "TorShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "TorShortcutsDesc" -msgid "Add ${TOR_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyGroupDesc" -msgid "Privoxy is a filtering web proxy that protects your privacy and helps remove ads, banners, and popups." -msgstr "" - -msgctxt "PrivoxyUninstDesc" -msgid "Remove ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyAppDesc" -msgid "Install ${PRIVOXY_DESC}." -msgstr "" - -msgctxt "PrivoxyShortcuts" -msgid "Add to Start Menu" -msgstr "" - -msgctxt "PrivoxyShortcutsDesc" -msgid "Add ${PRIVOXY_NAME} to your Start menu." -msgstr "" - -msgctxt "PrivoxyStartup" -msgid "Run At Startup" -msgstr "" - -msgctxt "PrivoxyStartupDesc" -msgid "Automatically run ${PRIVOXY_NAME} at startup." -msgstr "" - -msgctxt "TorbuttonGroupDesc" -msgid "Torbutton is a Firefox extension that allows you to quickly enable or disable anonymous web browsing." -msgstr "" - -msgctxt "TorbuttonUninstDesc" -msgid "Remove ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAppDesc" -msgid "Install ${TORBUTTON_DESC}." -msgstr "" - -msgctxt "TorbuttonAddToFirefox" -msgid "Add to Firefox" -msgstr "" - -msgctxt "TorbuttonAddToFirefoxDesc" -msgid "Add the ${TORBUTTON_DESC} extension to Firefox." -msgstr "" - -msgctxt "TorbuttonFirefoxNotFound" -msgid "Firefox was not found on your system. Not installing Torbutton." -msgstr "" - -msgctxt "AppData" -msgid "Application Data" -msgstr "" - -msgctxt "AppDataUninstDesc" -msgid "Remove saved application data and configuration files." -msgstr "" - -msgctxt "LanguageCode" -msgid "en" -msgstr "" - -msgctxt "FirefoxWarningPageTitle" -msgid "Firefox is not installed" -msgstr "" - -msgctxt "FirefoxWarningPageSubtitle" -msgid "We recommend that you install Firefox before continuing, for best safety." -msgstr "" - -msgctxt "FirefoxWarningPageUpperText" -msgid "The Mozilla Firefox Web browser is not installed on your computer.\n" -"Tor will work with other browsers, such as Internet Explorer, but\n" -"is easier to use with Firefox, which also does a better job of\n" -"protecting your anonymity." -"\n\n" -"If you would like to install Firefox, please press Cancel, then go\n" -"to the Firefox download page at" -msgstr "" - -msgctxt "FirefoxWarningPageLowerText" -msgid "When you are done installing Firefox, you can once again run the\n" -"Tor installer." -"\n\n" -"Or, if you would prefer to install Tor without Firefox, simply\n" -"press Next to continue." -msgstr "" diff -Nru vidalia-0.2.10/src/CMakeLists.txt vidalia-0.2.15/src/CMakeLists.txt --- vidalia-0.2.10/src/CMakeLists.txt 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 3879 2009-06-23 22:53:29Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. ## diff -Nru vidalia-0.2.10/src/common/CMakeLists.txt vidalia-0.2.15/src/common/CMakeLists.txt --- vidalia-0.2.10/src/common/CMakeLists.txt 2010-08-05 20:29:28.000000000 +0000 +++ vidalia-0.2.15/src/common/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 4379 2010-08-05 20:29:28Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. ## @@ -20,12 +20,9 @@ procutil.cpp stringutil.cpp TorSocket.cpp - TorSslSocket.cpp - ZlibByteArray.cpp ) qt4_wrap_cpp(common_SRCS TorSocket.h - TorSslSocket.h ) if(WIN32) @@ -41,11 +38,3 @@ ${QT_QTNETWORK_LIBRARY} ) -if(OPENSSL_LIBRARIES) - target_link_libraries(common ${OPENSSL_LIBRARIES}) -endif(OPENSSL_LIBRARIES) -if (APPLE) - include(FindZLIB) - target_link_libraries(common ${ZLIB_LIBRARIES}) -endif(APPLE) - diff -Nru vidalia-0.2.10/src/common/crypto.cpp vidalia-0.2.15/src/common/crypto.cpp --- vidalia-0.2.10/src/common/crypto.cpp 2009-06-06 17:46:49.000000000 +0000 +++ vidalia-0.2.15/src/common/crypto.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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. ** ** * * * ** @@ -46,7 +46,6 @@ /* ** \file crypto.cpp -** \version $Id: crypto.cpp 3818 2009-06-06 17:46:49Z edmanm $ ** \brief Provides support for pseuodrandom number generation. */ diff -Nru vidalia-0.2.10/src/common/crypto.h vidalia-0.2.15/src/common/crypto.h --- vidalia-0.2.10/src/common/crypto.h 2009-06-06 17:46:49.000000000 +0000 +++ vidalia-0.2.15/src/common/crypto.h 2011-10-07 19:16:56.000000000 +0000 @@ -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. ** ** * * * ** @@ -46,7 +46,6 @@ /* ** \file crypto.h -** \version $Id: crypto.h 3818 2009-06-06 17:46:49Z edmanm $ ** \brief Provides support for pseuodrandom number generation. */ diff -Nru vidalia-0.2.10/src/common/file.cpp vidalia-0.2.15/src/common/file.cpp --- vidalia-0.2.10/src/common/file.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/file.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 file.cpp -** \version $Id: file.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Functions and definitions for common file I/O operations */ diff -Nru vidalia-0.2.10/src/common/file.h vidalia-0.2.15/src/common/file.h --- vidalia-0.2.10/src/common/file.h 2009-02-03 02:21:55.000000000 +0000 +++ vidalia-0.2.15/src/common/file.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 file.h -** \version $Id: file.h 3505 2009-02-03 02:21:55Z edmanm $ ** \brief Functions and definitions for common file I/O operations */ diff -Nru vidalia-0.2.10/src/common/html.cpp vidalia-0.2.15/src/common/html.cpp --- vidalia-0.2.10/src/common/html.cpp 2008-02-29 04:30:11.000000000 +0000 +++ vidalia-0.2.15/src/common/html.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 html.cpp -** \version $Id: html.cpp 2362 2008-02-29 04:30:11Z edmanm $ ** \brief HTML formatting functions */ diff -Nru vidalia-0.2.10/src/common/html.h vidalia-0.2.15/src/common/html.h --- vidalia-0.2.10/src/common/html.h 2008-02-29 04:30:11.000000000 +0000 +++ vidalia-0.2.15/src/common/html.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 html.h -** \version $Id: html.h 2362 2008-02-29 04:30:11Z edmanm $ ** \brief HTML formatting functions */ diff -Nru vidalia-0.2.10/src/common/Log.cpp vidalia-0.2.15/src/common/Log.cpp --- vidalia-0.2.10/src/common/Log.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/Log.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Log.cpp -** \version $Id: Log.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Debug message logging */ diff -Nru vidalia-0.2.10/src/common/Log.h vidalia-0.2.15/src/common/Log.h --- vidalia-0.2.10/src/common/Log.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/Log.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Log.h -** \version $Id: Log.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Debug message logging */ diff -Nru vidalia-0.2.10/src/common/net.cpp vidalia-0.2.15/src/common/net.cpp --- vidalia-0.2.10/src/common/net.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/net.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,20 +3,20 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 net.cpp -** \version $Id: net.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Common network I/O and utility functions */ #include "net.h" #include +#include /** Attempts a connection to host on port. Returns true if the @@ -33,3 +33,15 @@ return true; } +bool +socket_test_connect(QString server, int timeout) +{ + QLocalSocket sock; + sock.connectToServer(server); + if (!sock.waitForConnected(timeout)) { + return false; + } + sock.disconnectFromServer(); + return true; +} + diff -Nru vidalia-0.2.10/src/common/net.h vidalia-0.2.15/src/common/net.h --- vidalia-0.2.10/src/common/net.h 2008-02-29 04:30:11.000000000 +0000 +++ vidalia-0.2.15/src/common/net.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 net.h -** \version $Id: net.h 2362 2008-02-29 04:30:11Z edmanm $ ** \brief Common network I/O and utility functions */ @@ -22,6 +21,9 @@ /** Attempts a connection to host on port. Returns true if the * connection was successful, or false if the connection attempt failed. */ bool net_test_connect(QHostAddress host, quint16 port, int timeout = 250); +/** Attempts a connection to server. Returns true if the + * connection was successful, or false if the connection attempt failed. */ +bool socket_test_connect(QString server, int timeout = 250); #endif diff -Nru vidalia-0.2.10/src/common/procutil.cpp vidalia-0.2.15/src/common/procutil.cpp --- vidalia-0.2.10/src/common/procutil.cpp 2009-05-01 03:26:38.000000000 +0000 +++ vidalia-0.2.15/src/common/procutil.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 procutil.cpp -** \version $Id: procutil.cpp 3751 2009-05-01 03:26:38Z edmanm $ ** \brief Process information and pidfile functions */ diff -Nru vidalia-0.2.10/src/common/procutil.h vidalia-0.2.15/src/common/procutil.h --- vidalia-0.2.10/src/common/procutil.h 2009-05-01 03:26:38.000000000 +0000 +++ vidalia-0.2.15/src/common/procutil.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 procutil.h -** \version $Id: procutil.h 3751 2009-05-01 03:26:38Z edmanm $ ** \brief Process information and pidfile functions */ diff -Nru vidalia-0.2.10/src/common/stringutil.cpp vidalia-0.2.15/src/common/stringutil.cpp --- vidalia-0.2.10/src/common/stringutil.cpp 2010-07-14 15:43:39.000000000 +0000 +++ vidalia-0.2.15/src/common/stringutil.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 stringutil.cpp -** \version $Id: stringutil.cpp 4350 2010-07-14 15:43:39Z edmanm $ ** \brief Common string manipulation functions */ diff -Nru vidalia-0.2.10/src/common/stringutil.h vidalia-0.2.15/src/common/stringutil.h --- vidalia-0.2.10/src/common/stringutil.h 2009-08-29 18:39:35.000000000 +0000 +++ vidalia-0.2.15/src/common/stringutil.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 stringutil.h -** \version $Id: stringutil.h 4085 2009-08-29 18:39:35Z edmanm $ ** \brief Common string manipulation functions */ diff -Nru vidalia-0.2.10/src/common/TorSocket.cpp vidalia-0.2.15/src/common/TorSocket.cpp --- vidalia-0.2.10/src/common/TorSocket.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/TorSocket.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorSocket.cpp -** \version $Id: TorSocket.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief A QTcpSocket that makes requests over Tor */ diff -Nru vidalia-0.2.10/src/common/TorSocket.h vidalia-0.2.15/src/common/TorSocket.h --- vidalia-0.2.10/src/common/TorSocket.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/TorSocket.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorSocket.h -** \version $Id: TorSocket.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief A QTcpSocket that makes requests over Tor */ diff -Nru vidalia-0.2.10/src/common/TorSslSocket.cpp vidalia-0.2.15/src/common/TorSslSocket.cpp --- vidalia-0.2.10/src/common/TorSslSocket.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/TorSslSocket.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,160 +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 TorSslSocket.cpp -** \version $Id: /local/vidalia/trunk/src/util/torsocket.cpp 1564 2006-12-26T06:06:04.965088Z edmanm $ -** \brief A QSslSocket that makes encrypted requests over Tor -*/ - -#include "TorSslSocket.h" - -#include -#include - -#define SOCKS_VERSION 0x04 /**< SOCKS version. */ -#define SOCKS_CONNECT 0x01 /**< SOCKS connect command ID. */ -#define SOCKS_FAKE_IP 0x00000001 /**< Bogus IP. */ -#define SOCKS_RESPONSE_LEN 0x08 /**< SOCKS server response length. */ -#define SOCKS_RESPONSE_VERSION 0x00 /**< SOCKS server response version. */ -#define SOCKS_CONNECT_STATUS_OK 0x5A /**< SOCKS server response status. */ - - -/** Constructor. */ -TorSslSocket::TorSslSocket(const QHostAddress &socksAddr, - quint16 socksPort, QObject *parent) -: QSslSocket(parent), - _socksAddr(socksAddr), - _socksPort(socksPort) -{ - QObject::connect(this, SIGNAL(sslErrors(QList)), - this, SLOT(onSslErrors(QList))); - QObject::connect(this, SIGNAL(error(QAbstractSocket::SocketError)), - this, SLOT(onError(QAbstractSocket::SocketError))); - QObject::connect(this, SIGNAL(readyRead()), - this, SLOT(onHandshakeResponse())); - QObject::connect(this, SIGNAL(connected()), - this, SLOT(connectedToProxy())); - QObject::connect(this, SIGNAL(encrypted()), - this, SLOT(onEncrypted())); -} - -/** Connects to the specified hostname and port via Tor. */ -void -TorSslSocket::connectToRemoteHost(const QString &remoteHost, quint16 remotePort, - bool encrypted) -{ - _remoteHost = remoteHost; - _remotePort = remotePort; - _encrypted = encrypted; - QTcpSocket::connectToHost(_socksAddr, _socksPort); -} - -/** Called when a connection error has occurred. */ -void -TorSslSocket::onError(QAbstractSocket::SocketError error) -{ - Q_UNUSED(error); - emit socketError(errorString()); -} - -/** Called when one or more SSL errors occur on the socket. */ -void -TorSslSocket::onSslErrors(const QList &errors) -{ - QStringList errorStrings; - foreach (QSslError error, errors) { - errorStrings << "\"" + error.errorString() + "\""; - } - emit socketError(errorStrings.join(",")); -} - -/** Called when a connection has been established to the proxy host and starts - * a Socks4a handshake. */ -void -TorSslSocket::connectedToProxy() -{ - sendSocksHandshake(_remoteHost, _remotePort); -} - -/** Called when an encrypted connection has been established to the remote - * host. */ -void -TorSslSocket::onEncrypted() -{ - emit connectedToRemoteHost(); -} - -/** Sends the first part of a Socks4a handshake, using the remote hostname and - * port specified in the previous call to connectToHost(). The message should - * be formatted as follows: - * - * 0x04 (socks version) - * 0x01 (connect) - * PORT (two bytes, most significant byte first) - * 0x00 0x00 0x00 0x01 (fake IP address: tells proxy to use SOCKS4a) - * 0x00 (empty username field) - * HOSTNAME (target hostname) - * 0x00 (marks the end of the hostname field) - */ -void -TorSslSocket::sendSocksHandshake(const QString &remoteHost, quint16 remotePort) -{ - QDataStream sock(this); - sock << (quint8)SOCKS_VERSION; - sock << (quint8)SOCKS_CONNECT; - sock << (quint16)remotePort; - sock << (quint32)SOCKS_FAKE_IP; - sock << (quint8)0; - sock.writeRawData(qPrintable(remoteHost), remoteHost.length()); - sock << (quint8)0; -} - -/** Handles the second half of the handshake, received from the SOCKS - * proxy server. The response should be formatted as follows: - * - * 0x00 (response version) - * STATUS (0x5A means success; other values mean failure) - * PORT (not set) - * ADDRESS (not set) - */ -void -TorSslSocket::onHandshakeResponse() -{ - QByteArray response; - if (bytesAvailable() >= SOCKS_RESPONSE_LEN) { - /* We've received our response, so stop waiting for it. */ - QObject::disconnect(this, SIGNAL(readyRead()), - this, SLOT(onHandshakeResponse())); - - /* Read the 8-byte response off the socket. */ - response = read(SOCKS_RESPONSE_LEN); - - /* Check to make sure we got a good response from the proxy. */ - if ((uchar)response[0] == (uchar)SOCKS_RESPONSE_VERSION && - (uchar)response[1] == (uchar)SOCKS_CONNECT_STATUS_OK) { - if (_encrypted) { - /* Connection status was okay, so start client encryption. */ - /* We first need to set the peer name to the intended remote host, - * otherwise Qt will use the proxy (e.g., 127.0.0.1) as the peer name - * when validating the server certificate. */ - setPeerName(_remoteHost); - startClientEncryption(); - } else { - /* Caller wanted an unencrypted, unauthenticated, uncool conn. */ - emit connectedToRemoteHost(); - } - } else { - /* Remote connection failed, so close the connection to the proxy. */ - disconnectFromHost(); - } - } -} - diff -Nru vidalia-0.2.10/src/common/TorSslSocket.h vidalia-0.2.15/src/common/TorSslSocket.h --- vidalia-0.2.10/src/common/TorSslSocket.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/TorSslSocket.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,71 +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 TorSslSocket.h -** \version $Id: /local/vidalia/trunk/src/util/torsocket.h 1564 2006-12-26T06:06:04.965088Z edmanm $ -** \brief A QSslSocket that makes encrypted requests over Tor -*/ - -#ifndef _TORSSLSOCKET_H -#define _TORSSLSOCKET_H - -#include -#include - - -class TorSslSocket : public QSslSocket -{ - Q_OBJECT - -public: - /** Constructor. */ - TorSslSocket(const QHostAddress &socksAddr, - quint16 socksPort, QObject *parent = 0); - - /** Connects to the specified hostname and port via Tor. */ - void connectToRemoteHost(const QString &remoteHost, quint16 remotePort, - bool encrypted); - -signals: - /** Emitted when a connection has been established through Tor to the remote - * host specified in a prior call to connectToHost(). */ - void connectedToRemoteHost(); - /** Emitted when a connection error has occurred. */ - void socketError(QString errmsg); - -private slots: - /** Called when the socket is connected to the proxy and sends our - * half of a Socks4a handshake. */ - void connectedToProxy(); - /** Called when an encrypted connection has been established to the remote - * host. */ - void onEncrypted(); - /** Handles the server's response part of a Socks4a handshake. */ - void onHandshakeResponse(); - /** Called when a connection error has occurred. */ - void onError(QAbstractSocket::SocketError error); - /** Called when one or more SSL errors occur on the socket. */ - void onSslErrors(const QList &errors); - -private: - /** Sends the client part of a Socks4a handshake with a proxy server. */ - void sendSocksHandshake(const QString &remoteHost, quint16 remotePort); - - QHostAddress _socksAddr; /**< Address of Tor's SOCKS listener. */ - QString _remoteHost; /**< Remote hostname. */ - quint16 _socksPort; /**< Port of Tor's SOCKS listener. */ - quint16 _remotePort; /**< Remote host port. */ - bool _encrypted; /**< Set to true if the connection to the remote - host should be encrypted. */ -}; - -#endif - diff -Nru vidalia-0.2.10/src/common/win32.cpp vidalia-0.2.15/src/common/win32.cpp --- vidalia-0.2.10/src/common/win32.cpp 2010-05-18 03:58:45.000000000 +0000 +++ vidalia-0.2.15/src/common/win32.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 win32.cpp -** \version $Id: win32.cpp 4294 2010-05-18 03:58:45Z edmanm $ ** \brief Win32-specific functions */ diff -Nru vidalia-0.2.10/src/common/win32.h vidalia-0.2.15/src/common/win32.h --- vidalia-0.2.10/src/common/win32.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/win32.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 win32.h -** \version $Id: win32.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Win32-specific functions */ diff -Nru vidalia-0.2.10/src/common/zconf.h vidalia-0.2.15/src/common/zconf.h --- vidalia-0.2.10/src/common/zconf.h 2007-01-15 23:25:55.000000000 +0000 +++ vidalia-0.2.15/src/common/zconf.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,332 +0,0 @@ -/* zconf.h -- configuration of the zlib compression library - * Copyright (C) 1995-2005 Jean-loup Gailly. - * For conditions of distribution and use, see copyright notice in zlib.h - */ - -/* @(#) $Id: zconf.h 1591 2007-01-15 23:25:55Z edmanm $ */ - -#ifndef ZCONF_H -#define ZCONF_H - -/* - * If you *really* need a unique prefix for all types and library functions, - * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. - */ -#ifdef Z_PREFIX -# define deflateInit_ z_deflateInit_ -# define deflate z_deflate -# define deflateEnd z_deflateEnd -# define inflateInit_ z_inflateInit_ -# define inflate z_inflate -# define inflateEnd z_inflateEnd -# define deflateInit2_ z_deflateInit2_ -# define deflateSetDictionary z_deflateSetDictionary -# define deflateCopy z_deflateCopy -# define deflateReset z_deflateReset -# define deflateParams z_deflateParams -# define deflateBound z_deflateBound -# define deflatePrime z_deflatePrime -# define inflateInit2_ z_inflateInit2_ -# define inflateSetDictionary z_inflateSetDictionary -# define inflateSync z_inflateSync -# define inflateSyncPoint z_inflateSyncPoint -# define inflateCopy z_inflateCopy -# define inflateReset z_inflateReset -# define inflateBack z_inflateBack -# define inflateBackEnd z_inflateBackEnd -# define compress z_compress -# define compress2 z_compress2 -# define compressBound z_compressBound -# define uncompress z_uncompress -# define adler32 z_adler32 -# define crc32 z_crc32 -# define get_crc_table z_get_crc_table -# define zError z_zError - -# define alloc_func z_alloc_func -# define free_func z_free_func -# define in_func z_in_func -# define out_func z_out_func -# define Byte z_Byte -# define uInt z_uInt -# define uLong z_uLong -# define Bytef z_Bytef -# define charf z_charf -# define intf z_intf -# define uIntf z_uIntf -# define uLongf z_uLongf -# define voidpf z_voidpf -# define voidp z_voidp -#endif - -#if defined(__MSDOS__) && !defined(MSDOS) -# define MSDOS -#endif -#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2) -# define OS2 -#endif -#if defined(_WINDOWS) && !defined(WINDOWS) -# define WINDOWS -#endif -#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__) -# ifndef WIN32 -# define WIN32 -# endif -#endif -#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32) -# if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__) -# ifndef SYS16BIT -# define SYS16BIT -# endif -# endif -#endif - -/* - * Compile with -DMAXSEG_64K if the alloc function cannot allocate more - * than 64k bytes at a time (needed on systems with 16-bit int). - */ -#ifdef SYS16BIT -# define MAXSEG_64K -#endif -#ifdef MSDOS -# define UNALIGNED_OK -#endif - -#ifdef __STDC_VERSION__ -# ifndef STDC -# define STDC -# endif -# if __STDC_VERSION__ >= 199901L -# ifndef STDC99 -# define STDC99 -# endif -# endif -#endif -#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus)) -# define STDC -#endif -#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__)) -# define STDC -#endif -#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32)) -# define STDC -#endif -#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__)) -# define STDC -#endif - -#if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */ -# define STDC -#endif - -#ifndef STDC -# ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */ -# define const /* note: need a more gentle solution here */ -# endif -#endif - -/* Some Mac compilers merge all .h files incorrectly: */ -#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__) -# define NO_DUMMY_DECL -#endif - -/* Maximum value for memLevel in deflateInit2 */ -#ifndef MAX_MEM_LEVEL -# ifdef MAXSEG_64K -# define MAX_MEM_LEVEL 8 -# else -# define MAX_MEM_LEVEL 9 -# endif -#endif - -/* Maximum value for windowBits in deflateInit2 and inflateInit2. - * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files - * created by gzip. (Files created by minigzip can still be extracted by - * gzip.) - */ -#ifndef MAX_WBITS -# define MAX_WBITS 15 /* 32K LZ77 window */ -#endif - -/* The memory requirements for deflate are (in bytes): - (1 << (windowBits+2)) + (1 << (memLevel+9)) - that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) - plus a few kilobytes for small objects. For example, if you want to reduce - the default memory requirements from 256K to 128K, compile with - make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7" - Of course this will generally degrade compression (there's no free lunch). - - The memory requirements for inflate are (in bytes) 1 << windowBits - that is, 32K for windowBits=15 (default value) plus a few kilobytes - for small objects. -*/ - - /* Type declarations */ - -#ifndef OF /* function prototypes */ -# ifdef STDC -# define OF(args) args -# else -# define OF(args) () -# endif -#endif - -/* The following definitions for FAR are needed only for MSDOS mixed - * model programming (small or medium model with some far allocations). - * This was tested only with MSC; for other MSDOS compilers you may have - * to define NO_MEMCPY in zutil.h. If you don't need the mixed model, - * just define FAR to be empty. - */ -#ifdef SYS16BIT -# if defined(M_I86SM) || defined(M_I86MM) - /* MSC small or medium model */ -# define SMALL_MEDIUM -# ifdef _MSC_VER -# define FAR _far -# else -# define FAR far -# endif -# endif -# if (defined(__SMALL__) || defined(__MEDIUM__)) - /* Turbo C small or medium model */ -# define SMALL_MEDIUM -# ifdef __BORLANDC__ -# define FAR _far -# else -# define FAR far -# endif -# endif -#endif - -#if defined(WINDOWS) || defined(WIN32) - /* If building or using zlib as a DLL, define ZLIB_DLL. - * This is not mandatory, but it offers a little performance increase. - */ -# ifdef ZLIB_DLL -# if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500)) -# ifdef ZLIB_INTERNAL -# define ZEXTERN extern __declspec(dllexport) -# else -# define ZEXTERN extern __declspec(dllimport) -# endif -# endif -# endif /* ZLIB_DLL */ - /* If building or using zlib with the WINAPI/WINAPIV calling convention, - * define ZLIB_WINAPI. - * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI. - */ -# ifdef ZLIB_WINAPI -# ifdef FAR -# undef FAR -# endif -# include - /* No need for _export, use ZLIB.DEF instead. */ - /* For complete Windows compatibility, use WINAPI, not __stdcall. */ -# define ZEXPORT WINAPI -# ifdef WIN32 -# define ZEXPORTVA WINAPIV -# else -# define ZEXPORTVA FAR CDECL -# endif -# endif -#endif - -#if defined (__BEOS__) -# ifdef ZLIB_DLL -# ifdef ZLIB_INTERNAL -# define ZEXPORT __declspec(dllexport) -# define ZEXPORTVA __declspec(dllexport) -# else -# define ZEXPORT __declspec(dllimport) -# define ZEXPORTVA __declspec(dllimport) -# endif -# endif -#endif - -#ifndef ZEXTERN -# define ZEXTERN extern -#endif -#ifndef ZEXPORT -# define ZEXPORT -#endif -#ifndef ZEXPORTVA -# define ZEXPORTVA -#endif - -#ifndef FAR -# define FAR -#endif - -#if !defined(__MACTYPES__) -typedef unsigned char Byte; /* 8 bits */ -#endif -typedef unsigned int uInt; /* 16 bits or more */ -typedef unsigned long uLong; /* 32 bits or more */ - -#ifdef SMALL_MEDIUM - /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */ -# define Bytef Byte FAR -#else - typedef Byte FAR Bytef; -#endif -typedef char FAR charf; -typedef int FAR intf; -typedef uInt FAR uIntf; -typedef uLong FAR uLongf; - -#ifdef STDC - typedef void const *voidpc; - typedef void FAR *voidpf; - typedef void *voidp; -#else - typedef Byte const *voidpc; - typedef Byte FAR *voidpf; - typedef Byte *voidp; -#endif - -#if 0 /* HAVE_UNISTD_H -- this line is updated by ./configure */ -# include /* for off_t */ -# include /* for SEEK_* and off_t */ -# ifdef VMS -# include /* for off_t */ -# endif -# define z_off_t off_t -#endif -#ifndef SEEK_SET -# define SEEK_SET 0 /* Seek from beginning of file. */ -# define SEEK_CUR 1 /* Seek from current position. */ -# define SEEK_END 2 /* Set file pointer to EOF plus "offset" */ -#endif -#ifndef z_off_t -# define z_off_t long -#endif - -#if defined(__OS400__) -# define NO_vsnprintf -#endif - -#if defined(__MVS__) -# define NO_vsnprintf -# ifdef FAR -# undef FAR -# endif -#endif - -/* MVS linker does not support external names larger than 8 bytes */ -#if defined(__MVS__) -# pragma map(deflateInit_,"DEIN") -# pragma map(deflateInit2_,"DEIN2") -# pragma map(deflateEnd,"DEEND") -# pragma map(deflateBound,"DEBND") -# pragma map(inflateInit_,"ININ") -# pragma map(inflateInit2_,"ININ2") -# pragma map(inflateEnd,"INEND") -# pragma map(inflateSync,"INSY") -# pragma map(inflateSetDictionary,"INSEDI") -# pragma map(compressBound,"CMBND") -# pragma map(inflate_table,"INTABL") -# pragma map(inflate_fast,"INFA") -# pragma map(inflate_copyright,"INCOPY") -#endif - -#endif /* ZCONF_H */ diff -Nru vidalia-0.2.10/src/common/ZlibByteArray.cpp vidalia-0.2.15/src/common/ZlibByteArray.cpp --- vidalia-0.2.10/src/common/ZlibByteArray.cpp 2010-01-22 18:49:00.000000000 +0000 +++ vidalia-0.2.15/src/common/ZlibByteArray.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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. ** ** * * * ** @@ -46,7 +46,6 @@ /* ** \file ZlibByteArray.cpp -** \version $Id: ZlibByteArray.cpp 4203 2010-01-22 18:49:00Z edmanm $ ** \brief Wrapper around QByteArray that adds compression capabilities */ diff -Nru vidalia-0.2.10/src/common/ZlibByteArray.h vidalia-0.2.15/src/common/ZlibByteArray.h --- vidalia-0.2.10/src/common/ZlibByteArray.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/common/ZlibByteArray.h 2011-10-07 19:16:56.000000000 +0000 @@ -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. ** ** * * * ** @@ -46,7 +46,6 @@ /* ** \file ZlibByteArray.h -** \version $Id: ZlibByteArray.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Wrapper around QByteArray that adds compression capabilities */ diff -Nru vidalia-0.2.10/src/common/zlib.h vidalia-0.2.15/src/common/zlib.h --- vidalia-0.2.10/src/common/zlib.h 2007-01-15 23:25:55.000000000 +0000 +++ vidalia-0.2.15/src/common/zlib.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,1357 +0,0 @@ -/* zlib.h -- interface of the 'zlib' general purpose compression library - version 1.2.3, July 18th, 2005 - - Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Jean-loup Gailly Mark Adler - jloup@gzip.org madler@alumni.caltech.edu - - - The data format used by the zlib library is described by RFCs (Request for - Comments) 1950 to 1952 in the files http://www.ietf.org/rfc/rfc1950.txt - (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). -*/ - -#ifndef ZLIB_H -#define ZLIB_H - -#include "zconf.h" - -#ifdef __cplusplus -extern "C" { -#endif - -#define ZLIB_VERSION "1.2.3" -#define ZLIB_VERNUM 0x1230 - -/* - The 'zlib' compression library provides in-memory compression and - decompression functions, including integrity checks of the uncompressed - data. This version of the library supports only one compression method - (deflation) but other algorithms will be added later and will have the same - stream interface. - - Compression can be done in a single step if the buffers are large - enough (for example if an input file is mmap'ed), or can be done by - repeated calls of the compression function. In the latter case, the - application must provide more input and/or consume the output - (providing more output space) before each call. - - The compressed data format used by default by the in-memory functions is - the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped - around a deflate stream, which is itself documented in RFC 1951. - - The library also supports reading and writing files in gzip (.gz) format - with an interface similar to that of stdio using the functions that start - with "gz". The gzip format is different from the zlib format. gzip is a - gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. - - This library can optionally read and write gzip streams in memory as well. - - The zlib format was designed to be compact and fast for use in memory - and on communications channels. The gzip format was designed for single- - file compression on file systems, has a larger header than zlib to maintain - directory information, and uses a different, slower check method than zlib. - - The library does not install any signal handler. The decoder checks - the consistency of the compressed data, so the library should never - crash even in case of corrupted input. -*/ - -typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); -typedef void (*free_func) OF((voidpf opaque, voidpf address)); - -struct internal_state; - -typedef struct z_stream_s { - Bytef *next_in; /* next input byte */ - uInt avail_in; /* number of bytes available at next_in */ - uLong total_in; /* total nb of input bytes read so far */ - - Bytef *next_out; /* next output byte should be put there */ - uInt avail_out; /* remaining free space at next_out */ - uLong total_out; /* total nb of bytes output so far */ - - char *msg; /* last error message, NULL if no error */ - struct internal_state FAR *state; /* not visible by applications */ - - alloc_func zalloc; /* used to allocate the internal state */ - free_func zfree; /* used to free the internal state */ - voidpf opaque; /* private data object passed to zalloc and zfree */ - - int data_type; /* best guess about the data type: binary or text */ - uLong adler; /* adler32 value of the uncompressed data */ - uLong reserved; /* reserved for future use */ -} z_stream; - -typedef z_stream FAR *z_streamp; - -/* - gzip header information passed to and from zlib routines. See RFC 1952 - for more details on the meanings of these fields. -*/ -typedef struct gz_header_s { - int text; /* true if compressed data believed to be text */ - uLong time; /* modification time */ - int xflags; /* extra flags (not used when writing a gzip file) */ - int os; /* operating system */ - Bytef *extra; /* pointer to extra field or Z_NULL if none */ - uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ - uInt extra_max; /* space at extra (only when reading header) */ - Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ - uInt name_max; /* space at name (only when reading header) */ - Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ - uInt comm_max; /* space at comment (only when reading header) */ - int hcrc; /* true if there was or will be a header crc */ - int done; /* true when done reading gzip header (not used - when writing a gzip file) */ -} gz_header; - -typedef gz_header FAR *gz_headerp; - -/* - The application must update next_in and avail_in when avail_in has - dropped to zero. It must update next_out and avail_out when avail_out - has dropped to zero. The application must initialize zalloc, zfree and - opaque before calling the init function. All other fields are set by the - compression library and must not be updated by the application. - - The opaque value provided by the application will be passed as the first - parameter for calls of zalloc and zfree. This can be useful for custom - memory management. The compression library attaches no meaning to the - opaque value. - - zalloc must return Z_NULL if there is not enough memory for the object. - If zlib is used in a multi-threaded application, zalloc and zfree must be - thread safe. - - On 16-bit systems, the functions zalloc and zfree must be able to allocate - exactly 65536 bytes, but will not be required to allocate more than this - if the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS, - pointers returned by zalloc for objects of exactly 65536 bytes *must* - have their offset normalized to zero. The default allocation function - provided by this library ensures this (see zutil.c). To reduce memory - requirements and avoid any allocation of 64K objects, at the expense of - compression ratio, compile the library with -DMAX_WBITS=14 (see zconf.h). - - The fields total_in and total_out can be used for statistics or - progress reports. After compression, total_in holds the total size of - the uncompressed data and may be saved for use in the decompressor - (particularly if the decompressor wants to decompress everything in - a single step). -*/ - - /* constants */ - -#define Z_NO_FLUSH 0 -#define Z_PARTIAL_FLUSH 1 /* will be removed, use Z_SYNC_FLUSH instead */ -#define Z_SYNC_FLUSH 2 -#define Z_FULL_FLUSH 3 -#define Z_FINISH 4 -#define Z_BLOCK 5 -/* Allowed flush values; see deflate() and inflate() below for details */ - -#define Z_OK 0 -#define Z_STREAM_END 1 -#define Z_NEED_DICT 2 -#define Z_ERRNO (-1) -#define Z_STREAM_ERROR (-2) -#define Z_DATA_ERROR (-3) -#define Z_MEM_ERROR (-4) -#define Z_BUF_ERROR (-5) -#define Z_VERSION_ERROR (-6) -/* Return codes for the compression/decompression functions. Negative - * values are errors, positive values are used for special but normal events. - */ - -#define Z_NO_COMPRESSION 0 -#define Z_BEST_SPEED 1 -#define Z_BEST_COMPRESSION 9 -#define Z_DEFAULT_COMPRESSION (-1) -/* compression levels */ - -#define Z_FILTERED 1 -#define Z_HUFFMAN_ONLY 2 -#define Z_RLE 3 -#define Z_FIXED 4 -#define Z_DEFAULT_STRATEGY 0 -/* compression strategy; see deflateInit2() below for details */ - -#define Z_BINARY 0 -#define Z_TEXT 1 -#define Z_ASCII Z_TEXT /* for compatibility with 1.2.2 and earlier */ -#define Z_UNKNOWN 2 -/* Possible values of the data_type field (though see inflate()) */ - -#define Z_DEFLATED 8 -/* The deflate compression method (the only one supported in this version) */ - -#define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ - -#define zlib_version zlibVersion() -/* for compatibility with versions < 1.0.2 */ - - /* basic functions */ - -ZEXTERN const char * ZEXPORT zlibVersion OF((void)); -/* The application can compare zlibVersion and ZLIB_VERSION for consistency. - If the first character differs, the library code actually used is - not compatible with the zlib.h header file used by the application. - This check is automatically made by deflateInit and inflateInit. - */ - -/* -ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); - - Initializes the internal stream state for compression. The fields - zalloc, zfree and opaque must be initialized before by the caller. - If zalloc and zfree are set to Z_NULL, deflateInit updates them to - use default allocation functions. - - The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9: - 1 gives best speed, 9 gives best compression, 0 gives no compression at - all (the input data is simply copied a block at a time). - Z_DEFAULT_COMPRESSION requests a default compromise between speed and - compression (currently equivalent to level 6). - - deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not - enough memory, Z_STREAM_ERROR if level is not a valid compression level, - Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible - with the version assumed by the caller (ZLIB_VERSION). - msg is set to null if there is no error message. deflateInit does not - perform any compression: this will be done by deflate(). -*/ - - -ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); -/* - deflate compresses as much data as possible, and stops when the input - buffer becomes empty or the output buffer becomes full. It may introduce some - output latency (reading input without producing any output) except when - forced to flush. - - The detailed semantics are as follows. deflate performs one or both of the - following actions: - - - Compress more input starting at next_in and update next_in and avail_in - accordingly. If not all input can be processed (because there is not - enough room in the output buffer), next_in and avail_in are updated and - processing will resume at this point for the next call of deflate(). - - - Provide more output starting at next_out and update next_out and avail_out - accordingly. This action is forced if the parameter flush is non zero. - Forcing flush frequently degrades the compression ratio, so this parameter - should be set only when necessary (in interactive applications). - Some output may be provided even if flush is not set. - - Before the call of deflate(), the application should ensure that at least - one of the actions is possible, by providing more input and/or consuming - more output, and updating avail_in or avail_out accordingly; avail_out - should never be zero before the call. The application can consume the - compressed output when it wants, for example when the output buffer is full - (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK - and with zero avail_out, it must be called again after making room in the - output buffer because there might be more output pending. - - Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to - decide how much data to accumualte before producing output, in order to - maximize compression. - - If the parameter flush is set to Z_SYNC_FLUSH, all pending output is - flushed to the output buffer and the output is aligned on a byte boundary, so - that the decompressor can get all input data available so far. (In particular - avail_in is zero after the call if enough output space has been provided - before the call.) Flushing may degrade compression for some compression - algorithms and so it should be used only when necessary. - - If flush is set to Z_FULL_FLUSH, all output is flushed as with - Z_SYNC_FLUSH, and the compression state is reset so that decompression can - restart from this point if previous compressed data has been damaged or if - random access is desired. Using Z_FULL_FLUSH too often can seriously degrade - compression. - - If deflate returns with avail_out == 0, this function must be called again - with the same value of the flush parameter and more output space (updated - avail_out), until the flush is complete (deflate returns with non-zero - avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that - avail_out is greater than six to avoid repeated flush markers due to - avail_out == 0 on return. - - If the parameter flush is set to Z_FINISH, pending input is processed, - pending output is flushed and deflate returns with Z_STREAM_END if there - was enough output space; if deflate returns with Z_OK, this function must be - called again with Z_FINISH and more output space (updated avail_out) but no - more input data, until it returns with Z_STREAM_END or an error. After - deflate has returned Z_STREAM_END, the only possible operations on the - stream are deflateReset or deflateEnd. - - Z_FINISH can be used immediately after deflateInit if all the compression - is to be done in a single step. In this case, avail_out must be at least - the value returned by deflateBound (see below). If deflate does not return - Z_STREAM_END, then it must be called again as described above. - - deflate() sets strm->adler to the adler32 checksum of all input read - so far (that is, total_in bytes). - - deflate() may update strm->data_type if it can make a good guess about - the input data type (Z_BINARY or Z_TEXT). In doubt, the data is considered - binary. This field is only for information purposes and does not affect - the compression algorithm in any manner. - - deflate() returns Z_OK if some progress has been made (more input - processed or more output produced), Z_STREAM_END if all input has been - consumed and all output has been produced (only when flush is set to - Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example - if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible - (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not - fatal, and deflate() can be called again with more input and more output - space to continue compressing. -*/ - - -ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm)); -/* - All dynamically allocated data structures for this stream are freed. - This function discards any unprocessed input and does not flush any - pending output. - - deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the - stream state was inconsistent, Z_DATA_ERROR if the stream was freed - prematurely (some input or output was discarded). In the error case, - msg may be set but then points to a static string (which must not be - deallocated). -*/ - - -/* -ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm)); - - Initializes the internal stream state for decompression. The fields - next_in, avail_in, zalloc, zfree and opaque must be initialized before by - the caller. If next_in is not Z_NULL and avail_in is large enough (the exact - value depends on the compression method), inflateInit determines the - compression method from the zlib header and allocates all data structures - accordingly; otherwise the allocation will be deferred to the first call of - inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to - use default allocation functions. - - inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough - memory, Z_VERSION_ERROR if the zlib library version is incompatible with the - version assumed by the caller. msg is set to null if there is no error - message. inflateInit does not perform any decompression apart from reading - the zlib header if present: this will be done by inflate(). (So next_in and - avail_in may be modified, but next_out and avail_out are unchanged.) -*/ - - -ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush)); -/* - inflate decompresses as much data as possible, and stops when the input - buffer becomes empty or the output buffer becomes full. It may introduce - some output latency (reading input without producing any output) except when - forced to flush. - - The detailed semantics are as follows. inflate performs one or both of the - following actions: - - - Decompress more input starting at next_in and update next_in and avail_in - accordingly. If not all input can be processed (because there is not - enough room in the output buffer), next_in is updated and processing - will resume at this point for the next call of inflate(). - - - Provide more output starting at next_out and update next_out and avail_out - accordingly. inflate() provides as much output as possible, until there - is no more input data or no more space in the output buffer (see below - about the flush parameter). - - Before the call of inflate(), the application should ensure that at least - one of the actions is possible, by providing more input and/or consuming - more output, and updating the next_* and avail_* values accordingly. - The application can consume the uncompressed output when it wants, for - example when the output buffer is full (avail_out == 0), or after each - call of inflate(). If inflate returns Z_OK and with zero avail_out, it - must be called again after making room in the output buffer because there - might be more output pending. - - The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, - Z_FINISH, or Z_BLOCK. Z_SYNC_FLUSH requests that inflate() flush as much - output as possible to the output buffer. Z_BLOCK requests that inflate() stop - if and when it gets to the next deflate block boundary. When decoding the - zlib or gzip format, this will cause inflate() to return immediately after - the header and before the first block. When doing a raw inflate, inflate() - will go ahead and process the first block, and will return when it gets to - the end of that block, or when it runs out of data. - - The Z_BLOCK option assists in appending to or combining deflate streams. - Also to assist in this, on return inflate() will set strm->data_type to the - number of unused bits in the last byte taken from strm->next_in, plus 64 - if inflate() is currently decoding the last block in the deflate stream, - plus 128 if inflate() returned immediately after decoding an end-of-block - code or decoding the complete header up to just before the first byte of the - deflate stream. The end-of-block will not be indicated until all of the - uncompressed data from that block has been written to strm->next_out. The - number of unused bits may in general be greater than seven, except when - bit 7 of data_type is set, in which case the number of unused bits will be - less than eight. - - inflate() should normally be called until it returns Z_STREAM_END or an - error. However if all decompression is to be performed in a single step - (a single call of inflate), the parameter flush should be set to - Z_FINISH. In this case all pending input is processed and all pending - output is flushed; avail_out must be large enough to hold all the - uncompressed data. (The size of the uncompressed data may have been saved - by the compressor for this purpose.) The next operation on this stream must - be inflateEnd to deallocate the decompression state. The use of Z_FINISH - is never required, but can be used to inform inflate that a faster approach - may be used for the single inflate() call. - - In this implementation, inflate() always flushes as much output as - possible to the output buffer, and always uses the faster approach on the - first call. So the only effect of the flush parameter in this implementation - is on the return value of inflate(), as noted below, or when it returns early - because Z_BLOCK is used. - - If a preset dictionary is needed after this call (see inflateSetDictionary - below), inflate sets strm->adler to the adler32 checksum of the dictionary - chosen by the compressor and returns Z_NEED_DICT; otherwise it sets - strm->adler to the adler32 checksum of all output produced so far (that is, - total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described - below. At the end of the stream, inflate() checks that its computed adler32 - checksum is equal to that saved by the compressor and returns Z_STREAM_END - only if the checksum is correct. - - inflate() will decompress and check either zlib-wrapped or gzip-wrapped - deflate data. The header type is detected automatically. Any information - contained in the gzip header is not retained, so applications that need that - information should instead use raw inflate, see inflateInit2() below, or - inflateBack() and perform their own processing of the gzip header and - trailer. - - inflate() returns Z_OK if some progress has been made (more input processed - or more output produced), Z_STREAM_END if the end of the compressed data has - been reached and all uncompressed output has been produced, Z_NEED_DICT if a - preset dictionary is needed at this point, Z_DATA_ERROR if the input data was - corrupted (input stream not conforming to the zlib format or incorrect check - value), Z_STREAM_ERROR if the stream structure was inconsistent (for example - if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory, - Z_BUF_ERROR if no progress is possible or if there was not enough room in the - output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and - inflate() can be called again with more input and more output space to - continue decompressing. If Z_DATA_ERROR is returned, the application may then - call inflateSync() to look for a good compression block if a partial recovery - of the data is desired. -*/ - - -ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm)); -/* - All dynamically allocated data structures for this stream are freed. - This function discards any unprocessed input and does not flush any - pending output. - - inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state - was inconsistent. In the error case, msg may be set but then points to a - static string (which must not be deallocated). -*/ - - /* Advanced functions */ - -/* - The following functions are needed only in some special applications. -*/ - -/* -ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm, - int level, - int method, - int windowBits, - int memLevel, - int strategy)); - - This is another version of deflateInit with more compression options. The - fields next_in, zalloc, zfree and opaque must be initialized before by - the caller. - - The method parameter is the compression method. It must be Z_DEFLATED in - this version of the library. - - The windowBits parameter is the base two logarithm of the window size - (the size of the history buffer). It should be in the range 8..15 for this - version of the library. Larger values of this parameter result in better - compression at the expense of memory usage. The default value is 15 if - deflateInit is used instead. - - windowBits can also be -8..-15 for raw deflate. In this case, -windowBits - determines the window size. deflate() will then generate raw deflate data - with no zlib header or trailer, and will not compute an adler32 check value. - - windowBits can also be greater than 15 for optional gzip encoding. Add - 16 to windowBits to write a simple gzip header and trailer around the - compressed data instead of a zlib wrapper. The gzip header will have no - file name, no extra data, no comment, no modification time (set to zero), - no header crc, and the operating system will be set to 255 (unknown). If a - gzip stream is being written, strm->adler is a crc32 instead of an adler32. - - The memLevel parameter specifies how much memory should be allocated - for the internal compression state. memLevel=1 uses minimum memory but - is slow and reduces compression ratio; memLevel=9 uses maximum memory - for optimal speed. The default value is 8. See zconf.h for total memory - usage as a function of windowBits and memLevel. - - The strategy parameter is used to tune the compression algorithm. Use the - value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a - filter (or predictor), Z_HUFFMAN_ONLY to force Huffman encoding only (no - string match), or Z_RLE to limit match distances to one (run-length - encoding). Filtered data consists mostly of small values with a somewhat - random distribution. In this case, the compression algorithm is tuned to - compress them better. The effect of Z_FILTERED is to force more Huffman - coding and less string matching; it is somewhat intermediate between - Z_DEFAULT and Z_HUFFMAN_ONLY. Z_RLE is designed to be almost as fast as - Z_HUFFMAN_ONLY, but give better compression for PNG image data. The strategy - parameter only affects the compression ratio but not the correctness of the - compressed output even if it is not set appropriately. Z_FIXED prevents the - use of dynamic Huffman codes, allowing for a simpler decoder for special - applications. - - deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough - memory, Z_STREAM_ERROR if a parameter is invalid (such as an invalid - method). msg is set to null if there is no error message. deflateInit2 does - not perform any compression: this will be done by deflate(). -*/ - -ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm, - const Bytef *dictionary, - uInt dictLength)); -/* - Initializes the compression dictionary from the given byte sequence - without producing any compressed output. This function must be called - immediately after deflateInit, deflateInit2 or deflateReset, before any - call of deflate. The compressor and decompressor must use exactly the same - dictionary (see inflateSetDictionary). - - The dictionary should consist of strings (byte sequences) that are likely - to be encountered later in the data to be compressed, with the most commonly - used strings preferably put towards the end of the dictionary. Using a - dictionary is most useful when the data to be compressed is short and can be - predicted with good accuracy; the data can then be compressed better than - with the default empty dictionary. - - Depending on the size of the compression data structures selected by - deflateInit or deflateInit2, a part of the dictionary may in effect be - discarded, for example if the dictionary is larger than the window size in - deflate or deflate2. Thus the strings most likely to be useful should be - put at the end of the dictionary, not at the front. In addition, the - current implementation of deflate will use at most the window size minus - 262 bytes of the provided dictionary. - - Upon return of this function, strm->adler is set to the adler32 value - of the dictionary; the decompressor may later use this value to determine - which dictionary has been used by the compressor. (The adler32 value - applies to the whole dictionary even if only a subset of the dictionary is - actually used by the compressor.) If a raw deflate was requested, then the - adler32 value is not computed and strm->adler is not set. - - deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a - parameter is invalid (such as NULL dictionary) or the stream state is - inconsistent (for example if deflate has already been called for this stream - or if the compression method is bsort). deflateSetDictionary does not - perform any compression: this will be done by deflate(). -*/ - -ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest, - z_streamp source)); -/* - Sets the destination stream as a complete copy of the source stream. - - This function can be useful when several compression strategies will be - tried, for example when there are several ways of pre-processing the input - data with a filter. The streams that will be discarded should then be freed - by calling deflateEnd. Note that deflateCopy duplicates the internal - compression state which can be quite large, so this strategy is slow and - can consume lots of memory. - - deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not - enough memory, Z_STREAM_ERROR if the source stream state was inconsistent - (such as zalloc being NULL). msg is left unchanged in both source and - destination. -*/ - -ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm)); -/* - This function is equivalent to deflateEnd followed by deflateInit, - but does not free and reallocate all the internal compression state. - The stream will keep the same compression level and any other attributes - that may have been set by deflateInit2. - - deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent (such as zalloc or state being NULL). -*/ - -ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm, - int level, - int strategy)); -/* - Dynamically update the compression level and compression strategy. The - interpretation of level and strategy is as in deflateInit2. This can be - used to switch between compression and straight copy of the input data, or - to switch to a different kind of input data requiring a different - strategy. If the compression level is changed, the input available so far - is compressed with the old level (and may be flushed); the new level will - take effect only at the next call of deflate(). - - Before the call of deflateParams, the stream state must be set as for - a call of deflate(), since the currently available input may have to - be compressed and flushed. In particular, strm->avail_out must be non-zero. - - deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source - stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR - if strm->avail_out was zero. -*/ - -ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm, - int good_length, - int max_lazy, - int nice_length, - int max_chain)); -/* - Fine tune deflate's internal compression parameters. This should only be - used by someone who understands the algorithm used by zlib's deflate for - searching for the best matching string, and even then only by the most - fanatic optimizer trying to squeeze out the last compressed bit for their - specific input data. Read the deflate.c source code for the meaning of the - max_lazy, good_length, nice_length, and max_chain parameters. - - deflateTune() can be called after deflateInit() or deflateInit2(), and - returns Z_OK on success, or Z_STREAM_ERROR for an invalid deflate stream. - */ - -ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm, - uLong sourceLen)); -/* - deflateBound() returns an upper bound on the compressed size after - deflation of sourceLen bytes. It must be called after deflateInit() - or deflateInit2(). This would be used to allocate an output buffer - for deflation in a single pass, and so would be called before deflate(). -*/ - -ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm, - int bits, - int value)); -/* - deflatePrime() inserts bits in the deflate output stream. The intent - is that this function is used to start off the deflate output with the - bits leftover from a previous deflate stream when appending to it. As such, - this function can only be used for raw deflate, and must be used before the - first deflate() call after a deflateInit2() or deflateReset(). bits must be - less than or equal to 16, and that many of the least significant bits of - value will be inserted in the output. - - deflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent. -*/ - -ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm, - gz_headerp head)); -/* - deflateSetHeader() provides gzip header information for when a gzip - stream is requested by deflateInit2(). deflateSetHeader() may be called - after deflateInit2() or deflateReset() and before the first call of - deflate(). The text, time, os, extra field, name, and comment information - in the provided gz_header structure are written to the gzip header (xflag is - ignored -- the extra flags are set according to the compression level). The - caller must assure that, if not Z_NULL, name and comment are terminated with - a zero byte, and that if extra is not Z_NULL, that extra_len bytes are - available there. If hcrc is true, a gzip header crc is included. Note that - the current versions of the command-line version of gzip (up through version - 1.3.x) do not support header crc's, and will report that it is a "multi-part - gzip file" and give up. - - If deflateSetHeader is not used, the default gzip header has text false, - the time set to zero, and os set to 255, with no extra, name, or comment - fields. The gzip header is returned to the default state by deflateReset(). - - deflateSetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent. -*/ - -/* -ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm, - int windowBits)); - - This is another version of inflateInit with an extra parameter. The - fields next_in, avail_in, zalloc, zfree and opaque must be initialized - before by the caller. - - The windowBits parameter is the base two logarithm of the maximum window - size (the size of the history buffer). It should be in the range 8..15 for - this version of the library. The default value is 15 if inflateInit is used - instead. windowBits must be greater than or equal to the windowBits value - provided to deflateInit2() while compressing, or it must be equal to 15 if - deflateInit2() was not used. If a compressed stream with a larger window - size is given as input, inflate() will return with the error code - Z_DATA_ERROR instead of trying to allocate a larger window. - - windowBits can also be -8..-15 for raw inflate. In this case, -windowBits - determines the window size. inflate() will then process raw deflate data, - not looking for a zlib or gzip header, not generating a check value, and not - looking for any check values for comparison at the end of the stream. This - is for use with other formats that use the deflate compressed data format - such as zip. Those formats provide their own check values. If a custom - format is developed using the raw deflate format for compressed data, it is - recommended that a check value such as an adler32 or a crc32 be applied to - the uncompressed data as is done in the zlib, gzip, and zip formats. For - most applications, the zlib format should be used as is. Note that comments - above on the use in deflateInit2() applies to the magnitude of windowBits. - - windowBits can also be greater than 15 for optional gzip decoding. Add - 32 to windowBits to enable zlib and gzip decoding with automatic header - detection, or add 16 to decode only the gzip format (the zlib format will - return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is - a crc32 instead of an adler32. - - inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough - memory, Z_STREAM_ERROR if a parameter is invalid (such as a null strm). msg - is set to null if there is no error message. inflateInit2 does not perform - any decompression apart from reading the zlib header if present: this will - be done by inflate(). (So next_in and avail_in may be modified, but next_out - and avail_out are unchanged.) -*/ - -ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm, - const Bytef *dictionary, - uInt dictLength)); -/* - Initializes the decompression dictionary from the given uncompressed byte - sequence. This function must be called immediately after a call of inflate, - if that call returned Z_NEED_DICT. The dictionary chosen by the compressor - can be determined from the adler32 value returned by that call of inflate. - The compressor and decompressor must use exactly the same dictionary (see - deflateSetDictionary). For raw inflate, this function can be called - immediately after inflateInit2() or inflateReset() and before any call of - inflate() to set the dictionary. The application must insure that the - dictionary that was used for compression is provided. - - inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a - parameter is invalid (such as NULL dictionary) or the stream state is - inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the - expected one (incorrect adler32 value). inflateSetDictionary does not - perform any decompression: this will be done by subsequent calls of - inflate(). -*/ - -ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); -/* - Skips invalid compressed data until a full flush point (see above the - description of deflate with Z_FULL_FLUSH) can be found, or until all - available input is skipped. No output is provided. - - inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR - if no more input was provided, Z_DATA_ERROR if no flush point has been found, - or Z_STREAM_ERROR if the stream structure was inconsistent. In the success - case, the application may save the current current value of total_in which - indicates where valid compressed data was found. In the error case, the - application may repeatedly call inflateSync, providing more input each time, - until success or end of the input data. -*/ - -ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest, - z_streamp source)); -/* - Sets the destination stream as a complete copy of the source stream. - - This function can be useful when randomly accessing a large stream. The - first pass through the stream can periodically record the inflate state, - allowing restarting inflate at those points when randomly accessing the - stream. - - inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not - enough memory, Z_STREAM_ERROR if the source stream state was inconsistent - (such as zalloc being NULL). msg is left unchanged in both source and - destination. -*/ - -ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm)); -/* - This function is equivalent to inflateEnd followed by inflateInit, - but does not free and reallocate all the internal decompression state. - The stream will keep attributes that may have been set by inflateInit2. - - inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent (such as zalloc or state being NULL). -*/ - -ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm, - int bits, - int value)); -/* - This function inserts bits in the inflate input stream. The intent is - that this function is used to start inflating at a bit position in the - middle of a byte. The provided bits will be used before any bytes are used - from next_in. This function should only be used with raw inflate, and - should be used before the first inflate() call after inflateInit2() or - inflateReset(). bits must be less than or equal to 16, and that many of the - least significant bits of value will be inserted in the input. - - inflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent. -*/ - -ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm, - gz_headerp head)); -/* - inflateGetHeader() requests that gzip header information be stored in the - provided gz_header structure. inflateGetHeader() may be called after - inflateInit2() or inflateReset(), and before the first call of inflate(). - As inflate() processes the gzip stream, head->done is zero until the header - is completed, at which time head->done is set to one. If a zlib stream is - being decoded, then head->done is set to -1 to indicate that there will be - no gzip header information forthcoming. Note that Z_BLOCK can be used to - force inflate() to return immediately after header processing is complete - and before any actual data is decompressed. - - The text, time, xflags, and os fields are filled in with the gzip header - contents. hcrc is set to true if there is a header CRC. (The header CRC - was valid if done is set to one.) If extra is not Z_NULL, then extra_max - contains the maximum number of bytes to write to extra. Once done is true, - extra_len contains the actual extra field length, and extra contains the - extra field, or that field truncated if extra_max is less than extra_len. - If name is not Z_NULL, then up to name_max characters are written there, - terminated with a zero unless the length is greater than name_max. If - comment is not Z_NULL, then up to comm_max characters are written there, - terminated with a zero unless the length is greater than comm_max. When - any of extra, name, or comment are not Z_NULL and the respective field is - not present in the header, then that field is set to Z_NULL to signal its - absence. This allows the use of deflateSetHeader() with the returned - structure to duplicate the header. However if those fields are set to - allocated memory, then the application will need to save those pointers - elsewhere so that they can be eventually freed. - - If inflateGetHeader is not used, then the header information is simply - discarded. The header is always checked for validity, including the header - CRC if present. inflateReset() will reset the process to discard the header - information. The application would need to call inflateGetHeader() again to - retrieve the header from the next gzip stream. - - inflateGetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent. -*/ - -/* -ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits, - unsigned char FAR *window)); - - Initialize the internal stream state for decompression using inflateBack() - calls. The fields zalloc, zfree and opaque in strm must be initialized - before the call. If zalloc and zfree are Z_NULL, then the default library- - derived memory allocation routines are used. windowBits is the base two - logarithm of the window size, in the range 8..15. window is a caller - supplied buffer of that size. Except for special applications where it is - assured that deflate was used with small window sizes, windowBits must be 15 - and a 32K byte window must be supplied to be able to decompress general - deflate streams. - - See inflateBack() for the usage of these routines. - - inflateBackInit will return Z_OK on success, Z_STREAM_ERROR if any of - the paramaters are invalid, Z_MEM_ERROR if the internal state could not - be allocated, or Z_VERSION_ERROR if the version of the library does not - match the version of the header file. -*/ - -typedef unsigned (*in_func) OF((void FAR *, unsigned char FAR * FAR *)); -typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned)); - -ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm, - in_func in, void FAR *in_desc, - out_func out, void FAR *out_desc)); -/* - inflateBack() does a raw inflate with a single call using a call-back - interface for input and output. This is more efficient than inflate() for - file i/o applications in that it avoids copying between the output and the - sliding window by simply making the window itself the output buffer. This - function trusts the application to not change the output buffer passed by - the output function, at least until inflateBack() returns. - - inflateBackInit() must be called first to allocate the internal state - and to initialize the state with the user-provided window buffer. - inflateBack() may then be used multiple times to inflate a complete, raw - deflate stream with each call. inflateBackEnd() is then called to free - the allocated state. - - A raw deflate stream is one with no zlib or gzip header or trailer. - This routine would normally be used in a utility that reads zip or gzip - files and writes out uncompressed files. The utility would decode the - header and process the trailer on its own, hence this routine expects - only the raw deflate stream to decompress. This is different from the - normal behavior of inflate(), which expects either a zlib or gzip header and - trailer around the deflate stream. - - inflateBack() uses two subroutines supplied by the caller that are then - called by inflateBack() for input and output. inflateBack() calls those - routines until it reads a complete deflate stream and writes out all of the - uncompressed data, or until it encounters an error. The function's - parameters and return types are defined above in the in_func and out_func - typedefs. inflateBack() will call in(in_desc, &buf) which should return the - number of bytes of provided input, and a pointer to that input in buf. If - there is no input available, in() must return zero--buf is ignored in that - case--and inflateBack() will return a buffer error. inflateBack() will call - out(out_desc, buf, len) to write the uncompressed data buf[0..len-1]. out() - should return zero on success, or non-zero on failure. If out() returns - non-zero, inflateBack() will return with an error. Neither in() nor out() - are permitted to change the contents of the window provided to - inflateBackInit(), which is also the buffer that out() uses to write from. - The length written by out() will be at most the window size. Any non-zero - amount of input may be provided by in(). - - For convenience, inflateBack() can be provided input on the first call by - setting strm->next_in and strm->avail_in. If that input is exhausted, then - in() will be called. Therefore strm->next_in must be initialized before - calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called - immediately for input. If strm->next_in is not Z_NULL, then strm->avail_in - must also be initialized, and then if strm->avail_in is not zero, input will - initially be taken from strm->next_in[0 .. strm->avail_in - 1]. - - The in_desc and out_desc parameters of inflateBack() is passed as the - first parameter of in() and out() respectively when they are called. These - descriptors can be optionally used to pass any information that the caller- - supplied in() and out() functions need to do their job. - - On return, inflateBack() will set strm->next_in and strm->avail_in to - pass back any unused input that was provided by the last in() call. The - return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR - if in() or out() returned an error, Z_DATA_ERROR if there was a format - error in the deflate stream (in which case strm->msg is set to indicate the - nature of the error), or Z_STREAM_ERROR if the stream was not properly - initialized. In the case of Z_BUF_ERROR, an input or output error can be - distinguished using strm->next_in which will be Z_NULL only if in() returned - an error. If strm->next is not Z_NULL, then the Z_BUF_ERROR was due to - out() returning non-zero. (in() will always be called before out(), so - strm->next_in is assured to be defined if out() returns non-zero.) Note - that inflateBack() cannot return Z_OK. -*/ - -ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm)); -/* - All memory allocated by inflateBackInit() is freed. - - inflateBackEnd() returns Z_OK on success, or Z_STREAM_ERROR if the stream - state was inconsistent. -*/ - -ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void)); -/* Return flags indicating compile-time options. - - Type sizes, two bits each, 00 = 16 bits, 01 = 32, 10 = 64, 11 = other: - 1.0: size of uInt - 3.2: size of uLong - 5.4: size of voidpf (pointer) - 7.6: size of z_off_t - - Compiler, assembler, and debug options: - 8: DEBUG - 9: ASMV or ASMINF -- use ASM code - 10: ZLIB_WINAPI -- exported functions use the WINAPI calling convention - 11: 0 (reserved) - - One-time table building (smaller code, but not thread-safe if true): - 12: BUILDFIXED -- build static block decoding tables when needed - 13: DYNAMIC_CRC_TABLE -- build CRC calculation tables when needed - 14,15: 0 (reserved) - - Library content (indicates missing functionality): - 16: NO_GZCOMPRESS -- gz* functions cannot compress (to avoid linking - deflate code when not needed) - 17: NO_GZIP -- deflate can't write gzip streams, and inflate can't detect - and decode gzip streams (to avoid linking crc code) - 18-19: 0 (reserved) - - Operation variations (changes in library functionality): - 20: PKZIP_BUG_WORKAROUND -- slightly more permissive inflate - 21: FASTEST -- deflate algorithm with only one, lowest compression level - 22,23: 0 (reserved) - - The sprintf variant used by gzprintf (zero is best): - 24: 0 = vs*, 1 = s* -- 1 means limited to 20 arguments after the format - 25: 0 = *nprintf, 1 = *printf -- 1 means gzprintf() not secure! - 26: 0 = returns value, 1 = void -- 1 means inferred string length returned - - Remainder: - 27-31: 0 (reserved) - */ - - - /* utility functions */ - -/* - The following utility functions are implemented on top of the - basic stream-oriented functions. To simplify the interface, some - default options are assumed (compression level and memory usage, - standard memory allocation functions). The source code of these - utility functions can easily be modified if you need special options. -*/ - -ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, - const Bytef *source, uLong sourceLen)); -/* - Compresses the source buffer into the destination buffer. sourceLen is - the byte length of the source buffer. Upon entry, destLen is the total - size of the destination buffer, which must be at least the value returned - by compressBound(sourceLen). Upon exit, destLen is the actual size of the - compressed buffer. - This function can be used to compress a whole file at once if the - input file is mmap'ed. - compress returns Z_OK if success, Z_MEM_ERROR if there was not - enough memory, Z_BUF_ERROR if there was not enough room in the output - buffer. -*/ - -ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen, - const Bytef *source, uLong sourceLen, - int level)); -/* - Compresses the source buffer into the destination buffer. The level - parameter has the same meaning as in deflateInit. sourceLen is the byte - length of the source buffer. Upon entry, destLen is the total size of the - destination buffer, which must be at least the value returned by - compressBound(sourceLen). Upon exit, destLen is the actual size of the - compressed buffer. - - compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough - memory, Z_BUF_ERROR if there was not enough room in the output buffer, - Z_STREAM_ERROR if the level parameter is invalid. -*/ - -ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); -/* - compressBound() returns an upper bound on the compressed size after - compress() or compress2() on sourceLen bytes. It would be used before - a compress() or compress2() call to allocate the destination buffer. -*/ - -ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen, - const Bytef *source, uLong sourceLen)); -/* - Decompresses the source buffer into the destination buffer. sourceLen is - the byte length of the source buffer. Upon entry, destLen is the total - size of the destination buffer, which must be large enough to hold the - entire uncompressed data. (The size of the uncompressed data must have - been saved previously by the compressor and transmitted to the decompressor - by some mechanism outside the scope of this compression library.) - Upon exit, destLen is the actual size of the compressed buffer. - This function can be used to decompress a whole file at once if the - input file is mmap'ed. - - uncompress returns Z_OK if success, Z_MEM_ERROR if there was not - enough memory, Z_BUF_ERROR if there was not enough room in the output - buffer, or Z_DATA_ERROR if the input data was corrupted or incomplete. -*/ - - -typedef voidp gzFile; - -ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode)); -/* - Opens a gzip (.gz) file for reading or writing. The mode parameter - is as in fopen ("rb" or "wb") but can also include a compression level - ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for - Huffman only compression as in "wb1h", or 'R' for run-length encoding - as in "wb1R". (See the description of deflateInit2 for more information - about the strategy parameter.) - - gzopen can be used to read a file which is not in gzip format; in this - case gzread will directly read from the file without decompression. - - gzopen returns NULL if the file could not be opened or if there was - insufficient memory to allocate the (de)compression state; errno - can be checked to distinguish the two cases (if errno is zero, the - zlib error is Z_MEM_ERROR). */ - -ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode)); -/* - gzdopen() associates a gzFile with the file descriptor fd. File - descriptors are obtained from calls like open, dup, creat, pipe or - fileno (in the file has been previously opened with fopen). - The mode parameter is as in gzopen. - The next call of gzclose on the returned gzFile will also close the - file descriptor fd, just like fclose(fdopen(fd), mode) closes the file - descriptor fd. If you want to keep fd open, use gzdopen(dup(fd), mode). - gzdopen returns NULL if there was insufficient memory to allocate - the (de)compression state. -*/ - -ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); -/* - Dynamically update the compression level or strategy. See the description - of deflateInit2 for the meaning of these parameters. - gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not - opened for writing. -*/ - -ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); -/* - Reads the given number of uncompressed bytes from the compressed file. - If the input file was not in gzip format, gzread copies the given number - of bytes into the buffer. - gzread returns the number of uncompressed bytes actually read (0 for - end of file, -1 for error). */ - -ZEXTERN int ZEXPORT gzwrite OF((gzFile file, - voidpc buf, unsigned len)); -/* - Writes the given number of uncompressed bytes into the compressed file. - gzwrite returns the number of uncompressed bytes actually written - (0 in case of error). -*/ - -ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...)); -/* - Converts, formats, and writes the args to the compressed file under - control of the format string, as in fprintf. gzprintf returns the number of - uncompressed bytes actually written (0 in case of error). The number of - uncompressed bytes written is limited to 4095. The caller should assure that - this limit is not exceeded. If it is exceeded, then gzprintf() will return - return an error (0) with nothing written. In this case, there may also be a - buffer overflow with unpredictable consequences, which is possible only if - zlib was compiled with the insecure functions sprintf() or vsprintf() - because the secure snprintf() or vsnprintf() functions were not available. -*/ - -ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s)); -/* - Writes the given null-terminated string to the compressed file, excluding - the terminating null character. - gzputs returns the number of characters written, or -1 in case of error. -*/ - -ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len)); -/* - Reads bytes from the compressed file until len-1 characters are read, or - a newline character is read and transferred to buf, or an end-of-file - condition is encountered. The string is then terminated with a null - character. - gzgets returns buf, or Z_NULL in case of error. -*/ - -ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); -/* - Writes c, converted to an unsigned char, into the compressed file. - gzputc returns the value that was written, or -1 in case of error. -*/ - -ZEXTERN int ZEXPORT gzgetc OF((gzFile file)); -/* - Reads one byte from the compressed file. gzgetc returns this byte - or -1 in case of end of file or error. -*/ - -ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file)); -/* - Push one character back onto the stream to be read again later. - Only one character of push-back is allowed. gzungetc() returns the - character pushed, or -1 on failure. gzungetc() will fail if a - character has been pushed but not read yet, or if c is -1. The pushed - character will be discarded if the stream is repositioned with gzseek() - or gzrewind(). -*/ - -ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush)); -/* - Flushes all pending output into the compressed file. The parameter - flush is as in the deflate() function. The return value is the zlib - error number (see function gzerror below). gzflush returns Z_OK if - the flush parameter is Z_FINISH and all output could be flushed. - gzflush should be called only when strictly necessary because it can - degrade compression. -*/ - -ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file, - z_off_t offset, int whence)); -/* - Sets the starting position for the next gzread or gzwrite on the - given compressed file. The offset represents a number of bytes in the - uncompressed data stream. The whence parameter is defined as in lseek(2); - the value SEEK_END is not supported. - If the file is opened for reading, this function is emulated but can be - extremely slow. If the file is opened for writing, only forward seeks are - supported; gzseek then compresses a sequence of zeroes up to the new - starting position. - - gzseek returns the resulting offset location as measured in bytes from - the beginning of the uncompressed stream, or -1 in case of error, in - particular if the file is opened for writing and the new starting position - would be before the current position. -*/ - -ZEXTERN int ZEXPORT gzrewind OF((gzFile file)); -/* - Rewinds the given file. This function is supported only for reading. - - gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET) -*/ - -ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file)); -/* - Returns the starting position for the next gzread or gzwrite on the - given compressed file. This position represents a number of bytes in the - uncompressed data stream. - - gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR) -*/ - -ZEXTERN int ZEXPORT gzeof OF((gzFile file)); -/* - Returns 1 when EOF has previously been detected reading the given - input stream, otherwise zero. -*/ - -ZEXTERN int ZEXPORT gzdirect OF((gzFile file)); -/* - Returns 1 if file is being read directly without decompression, otherwise - zero. -*/ - -ZEXTERN int ZEXPORT gzclose OF((gzFile file)); -/* - Flushes all pending output if necessary, closes the compressed file - and deallocates all the (de)compression state. The return value is the zlib - error number (see function gzerror below). -*/ - -ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum)); -/* - Returns the error message for the last error which occurred on the - given compressed file. errnum is set to zlib error number. If an - error occurred in the file system and not in the compression library, - errnum is set to Z_ERRNO and the application may consult errno - to get the exact error code. -*/ - -ZEXTERN void ZEXPORT gzclearerr OF((gzFile file)); -/* - Clears the error and end-of-file flags for file. This is analogous to the - clearerr() function in stdio. This is useful for continuing to read a gzip - file that is being written concurrently. -*/ - - /* checksum functions */ - -/* - These functions are not related to compression but are exported - anyway because they might be useful in applications using the - compression library. -*/ - -ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); -/* - Update a running Adler-32 checksum with the bytes buf[0..len-1] and - return the updated checksum. If buf is NULL, this function returns - the required initial value for the checksum. - An Adler-32 checksum is almost as reliable as a CRC32 but can be computed - much faster. Usage example: - - uLong adler = adler32(0L, Z_NULL, 0); - - while (read_buffer(buffer, length) != EOF) { - adler = adler32(adler, buffer, length); - } - if (adler != original_adler) error(); -*/ - -ZEXTERN uLong ZEXPORT adler32_combine OF((uLong adler1, uLong adler2, - z_off_t len2)); -/* - Combine two Adler-32 checksums into one. For two sequences of bytes, seq1 - and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for - each, adler1 and adler2. adler32_combine() returns the Adler-32 checksum of - seq1 and seq2 concatenated, requiring only adler1, adler2, and len2. -*/ - -ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); -/* - Update a running CRC-32 with the bytes buf[0..len-1] and return the - updated CRC-32. If buf is NULL, this function returns the required initial - value for the for the crc. Pre- and post-conditioning (one's complement) is - performed within this function so it shouldn't be done by the application. - Usage example: - - uLong crc = crc32(0L, Z_NULL, 0); - - while (read_buffer(buffer, length) != EOF) { - crc = crc32(crc, buffer, length); - } - if (crc != original_crc) error(); -*/ - -ZEXTERN uLong ZEXPORT crc32_combine OF((uLong crc1, uLong crc2, z_off_t len2)); - -/* - Combine two CRC-32 check values into one. For two sequences of bytes, - seq1 and seq2 with lengths len1 and len2, CRC-32 check values were - calculated for each, crc1 and crc2. crc32_combine() returns the CRC-32 - check value of seq1 and seq2 concatenated, requiring only crc1, crc2, and - len2. -*/ - - - /* various hacks, don't look :) */ - -/* deflateInit and inflateInit are macros to allow checking the zlib version - * and the compiler's view of z_stream: - */ -ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level, - const char *version, int stream_size)); -ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm, - const char *version, int stream_size)); -ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, - int windowBits, int memLevel, - int strategy, const char *version, - int stream_size)); -ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, - const char *version, int stream_size)); -ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, - unsigned char FAR *window, - const char *version, - int stream_size)); -#define deflateInit(strm, level) \ - deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream)) -#define inflateInit(strm) \ - inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream)) -#define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ - deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ - (strategy), ZLIB_VERSION, sizeof(z_stream)) -#define inflateInit2(strm, windowBits) \ - inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) -#define inflateBackInit(strm, windowBits, window) \ - inflateBackInit_((strm), (windowBits), (window), \ - ZLIB_VERSION, sizeof(z_stream)) - - -#if !defined(ZUTIL_H) && !defined(NO_DUMMY_DECL) - struct internal_state {int dummy;}; /* hack for buggy compilers */ -#endif - -ZEXTERN const char * ZEXPORT zError OF((int)); -ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp z)); -ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); - -#ifdef __cplusplus -} -#endif - -#endif /* ZLIB_H */ diff -Nru vidalia-0.2.10/src/crashreporter/CMakeLists.txt vidalia-0.2.15/src/crashreporter/CMakeLists.txt --- vidalia-0.2.10/src/crashreporter/CMakeLists.txt 2009-06-25 04:14:36.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -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( @@ -19,17 +19,12 @@ 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 @@ -57,6 +52,7 @@ ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTNETWORK_LIBRARY} + ${BREAKPAD_LIBRARY} common ) if (WIN32) diff -Nru vidalia-0.2.10/src/crashreporter/CrashReportDialog.cpp vidalia-0.2.15/src/crashreporter/CrashReportDialog.cpp --- vidalia-0.2.10/src/crashreporter/CrashReportDialog.cpp 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/CrashReportDialog.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,22 +3,19 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 CrashReportDialog.cpp -** \version $Id$ ** \brief Dialog that asks the user whether they would like to ** submit the crash report, along with optional additional details ** about what they were doing at the time of the crash. */ #include "CrashReportDialog.h" -#include "CrashReportUploader.h" -#include "UploadProgressDialog.h" #include "stringutil.h" @@ -49,57 +46,17 @@ } void -CrashReportDialog::setMinidump(const QString &id, const QByteArray &minidump) +CrashReportDialog::setMinidumpFiles(const QString &minidump, const QString &annotations) { - _minidump = minidump; - _minidumpId = id; -} + _minidumpPath = minidump; + _annotationsPath = annotations; -void -CrashReportDialog::submitCrashReport() -{ - CrashReportUploader *uploader = new CrashReportUploader(); - UploadProgressDialog *progressDialog = new UploadProgressDialog(this); - QMap 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); - - /* 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"); @@ -116,14 +73,3 @@ 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 -Nru vidalia-0.2.10/src/crashreporter/CrashReportDialog.h vidalia-0.2.15/src/crashreporter/CrashReportDialog.h --- vidalia-0.2.10/src/crashreporter/CrashReportDialog.h 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/CrashReportDialog.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 CrashReportDialog.h -** \version $Id$ ** \brief Dialog that asks the user whether they would like to ** submit the crash report, along with optional additional details ** about what they were doing at the time of the crash. @@ -41,15 +40,7 @@ /** Sets the minidump 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 @@ -61,24 +52,14 @@ */ 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 -Nru vidalia-0.2.10/src/crashreporter/CrashReportDialog.ui vidalia-0.2.15/src/crashreporter/CrashReportDialog.ui --- vidalia-0.2.10/src/crashreporter/CrashReportDialog.ui 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/CrashReportDialog.ui 2011-10-07 19:16:56.000000000 +0000 @@ -6,8 +6,8 @@ 0 0 - 434 - 310 + 492 + 257 @@ -18,7 +18,7 @@ :/images/32x32/tools-report-bug.png:/images/32x32/tools-report-bug.png - + @@ -28,89 +28,112 @@ - - - - - 9 - 75 - true - + + + + Qt::Horizontal + + + + - Vidalia encountered an error and needed to close + Please fill a ticket in: - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft true - - + + - 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. + <a href="https://trac.torproject.org/projects/tor/newticket">https://trac.torproject.org/projects/tor/newticket</a> - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + true - + + + + + true + + false + + + false + - - + + Qt::Horizontal + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + - - + + + + + 9 + 75 + true + + - Please also describe what you were doing before the application crashed (optional): + Vidalia encountered an error and needed to close - Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop true - - - - true - - - false - - - false - - - - - + + - Send my crash report to the Vidalia developers + 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. - + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + true - - + + Qt::Horizontal - - QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + 40 + 0 + + + + + + + + with a description of what you were doing before the application crashed, along with the following files corresponding to the crash report: + + + true diff -Nru vidalia-0.2.10/src/crashreporter/CrashReportUploader.cpp vidalia-0.2.15/src/crashreporter/CrashReportUploader.cpp --- vidalia-0.2.10/src/crashreporter/CrashReportUploader.cpp 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/CrashReportUploader.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,153 +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 -** \version $Id$ -** \brief Uploads a minidump file and any extra information to a crash -** reporting server. -*/ - -#include "CrashReportUploader.h" - -#include -#include -#include -#include -#include -#include -#include -#include - - -CrashReportUploader::CrashReportUploader(QObject *parent) - : QObject(parent), - _requestId(-1) -{ - /* Clear the default CA certificate store and add the only one we want */ - QSslSocket::setDefaultCaCertificates(QList()); - 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 ¶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 -Nru vidalia-0.2.10/src/crashreporter/CrashReportUploader.h vidalia-0.2.15/src/crashreporter/CrashReportUploader.h --- vidalia-0.2.10/src/crashreporter/CrashReportUploader.h 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/CrashReportUploader.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,110 +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 -** \version $Id$ -** \brief Uploads a minidump file and any extra information to a crash -** reporting server. -*/ - -#ifndef _CRASHREPORTUPLOADER_H -#define _CRASHREPORTUPLOADER_H - -#include -#include -#include - -class QUrl; -class QString; -class QByteArray; - - -class CrashReportUploader : public QObject -{ - Q_OBJECT - -public: - /** Default constructor. - */ - CrashReportUploader(QObject *parent = 0); - - /** Starts uploading minidump to serverUrl and returns - * immediately. minidumpId is the minidump GUID generated by - * the exception handler and used for the minidump's filename. The - * optional parameters 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 ¶meters); - -public slots: - /** Cancels a pending minidump upload. - */ - void cancel(); - -signals: - /** Emitted when the underlying QHttp object posts data to the server. - * done indicates how many bytes out of total - * have been sent so far. - */ - void uploadProgress(int done, int total); - - /** Emitted when the status of the POST request changes. status - * 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 - * error 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. error is set to false if the upload was - * successful, or true if the upload failed. If id 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 -Nru vidalia-0.2.10/src/crashreporter/main.cpp vidalia-0.2.15/src/crashreporter/main.cpp --- vidalia-0.2.10/src/crashreporter/main.cpp 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/main.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 main.cpp -** \version $Id$ ** \brief Application that is run after Vidalia crashes and asks the ** user if they would like to submit the crash report. */ @@ -23,34 +22,6 @@ #include #include - -/** Open the minidump file given by fileName 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 errorMessage 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 fileName 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 @@ -95,7 +66,6 @@ QFileInfo minidumpFile, extraInfoFile; QString minidumpFilePath, extraInfoFilePath, errorMessage; QHash annotations; - QByteArray minidump; if (argc < 2) { errorMessage = "No minidump file specified."; @@ -132,14 +102,6 @@ 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()) { @@ -150,8 +112,8 @@ } /* Display the crash reporting dialog */ - crashDialog.setMinidump(minidumpFile.baseName(), minidump); crashDialog.setCrashAnnotations(annotations); + crashDialog.setMinidumpFiles(minidumpFilePath, extraInfoFilePath); crashDialog.show(); return app.exec(); @@ -172,8 +134,8 @@ "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:

" - "" - "https://trac.vidalia-project.net/wiki/ReportingBugs

" + "" + "https://trac.torproject.org/projects/tor/newticket

" "

Click \"Show Details\" below for information about the problem " "encountered."); diff -Nru vidalia-0.2.10/src/crashreporter/res/CrashReporter.rc.in vidalia-0.2.15/src/crashreporter/res/CrashReporter.rc.in --- vidalia-0.2.10/src/crashreporter/res/CrashReporter.rc.in 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/res/CrashReporter.rc.in 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/crashreporter/UploadProgressDialog.cpp vidalia-0.2.15/src/crashreporter/UploadProgressDialog.cpp --- vidalia-0.2.10/src/crashreporter/UploadProgressDialog.cpp 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/UploadProgressDialog.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +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 -** \version $Id$ -** \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 -Nru vidalia-0.2.10/src/crashreporter/UploadProgressDialog.h vidalia-0.2.15/src/crashreporter/UploadProgressDialog.h --- vidalia-0.2.10/src/crashreporter/UploadProgressDialog.h 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/UploadProgressDialog.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +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 -** \version $Id$ -** \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 status. - */ - void setStatus(const QString &status); - - /** Updates the minidump upload progress bar to value out of - * maximum steps. If value and maximum are both 0, - * then a "busy" progress bar is displayed. - */ - void setUploadProgress(int value, int maximum); - - /** Called when the minidump upload fails. The string error - * 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 -Nru vidalia-0.2.10/src/crashreporter/UploadProgressDialog.ui vidalia-0.2.15/src/crashreporter/UploadProgressDialog.ui --- vidalia-0.2.10/src/crashreporter/UploadProgressDialog.ui 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/crashreporter/UploadProgressDialog.ui 1970-01-01 00:00:00.000000000 +0000 @@ -1,106 +0,0 @@ - - - UploadProgressDialog - - - - 0 - 0 - 366 - 104 - - - - Uploading Crash Report - - - - :/images/32x32/tools-report-bug.png:/images/32x32/tools-report-bug.png - - - true - - - - - - - - - :/images/48x48/tools-report-bug.png - - - - - - - - - - true - - - - - - - 0 - - - false - - - - - - - - - - Qt::Horizontal - - - QDialogButtonBox::Cancel - - - - - - - - - - - buttonBox - accepted() - UploadProgressDialog - accept() - - - 182 - 81 - - - 182 - 51 - - - - - buttonBox - rejected() - UploadProgressDialog - reject() - - - 182 - 81 - - - 182 - 51 - - - - - diff -Nru vidalia-0.2.10/src/miniupnpc/CMakeLists.txt vidalia-0.2.15/src/miniupnpc/CMakeLists.txt --- vidalia-0.2.10/src/miniupnpc/CMakeLists.txt 2010-06-08 20:17:51.000000000 +0000 +++ vidalia-0.2.15/src/miniupnpc/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 4310 2010-06-08 20:17:51Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/src/miniupnpc/connecthostport.c vidalia-0.2.15/src/miniupnpc/connecthostport.c --- vidalia-0.2.10/src/miniupnpc/connecthostport.c 2010-04-09 23:17:13.000000000 +0000 +++ vidalia-0.2.15/src/miniupnpc/connecthostport.c 2011-10-07 19:16:56.000000000 +0000 @@ -14,6 +14,10 @@ #ifdef WIN32 #include #include +#ifdef WIN2K +# define __inline static inline +# include +#endif #include #define snprintf _snprintf #define herror diff -Nru vidalia-0.2.10/src/miniupnpc/miniupnpc.c vidalia-0.2.15/src/miniupnpc/miniupnpc.c --- vidalia-0.2.10/src/miniupnpc/miniupnpc.c 2010-06-08 20:17:51.000000000 +0000 +++ vidalia-0.2.15/src/miniupnpc/miniupnpc.c 2011-10-07 19:16:56.000000000 +0000 @@ -27,6 +27,10 @@ /* Win32 Specific includes and defines */ #include #include +#ifdef WIN2K +# define __inline static inline +# include +#endif #include /*#include */ #define snprintf _snprintf diff -Nru vidalia-0.2.10/src/miniupnpc/miniwget.c vidalia-0.2.15/src/miniupnpc/miniwget.c --- vidalia-0.2.10/src/miniupnpc/miniwget.c 2010-04-19 03:26:28.000000000 +0000 +++ vidalia-0.2.15/src/miniupnpc/miniwget.c 2011-10-07 19:16:56.000000000 +0000 @@ -12,6 +12,10 @@ #ifdef WIN32 #include #include +#ifdef WIN2K +# define __inline static inline +# include +#endif #include #define MAXHOSTNAMELEN 64 #define MIN(x,y) (((x)<(y))?(x):(y)) diff -Nru vidalia-0.2.10/src/tools/CMakeLists.txt vidalia-0.2.15/src/tools/CMakeLists.txt --- vidalia-0.2.10/src/tools/CMakeLists.txt 2009-03-28 22:27:44.000000000 +0000 +++ vidalia-0.2.15/src/tools/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 3645 2009-03-28 22:27:44Z coderman $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/src/tools/nostdset/nostdset.sh vidalia-0.2.15/src/tools/nostdset/nostdset.sh --- vidalia-0.2.10/src/tools/nostdset/nostdset.sh 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/tools/nostdset/nostdset.sh 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,13 @@ +#!/bin/bash +## $Id$ +## +## This file is part of Vidalia, and is subject to the license terms in the +## LICENSE file, found in the top level directory of this distribution. If +## you did not receive the LICENSE file with this file, you may obtain it +## from the Vidalia source package distributed by the Vidalia Project at +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. +## + +find -name *.ui | xargs sed "s/sizeHint\" stdset=\"0\" /sizeHint\"/" -i diff -Nru vidalia-0.2.10/src/tools/nsh2po/CMakeLists.txt vidalia-0.2.15/src/tools/nsh2po/CMakeLists.txt --- vidalia-0.2.10/src/tools/nsh2po/CMakeLists.txt 2009-06-11 17:57:53.000000000 +0000 +++ vidalia-0.2.15/src/tools/nsh2po/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 3840 2009-06-11 17:57:53Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/src/tools/nsh2po/nsh2po_config.h.in vidalia-0.2.15/src/tools/nsh2po/nsh2po_config.h.in --- vidalia-0.2.10/src/tools/nsh2po/nsh2po_config.h.in 2008-07-17 02:07:03.000000000 +0000 +++ vidalia-0.2.15/src/tools/nsh2po/nsh2po_config.h.in 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/tools/nsh2po/nsh2po.cpp vidalia-0.2.15/src/tools/nsh2po/nsh2po.cpp --- vidalia-0.2.10/src/tools/nsh2po/nsh2po.cpp 2008-07-17 02:16:28.000000000 +0000 +++ vidalia-0.2.15/src/tools/nsh2po/nsh2po.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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 diff -Nru vidalia-0.2.10/src/tools/po2nsh/CMakeLists.txt vidalia-0.2.15/src/tools/po2nsh/CMakeLists.txt --- vidalia-0.2.10/src/tools/po2nsh/CMakeLists.txt 2009-06-17 18:11:27.000000000 +0000 +++ vidalia-0.2.15/src/tools/po2nsh/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 3870 2009-06-17 18:11:27Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/src/tools/po2nsh/po2nsh.cpp vidalia-0.2.15/src/tools/po2nsh/po2nsh.cpp --- vidalia-0.2.10/src/tools/po2nsh/po2nsh.cpp 2009-06-17 18:11:27.000000000 +0000 +++ vidalia-0.2.15/src/tools/po2nsh/po2nsh.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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 diff -Nru vidalia-0.2.10/src/tools/po2ts/CMakeLists.txt vidalia-0.2.15/src/tools/po2ts/CMakeLists.txt --- vidalia-0.2.10/src/tools/po2ts/CMakeLists.txt 2009-08-12 04:51:23.000000000 +0000 +++ vidalia-0.2.15/src/tools/po2ts/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 4030 2009-08-12 04:51:23Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/src/tools/po2ts/po2ts.cpp vidalia-0.2.15/src/tools/po2ts/po2ts.cpp --- vidalia-0.2.10/src/tools/po2ts/po2ts.cpp 2009-04-11 00:56:44.000000000 +0000 +++ vidalia-0.2.15/src/tools/po2ts/po2ts.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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 diff -Nru vidalia-0.2.10/src/tools/po2wxl/CMakeLists.txt vidalia-0.2.15/src/tools/po2wxl/CMakeLists.txt --- vidalia-0.2.10/src/tools/po2wxl/CMakeLists.txt 2009-06-11 17:57:53.000000000 +0000 +++ vidalia-0.2.15/src/tools/po2wxl/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 3840 2009-06-11 17:57:53Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/src/tools/po2wxl/po2wxl.cpp vidalia-0.2.15/src/tools/po2wxl/po2wxl.cpp --- vidalia-0.2.10/src/tools/po2wxl/po2wxl.cpp 2009-04-08 05:04:15.000000000 +0000 +++ vidalia-0.2.15/src/tools/po2wxl/po2wxl.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ /* -** $Id: po2wxl.cpp 3679 2009-04-08 05:04:15Z edmanm $ +** $Id$ ** ** This file is part of Vidalia, and is subject to the license terms in the ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 diff -Nru vidalia-0.2.10/src/tools/ts2po/CMakeLists.txt vidalia-0.2.15/src/tools/ts2po/CMakeLists.txt --- vidalia-0.2.10/src/tools/ts2po/CMakeLists.txt 2009-08-12 04:51:23.000000000 +0000 +++ vidalia-0.2.15/src/tools/ts2po/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 4030 2009-08-12 04:51:23Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. 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 -Nru vidalia-0.2.10/src/tools/ts2po/ts2po_config.h.in vidalia-0.2.15/src/tools/ts2po/ts2po_config.h.in --- vidalia-0.2.10/src/tools/ts2po/ts2po_config.h.in 2008-07-01 04:36:25.000000000 +0000 +++ vidalia-0.2.15/src/tools/ts2po/ts2po_config.h.in 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/tools/ts2po/ts2po.cpp vidalia-0.2.15/src/tools/ts2po/ts2po.cpp --- vidalia-0.2.10/src/tools/ts2po/ts2po.cpp 2009-04-11 00:56:44.000000000 +0000 +++ vidalia-0.2.15/src/tools/ts2po/ts2po.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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 diff -Nru vidalia-0.2.10/src/tools/wixtool/CMakeLists.txt vidalia-0.2.15/src/tools/wixtool/CMakeLists.txt --- vidalia-0.2.10/src/tools/wixtool/CMakeLists.txt 2009-06-11 17:57:53.000000000 +0000 +++ vidalia-0.2.15/src/tools/wixtool/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,5 +1,5 @@ ## -## $Id: CMakeLists.txt 3840 2009-06-11 17:57:53Z edmanm $ +## $Id$ ## ## Copyright (C) 2009 The Tor Project, Inc. ## See LICENSE file for terms; may be used according diff -Nru vidalia-0.2.10/src/tools/wixtool/wixtool.cpp vidalia-0.2.15/src/tools/wixtool/wixtool.cpp --- vidalia-0.2.10/src/tools/wixtool/wixtool.cpp 2009-06-01 07:00:35.000000000 +0000 +++ vidalia-0.2.15/src/tools/wixtool/wixtool.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -1,5 +1,5 @@ /* -** $Id: wixtool.cpp 3810 2009-06-01 07:00:35Z edmanm $ +** $Id$ ** ** Copyright (C) 2009 The Tor Project, Inc. ** See LICENSE file for terms; may be used according diff -Nru vidalia-0.2.10/src/torcontrol/AddressMap.cpp vidalia-0.2.15/src/torcontrol/AddressMap.cpp --- vidalia-0.2.10/src/torcontrol/AddressMap.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/AddressMap.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AddressMap.cpp -** \version $Id: bandwidthevent.h 1563 2006-12-26 06:06:04Z edmanm $ ** \brief Stores a list of address mappings and their expiration times */ diff -Nru vidalia-0.2.10/src/torcontrol/AddressMap.h vidalia-0.2.15/src/torcontrol/AddressMap.h --- vidalia-0.2.10/src/torcontrol/AddressMap.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/AddressMap.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AddressMap.h -** \version $Id: bandwidthevent.h 1563 2006-12-26 06:06:04Z edmanm $ ** \brief Stores a list of address mappings and their expiration times */ diff -Nru vidalia-0.2.10/src/torcontrol/BootstrapStatus.cpp vidalia-0.2.15/src/torcontrol/BootstrapStatus.cpp --- vidalia-0.2.10/src/torcontrol/BootstrapStatus.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/BootstrapStatus.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BootstrapStatus.cpp -** \version $Id: BootstrapStatus.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Describes the Tor software's current bootstrapping status */ diff -Nru vidalia-0.2.10/src/torcontrol/BootstrapStatus.h vidalia-0.2.15/src/torcontrol/BootstrapStatus.h --- vidalia-0.2.10/src/torcontrol/BootstrapStatus.h 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/BootstrapStatus.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BootstrapStatus.h -** \version $Id: BootstrapStatus.h 4054 2009-08-17 02:25:08Z edmanm $ ** \brief Describes the Tor software's current bootstrap status */ diff -Nru vidalia-0.2.10/src/torcontrol/Circuit.cpp vidalia-0.2.15/src/torcontrol/Circuit.cpp --- vidalia-0.2.10/src/torcontrol/Circuit.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/Circuit.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Circuit.cpp -** \version $Id: Circuit.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Object representing a Tor circuit */ diff -Nru vidalia-0.2.10/src/torcontrol/Circuit.h vidalia-0.2.15/src/torcontrol/Circuit.h --- vidalia-0.2.10/src/torcontrol/Circuit.h 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/Circuit.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Circuit.h -** \version $Id: Circuit.h 4054 2009-08-17 02:25:08Z edmanm $ ** \brief Object representing a Tor circuit */ diff -Nru vidalia-0.2.10/src/torcontrol/CMakeLists.txt vidalia-0.2.15/src/torcontrol/CMakeLists.txt --- vidalia-0.2.10/src/torcontrol/CMakeLists.txt 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 4054 2009-08-17 02:25:08Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. ## @@ -19,6 +19,7 @@ ControlConnection.cpp ControlReply.cpp ControlSocket.cpp + ControlMethod.cpp ProtocolInfo.cpp ReplyLine.cpp RouterDescriptor.cpp diff -Nru vidalia-0.2.10/src/torcontrol/ControlCommand.cpp vidalia-0.2.15/src/torcontrol/ControlCommand.cpp --- vidalia-0.2.10/src/torcontrol/ControlCommand.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlCommand.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlCommand.cpp -** \version $Id: ControlCommand.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief A command sent to Tor's control interface */ diff -Nru vidalia-0.2.10/src/torcontrol/ControlCommand.h vidalia-0.2.15/src/torcontrol/ControlCommand.h --- vidalia-0.2.10/src/torcontrol/ControlCommand.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlCommand.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlCommand.h -** \version $Id: ControlCommand.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief A command sent to Tor's control interface */ diff -Nru vidalia-0.2.10/src/torcontrol/ControlConnection.cpp vidalia-0.2.15/src/torcontrol/ControlConnection.cpp --- vidalia-0.2.10/src/torcontrol/ControlConnection.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlConnection.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlConnection.cpp -** \version $Id: ControlConnection.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief A connection to Tor's control interface, responsible for sending and ** receiving commands and events */ @@ -29,12 +28,13 @@ /** Default constructor. */ -ControlConnection::ControlConnection(TorEvents *events) +ControlConnection::ControlConnection(ControlMethod::Method method, TorEvents *events) { _events = events; _status = Unset; _sock = 0; _sendWaiter = new SendCommandEvent::SendWaiter(); + _method = method; } /** Destructor. */ @@ -69,6 +69,24 @@ QThread::start(); } +/** Connect to the specified Tor control socket interface. */ +void +ControlConnection::connect(const QString &addr) +{ + if (isRunning()) { + tc::error("Bug: Tried to call ControlConnection::connect() when the " + "control thread is already running."); + return; + } + + _path = addr; + _connectAttempt = 0; + setStatus(Connecting); + + /* Kick off the thread in which the control socket will live */ + QThread::start(); +} + /** Attempt to establish a connection to Tor's control interface. We will try * a maximum of MAX_CONNECT_ATTEMPTS, waiting CONNECT_RETRY_DELAY between each * attempt, to give slow Tors a chance to finish binding their control port. */ @@ -80,7 +98,16 @@ .arg(MAX_CONNECT_ATTEMPTS); _connMutex.lock(); - _sock->connectToHost(_addr, _port); + switch(_method) { + case ControlMethod::Socket: + _sock->connectToServer(_path); + break; + + default: + case ControlMethod::Port: + _sock->connectToHost(_addr, _port); + break; + } _connMutex.unlock(); } @@ -90,7 +117,16 @@ { setStatus(Disconnecting); _connMutex.lock(); - _sock->disconnectFromHost(); + switch(_method) { + case ControlMethod::Socket: + _sock->disconnectFromServer(); + break; + + default: + case ControlMethod::Port: + _sock->disconnectFromHost(); + break; + } _connMutex.unlock(); } @@ -120,7 +156,7 @@ if (status() == Connecting) { /* If we got a 'connection refused' and we haven't exceeded * MAX_CONNECT_ATTEMPTS, then try to reconnect since Tor is probably - * running, but it doesn't have a ControlPort open yet. */ + * running, but it doesn't have a ControlSocket open yet. */ if (error == QAbstractSocket::ConnectionRefusedError && _connectAttempt < MAX_CONNECT_ATTEMPTS) { tc::debug("Control connection refused. Retrying in %1ms.") @@ -288,7 +324,8 @@ { /* Create a new control socket */ _connMutex.lock(); - _sock = new ControlSocket(); + _sock = new ControlSocket(_method); + _connectTimer = new QTimer(); _connectTimer->setSingleShot(true); diff -Nru vidalia-0.2.10/src/torcontrol/ControlConnection.h vidalia-0.2.15/src/torcontrol/ControlConnection.h --- vidalia-0.2.10/src/torcontrol/ControlConnection.h 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlConnection.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlConnection.h -** \version $Id: ControlConnection.h 4054 2009-08-17 02:25:08Z edmanm $ ** \brief A connection to Tor's control interface, responsible for sending and ** receiving commands and events **/ @@ -45,12 +44,14 @@ }; /** Default constructor. */ - ControlConnection(TorEvents *events = 0); + ControlConnection(ControlMethod::Method method, TorEvents *events = 0); /** Destructor. */ ~ControlConnection(); /** Connect to the specified Tor control interface. */ void connect(const QHostAddress &addr, quint16 port); + /** Connect to the specified Tor control socket interface. */ + void connect(const QString &addr); /** Cancels a pending control connection to Tor. */ void cancelConnect(); /** Disconnect from Tor's control interface. */ @@ -93,6 +94,8 @@ void run(); ControlSocket* _sock; /**< Socket used to communicate with Tor. */ + ControlMethod::Method _method; /** Method used to communicate with Tor. */ + QString _path; /**< Path to the socket */ TorEvents* _events; /**< Dispatches asynchronous events from Tor. */ Status _status; /**< Status of the control connection. */ QHostAddress _addr; /**< Address of Tor's control interface. */ diff -Nru vidalia-0.2.10/src/torcontrol/ControlMethod.cpp vidalia-0.2.15/src/torcontrol/ControlMethod.cpp --- vidalia-0.2.10/src/torcontrol/ControlMethod.cpp 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlMethod.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,42 @@ +/* +** This file is part of Vidalia, and is subject to the license terms in the +** LICENSE file, found in the top level directory of this distribution. If you +** did not receive the LICENSE file with this file, you may obtain it from the +** Vidalia source package distributed by the Vidalia Project at +** http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +** including this file, may be copied, modified, propagated, or distributed +** except according to the terms described in the LICENSE file. +*/ + +/* +** \file ControlMethod.cpp +** \brief Class for specifying which method is used to communicate to Tor +*/ + +#include "ControlMethod.h" + +QString +ControlMethod::toString(ControlMethod::Method method) +{ + QString str = ""; + switch(method) { + case ControlMethod::Port: + str = "ControlPort"; + break; + + case ControlMethod::Socket: + str = "ControlSocket"; + break; + } + + return str; +} + +ControlMethod::Method +ControlMethod::fromString(QString method) +{ + if(method == QString("ControlPort")) + return ControlMethod::Port; + else if(method == QString("ControlSocket")) + return ControlMethod::Socket; +} diff -Nru vidalia-0.2.10/src/torcontrol/ControlMethod.h vidalia-0.2.15/src/torcontrol/ControlMethod.h --- vidalia-0.2.10/src/torcontrol/ControlMethod.h 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlMethod.h 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,29 @@ +/* +** This file is part of Vidalia, and is subject to the license terms in the +** LICENSE file, found in the top level directory of this distribution. If +** you did not receive the LICENSE file with this file, you may obtain it +** from the Vidalia source package distributed by the Vidalia Project at +** http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +** including this file, may be copied, modified, propagated, or distributed +** except according to the terms described in the LICENSE file. +*/ + +/* +** \file ControlMethod.h +** \brief Class for specifying which method is used to communicate to Tor +*/ + +#ifndef _CONTROLMETHOD_H +#define _CONTROLMETHOD_H + +#include + +class ControlMethod +{ + public: + enum Method { Port, Socket }; + static QString toString(ControlMethod::Method method); + static Method fromString(QString method); +}; + +#endif diff -Nru vidalia-0.2.10/src/torcontrol/ControlReply.cpp vidalia-0.2.15/src/torcontrol/ControlReply.cpp --- vidalia-0.2.10/src/torcontrol/ControlReply.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlReply.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlReply.cpp -** \version $Id: ControlReply.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief A response from Tor's control interface */ diff -Nru vidalia-0.2.10/src/torcontrol/ControlReply.h vidalia-0.2.15/src/torcontrol/ControlReply.h --- vidalia-0.2.10/src/torcontrol/ControlReply.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlReply.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlReply.h -** \version $Id: ControlReply.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief A response from Tor's control interface */ diff -Nru vidalia-0.2.10/src/torcontrol/ControlSocket.cpp vidalia-0.2.15/src/torcontrol/ControlSocket.cpp --- vidalia-0.2.10/src/torcontrol/ControlSocket.cpp 2010-07-14 15:47:55.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlSocket.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlSocket.cpp -** \version $Id: ControlSocket.cpp 4352 2010-07-14 15:47:55Z edmanm $ ** \brief Socket used to connect to Tor's control interface */ @@ -26,8 +25,26 @@ /** Default constructor. */ -ControlSocket::ControlSocket() +ControlSocket::ControlSocket(ControlMethod::Method method) { + _tcpSocket = new QTcpSocket(); + _localSocket = new QLocalSocket(); + _method = method; + switch(_method) { + case ControlMethod::Port: + _socket = _tcpSocket; + break; + + case ControlMethod::Socket: + _socket = _localSocket; + break; + } + + QObject::connect(_socket, SIGNAL(readyRead()), this, SIGNAL(readyRead())); + QObject::connect(_socket, SIGNAL(disconnected()), this, SIGNAL(disconnected())); + QObject::connect(_socket, SIGNAL(connected()), this, SIGNAL(connected())); + QObject::connect(_socket, SIGNAL(error(QAbstractSocket::SocketError)), + this, SIGNAL(error(QAbstractSocket::SocketError))); } /** Returns true if the control socket is connected and ready to send or @@ -35,7 +52,85 @@ bool ControlSocket::isConnected() { - return (isValid() && state() == QAbstractSocket::ConnectedState); + switch(_method) { + case ControlMethod::Port: + return (_tcpSocket->isValid() && _tcpSocket->state() == QAbstractSocket::ConnectedState); + break; + + default: + case ControlMethod::Socket: + return (_localSocket->isValid() && _localSocket->state() == QLocalSocket::ConnectedState); + break; + } +} + +/** Connects to address:port */ +void +ControlSocket::connectToHost(const QHostAddress &address, quint16 port) +{ + _tcpSocket->connectToHost(address, port); +} + +/** Disconnects from host */ +void +ControlSocket::disconnectFromHost() +{ + _tcpSocket->disconnectFromHost(); +} + +/** Connects to a unix socket file */ +void +ControlSocket::connectToServer(const QString &name) +{ + _localSocket->connectToServer(name); +} + +/** Disconnects from the socket */ +void +ControlSocket::disconnectFromServer() +{ + _localSocket->disconnectFromServer(); +} + +/** Interface to QTcpSocket::canReadLine */ +bool +ControlSocket::canReadLine() +{ + return _socket->canReadLine(); +} + +/** Returns the string description of error. */ +QString +ControlSocket::toString(const QAbstractSocket::SocketError error) +{ + QString str; + switch (error) { + case QAbstractSocket::ConnectionRefusedError: + str = "Connection refused by peer."; break; + case QAbstractSocket::RemoteHostClosedError: + str = "Remote host closed the connection."; break; + case QAbstractSocket::HostNotFoundError: + str = "Host address not found."; break; + case QAbstractSocket::SocketAccessError: + str = "Insufficient access privileges."; break; + case QAbstractSocket::SocketResourceError: + str = "Insufficient resources."; break; + case QAbstractSocket::SocketTimeoutError: + str = "Socket operation timed out."; break; + case QAbstractSocket::DatagramTooLargeError: + str = "Datagram size exceeded the operating system limit."; break; + case QAbstractSocket::NetworkError: + str = "Network error occurred."; break; + case QAbstractSocket::AddressInUseError: + str = "Specified address already in use."; break; + case QAbstractSocket::SocketAddressNotAvailableError: + str = "Specified address does not belong to the host."; break; + case QAbstractSocket::UnsupportedSocketOperationError: + str = "The requested operation is not supported."; break; + default: + str = "An unidentified error occurred."; break; + } + return str; } /** Processes custom events sent to this object (e.g. SendCommandEvents) from @@ -75,52 +170,22 @@ tc::debug("Control Command: %1").arg(strCmd.trimmed()); /* Attempt to send the command to Tor */ - if (write(strCmd.toLocal8Bit()) != strCmd.length()) { + if (_socket->write(strCmd.toLocal8Bit()) != strCmd.length()) { return err(errmsg, tr("Error sending control command. [%1]") - .arg(errorString())); + .arg(_socket->errorString())); } - flush(); - return true; -} - -/** Reads line data, one chunk at a time, until a newline character is - * encountered. */ -bool -ControlSocket::readLineData(QString &line, QString *errmsg) -{ - char buffer[1024]; /* Read in 1024 byte chunks at a time */ - int bytesRecv = QAbstractSocket::readLine(buffer, 1024); - while (bytesRecv != -1) { - line.append(QString::fromLocal8Bit(buffer, bytesRecv)); - if (buffer[bytesRecv-1] == '\n') { + switch(_method) { + case ControlMethod::Port: + _tcpSocket->flush(); + break; + + case ControlMethod::Socket: + _localSocket->flush(); break; - } - bytesRecv = QAbstractSocket::readLine(buffer, 1024); - } - if (bytesRecv == -1) { - return err(errmsg, errorString()); } return true; } -/** Reads a line of data from the socket and returns true if successful or - * false if an error occurred while waiting for a line of data to become - * available. */ -bool -ControlSocket::readLine(QString &line, QString *errmsg) -{ - /* Make sure we have data to read before attempting anything. Note that this - * essentially makes our socket a blocking socket */ - while (!canReadLine()) { - if (!isConnected()) { - return err(errmsg, tr("Socket disconnected while attempting " - "to read a line of data.")); - } - waitForReadyRead(READ_TIMEOUT); - } - line.clear(); - return readLineData(line, errmsg); -} /** Read a complete reply from the control socket. Replies take the following * form, based on Tor's Control Protocol v1: @@ -182,37 +247,41 @@ return true; } -/** Returns the string description of error. */ -QString -ControlSocket::toString(const QAbstractSocket::SocketError error) +/** Reads line data, one chunk at a time, until a newline character is + * encountered. */ +bool +ControlSocket::readLineData(QString &line, QString *errmsg) { - QString str; - switch (error) { - case ConnectionRefusedError: - str = "Connection refused by peer."; break; - case RemoteHostClosedError: - str = "Remote host closed the connection."; break; - case HostNotFoundError: - str = "Host address not found."; break; - case SocketAccessError: - str = "Insufficient access privileges."; break; - case SocketResourceError: - str = "Insufficient resources."; break; - case SocketTimeoutError: - str = "Socket operation timed out."; break; - case DatagramTooLargeError: - str = "Datagram size exceeded the operating system limit."; break; - case NetworkError: - str = "Network error occurred."; break; - case AddressInUseError: - str = "Specified address already in use."; break; - case SocketAddressNotAvailableError: - str = "Specified address does not belong to the host."; break; - case UnsupportedSocketOperationError: - str = "The requested operation is not supported."; break; - default: - str = "An unidentified error occurred."; break; + char buffer[1024]; /* Read in 1024 byte chunks at a time */ + int bytesRecv = _socket->readLine(buffer, 1024); + while (bytesRecv != -1) { + line.append(QString::fromLocal8Bit(buffer, bytesRecv)); + if (buffer[bytesRecv-1] == '\n') { + break; + } + bytesRecv = _socket->readLine(buffer, 1024); } - return str; + if (bytesRecv == -1) { + return err(errmsg, _socket->errorString()); + } + return true; } +/** Reads a line of data from the socket and returns true if successful or + * false if an error occurred while waiting for a line of data to become + * available. */ +bool +ControlSocket::readLine(QString &line, QString *errmsg) +{ + /* Make sure we have data to read before attempting anything. Note that this + * essentially makes our socket a blocking socket */ + while (!_socket->canReadLine()) { + if (!isConnected()) { + return err(errmsg, tr("Socket disconnected while attempting " + "to read a line of data.")); + } + _socket->waitForReadyRead(READ_TIMEOUT); + } + line.clear(); + return readLineData(line, errmsg); +} diff -Nru vidalia-0.2.10/src/torcontrol/ControlSocket.h vidalia-0.2.15/src/torcontrol/ControlSocket.h --- vidalia-0.2.10/src/torcontrol/ControlSocket.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ControlSocket.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlSocket.h -** \version $Id: ControlSocket.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Socket used to connect to Tor's control interface */ @@ -19,17 +18,19 @@ #include "ControlCommand.h" #include "ControlReply.h" +#include "ControlMethod.h" +#include +#include #include - -class ControlSocket : public QTcpSocket +class ControlSocket : public QObject { Q_OBJECT public: /** Default constructor. */ - ControlSocket(); + ControlSocket(ControlMethod::Method method = ControlMethod::Port); /** Send a command to Tor */ bool sendCommand(ControlCommand cmd, QString *errmsg = 0); @@ -39,10 +40,29 @@ /** Returns true if the control socket is connected and ready to send or * receive. */ bool isConnected(); + /** Interface to each socket's canReadLine implementation */ + bool canReadLine(); + + void connectToHost(const QHostAddress &address, quint16 port); + /** Disconnects from host */ + void disconnectFromHost(); + /** Connects to a unix socket file */ + void connectToServer(const QString &name); + /** Disconnects from the socket */ + void disconnectFromServer(); + + ControlMethod::Method getMethod() { return _method; } /** Returns the string description of error. */ static QString toString(const QAbstractSocket::SocketError error); - + +signals: + /** Interface to the signals from each socket used */ + void readyRead(); + void disconnected(); + void connected(); + void error(QAbstractSocket::SocketError); + protected: /** Processes custom events sent to this object (e.g. SendCommandEvents) * from other threads. */ @@ -51,6 +71,12 @@ bool readLineData(QString &line, QString *errmsg = 0); /** Reads a line of data from the socket (blocking) */ bool readLine(QString &line, QString *errmsg = 0); + +private: + QTcpSocket *_tcpSocket; /**< Socket used in the connection */ + QLocalSocket *_localSocket; /**< Socket used in the connection */ + QIODevice *_socket; /**< Abstract pointer to transparently use both sockets */ + ControlMethod::Method _method; }; #endif diff -Nru vidalia-0.2.10/src/torcontrol/LogEvent.cpp vidalia-0.2.15/src/torcontrol/LogEvent.cpp --- vidalia-0.2.10/src/torcontrol/LogEvent.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/LogEvent.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 LogEvent.cpp -** \version $Id: LogEvent.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Event dispatched containing a log message from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/LogEvent.h vidalia-0.2.15/src/torcontrol/LogEvent.h --- vidalia-0.2.10/src/torcontrol/LogEvent.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/LogEvent.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 LogEvent.h -** \version $Id: LogEvent.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Event dispatched containing a log message from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/ProtocolInfo.cpp vidalia-0.2.15/src/torcontrol/ProtocolInfo.cpp --- vidalia-0.2.10/src/torcontrol/ProtocolInfo.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ProtocolInfo.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ProtocolInfo.cpp -** \version $Id: ProtocolInfo.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Container for information in a PROTOCOLINFO reply from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/ProtocolInfo.h vidalia-0.2.15/src/torcontrol/ProtocolInfo.h --- vidalia-0.2.10/src/torcontrol/ProtocolInfo.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ProtocolInfo.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ProtocolInfo.h -** \version $Id: ProtocolInfo.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Container for information in a PROTOCOLINFO reply from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/ReplyLine.cpp vidalia-0.2.15/src/torcontrol/ReplyLine.cpp --- vidalia-0.2.10/src/torcontrol/ReplyLine.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ReplyLine.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ReplyLine.cpp -** \version $Id: ReplyLine.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Reply from a previous control command sent to Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/ReplyLine.h vidalia-0.2.15/src/torcontrol/ReplyLine.h --- vidalia-0.2.10/src/torcontrol/ReplyLine.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/ReplyLine.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ReplyLine.h -** \version $Id: ReplyLine.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Reply from a previous control command sent to Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/RouterDescriptor.cpp vidalia-0.2.15/src/torcontrol/RouterDescriptor.cpp --- vidalia-0.2.10/src/torcontrol/RouterDescriptor.cpp 2009-10-14 21:52:34.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/RouterDescriptor.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 RouterDescriptor.cpp -** \version $Id: RouterDescriptor.cpp 4144 2009-10-14 21:52:34Z edmanm $ ** \brief Parses a blob of router descriptor text from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/RouterDescriptor.h vidalia-0.2.15/src/torcontrol/RouterDescriptor.h --- vidalia-0.2.10/src/torcontrol/RouterDescriptor.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/RouterDescriptor.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 RouterDescriptor.h -** \version $Id: RouterDescriptor.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Parses a blob of router descriptor text from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/RouterStatus.cpp vidalia-0.2.15/src/torcontrol/RouterStatus.cpp --- vidalia-0.2.10/src/torcontrol/RouterStatus.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/RouterStatus.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 RouterStatus.cpp -** \version $Id: RouterStatus.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Parses a blob of router status text from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/RouterStatus.h vidalia-0.2.15/src/torcontrol/RouterStatus.h --- vidalia-0.2.10/src/torcontrol/RouterStatus.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/RouterStatus.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 RouterStatus.h -** \version $Id: RouterStatus.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Parses a blob of router status text from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/SendCommandEvent.cpp vidalia-0.2.15/src/torcontrol/SendCommandEvent.cpp --- vidalia-0.2.10/src/torcontrol/SendCommandEvent.cpp 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/SendCommandEvent.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 SendEommandEvent.cpp -** \version $Id: SendCommandEvent.cpp 4054 2009-08-17 02:25:08Z edmanm $ ** \brief An event posted to a socket living in another thread, indicating ** that it should send the given control command. */ diff -Nru vidalia-0.2.10/src/torcontrol/SendCommandEvent.h vidalia-0.2.15/src/torcontrol/SendCommandEvent.h --- vidalia-0.2.10/src/torcontrol/SendCommandEvent.h 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/SendCommandEvent.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 SendCommandEvent.h -** \version $Id: SendCommandEvent.h 4054 2009-08-17 02:25:08Z edmanm $ ** \brief An event posted to a socket living in another thread, indicating ** that it should send the given control command. */ diff -Nru vidalia-0.2.10/src/torcontrol/Stream.cpp vidalia-0.2.15/src/torcontrol/Stream.cpp --- vidalia-0.2.10/src/torcontrol/Stream.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/Stream.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Stream.cpp -** \version $Id: Stream.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Object representing a Tor stream */ diff -Nru vidalia-0.2.10/src/torcontrol/Stream.h vidalia-0.2.15/src/torcontrol/Stream.h --- vidalia-0.2.10/src/torcontrol/Stream.h 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/Stream.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Stream.h -** \version $Id: Stream.h 4054 2009-08-17 02:25:08Z edmanm $ ** \brief Object representing a Tor stream */ diff -Nru vidalia-0.2.10/src/torcontrol/tcglobal.cpp vidalia-0.2.15/src/torcontrol/tcglobal.cpp --- vidalia-0.2.10/src/torcontrol/tcglobal.cpp 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/tcglobal.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 tcglobal.cpp -** \version $Id: tcglobal.cpp 4054 2009-08-17 02:25:08Z edmanm $ ** \brief Provides common methods and constants used by the torcontrol library */ diff -Nru vidalia-0.2.10/src/torcontrol/tcglobal.h vidalia-0.2.15/src/torcontrol/tcglobal.h --- vidalia-0.2.10/src/torcontrol/tcglobal.h 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/tcglobal.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 tcglobal.h -** \version $Id: tcglobal.h 4054 2009-08-17 02:25:08Z edmanm $ ** \brief Provides common methods and constants used by the torcontrol library */ diff -Nru vidalia-0.2.10/src/torcontrol/TorControl.cpp vidalia-0.2.15/src/torcontrol/TorControl.cpp --- vidalia-0.2.10/src/torcontrol/TorControl.cpp 2010-08-05 20:05:41.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorControl.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorControl.cpp -** \version $Id: TorControl.cpp 4374 2010-08-05 20:05:41Z edmanm $ ** \brief Object for interacting with the Tor process and control interface */ @@ -26,7 +25,7 @@ /** Default constructor */ -TorControl::TorControl() +TorControl::TorControl(ControlMethod::Method method) { #define RELAY_SIGNAL(src, sig) \ QObject::connect((src), (sig), this, (sig)) @@ -69,7 +68,7 @@ /* Create an instance of a connection to Tor's control interface and give * it an object to use to handle asynchronous events. */ - _controlConn = new ControlConnection(_eventHandler); + _controlConn = new ControlConnection(method, _eventHandler); RELAY_SIGNAL(_controlConn, SIGNAL(connected())); RELAY_SIGNAL(_controlConn, SIGNAL(connectFailed(QString))); QObject::connect(_controlConn, SIGNAL(disconnected()), @@ -92,6 +91,7 @@ this, SLOT(onStopped(int, QProcess::ExitStatus))); #endif #undef RELAY_SIGNAL + _method = method; } /** Default destructor */ @@ -193,6 +193,14 @@ _controlConn->connect(address, port); } +/** Connect to Tor's control socket. The control socket to use is determined by + * Vidalia's configuration file. */ +void +TorControl::connect(const QString &path) +{ + _controlConn->connect(path); +} + /** Disconnect from Tor's control port */ void TorControl::disconnect() diff -Nru vidalia-0.2.10/src/torcontrol/TorControl.h vidalia-0.2.15/src/torcontrol/TorControl.h --- vidalia-0.2.10/src/torcontrol/TorControl.h 2010-08-05 20:05:41.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorControl.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorControl.h -** \version $Id: TorControl.h 4374 2010-08-05 20:05:41Z edmanm $ ** \brief Object for interacting with the Tor process and control interface */ @@ -28,6 +27,7 @@ #include "Circuit.h" #include "Stream.h" #include "AddressMap.h" +#include "ControlMethod.h" #if defined(Q_OS_WIN32) #include "TorService.h" @@ -52,7 +52,7 @@ public: /** Default constructor */ - TorControl(); + TorControl(ControlMethod::Method method = ControlMethod::Port); /** Default destructor */ ~TorControl(); @@ -70,6 +70,7 @@ /** Connect to Tor's control socket */ void connect(const QHostAddress &address, quint16 port); + void connect(const QString &path); /** Disconnect from Tor's control socket */ void disconnect(); /** Check if we're connected to Tor's control socket */ @@ -382,6 +383,7 @@ TorEvents::Events _events; /** The version of Tor we're currently talking to. */ QString _torVersion; + ControlMethod::Method _method; #if defined(Q_OS_WIN32) /** Manages the Tor service, if supported and enabled */ TorService* _torService; diff -Nru vidalia-0.2.10/src/torcontrol/TorEvents.cpp vidalia-0.2.15/src/torcontrol/TorEvents.cpp --- vidalia-0.2.10/src/torcontrol/TorEvents.cpp 2009-09-01 13:54:27.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorEvents.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorEvents.cpp -** \version $Id: TorEvents.cpp 4100 2009-09-01 13:54:27Z edmanm $ ** \brief Parses and dispatches events from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/TorEvents.h vidalia-0.2.15/src/torcontrol/TorEvents.h --- vidalia-0.2.10/src/torcontrol/TorEvents.h 2009-08-20 03:41:13.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorEvents.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorEvents.h -** \version $Id: TorEvents.h 4060 2009-08-20 03:41:13Z edmanm $ ** \brief Parses and dispatches events from Tor */ diff -Nru vidalia-0.2.10/src/torcontrol/TorProcess.cpp vidalia-0.2.15/src/torcontrol/TorProcess.cpp --- vidalia-0.2.10/src/torcontrol/TorProcess.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorProcess.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorProcess.cpp -** \version $Id: TorProcess.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Starts and stops a Tor process */ diff -Nru vidalia-0.2.10/src/torcontrol/TorProcess.h vidalia-0.2.15/src/torcontrol/TorProcess.h --- vidalia-0.2.10/src/torcontrol/TorProcess.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorProcess.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorProcess.h -** \version $Id: TorProcess.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Starts and stops a Tor process */ diff -Nru vidalia-0.2.10/src/torcontrol/TorService.cpp vidalia-0.2.15/src/torcontrol/TorService.cpp --- vidalia-0.2.10/src/torcontrol/TorService.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorService.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorService.cpp -** \version $Id: TorService.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Starts, stops, installs, and uninstalls a Tor service (Win32). */ diff -Nru vidalia-0.2.10/src/torcontrol/TorService.h vidalia-0.2.15/src/torcontrol/TorService.h --- vidalia-0.2.10/src/torcontrol/TorService.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorService.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 torservice.h -** \version $Id: TorService.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Starts, stops, installs, and uninstalls a Tor service (Win32). */ diff -Nru vidalia-0.2.10/src/torcontrol/TorSignal.cpp vidalia-0.2.15/src/torcontrol/TorSignal.cpp --- vidalia-0.2.10/src/torcontrol/TorSignal.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorSignal.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorSignal.cpp -** \version $Id: TorSignal.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Sends a signal to Tor's control interface */ diff -Nru vidalia-0.2.10/src/torcontrol/TorSignal.h vidalia-0.2.15/src/torcontrol/TorSignal.h --- vidalia-0.2.10/src/torcontrol/TorSignal.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/torcontrol/TorSignal.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorSignal.h -** \version $Id: TorSignal.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Sends a signal to Tor's control interface */ diff -Nru vidalia-0.2.10/src/vidalia/about/AboutDialog.cpp vidalia-0.2.15/src/vidalia/about/AboutDialog.cpp --- vidalia-0.2.10/src/vidalia/about/AboutDialog.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/about/AboutDialog.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AboutDialog.cpp -** \version $Id: AboutDialog.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays information about Vidalia, Tor, and Qt */ diff -Nru vidalia-0.2.10/src/vidalia/about/AboutDialog.h vidalia-0.2.15/src/vidalia/about/AboutDialog.h --- vidalia-0.2.10/src/vidalia/about/AboutDialog.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/about/AboutDialog.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AboutDialog.h -** \version $Id: AboutDialog.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays information about Vidalia, Tor, and Qt */ diff -Nru vidalia-0.2.10/src/vidalia/about/LicenseDialog.cpp vidalia-0.2.15/src/vidalia/about/LicenseDialog.cpp --- vidalia-0.2.10/src/vidalia/about/LicenseDialog.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/about/LicenseDialog.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 LicenseDialog.cpp -** \version $Id: LicenseDialog.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays HTML-formatted license information for Vidalia and related ** software. */ diff -Nru vidalia-0.2.10/src/vidalia/about/LicenseDialog.h vidalia-0.2.15/src/vidalia/about/LicenseDialog.h --- vidalia-0.2.10/src/vidalia/about/LicenseDialog.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/about/LicenseDialog.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 LicenseDialog.h -** \version $Id: LicenseDialog.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays HTML-formatted license information for Vidalia and related ** software. */ diff -Nru vidalia-0.2.10/src/vidalia/bwgraph/BandwidthGraph.cpp vidalia-0.2.15/src/vidalia/bwgraph/BandwidthGraph.cpp --- vidalia-0.2.10/src/vidalia/bwgraph/BandwidthGraph.cpp 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/bwgraph/BandwidthGraph.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BandwidthGraph.cpp -** \version $Id: BandwidthGraph.cpp 4054 2009-08-17 02:25:08Z edmanm $ ** \brief Displays a graph of Tor's bandwidth usage */ diff -Nru vidalia-0.2.10/src/vidalia/bwgraph/BandwidthGraph.h vidalia-0.2.15/src/vidalia/bwgraph/BandwidthGraph.h --- vidalia-0.2.10/src/vidalia/bwgraph/BandwidthGraph.h 2009-08-17 02:25:08.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/bwgraph/BandwidthGraph.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BandwidthGraph.h -** \version $Id: BandwidthGraph.h 4054 2009-08-17 02:25:08Z edmanm $ ** \brief Displays a graph of Tor's bandwidth usage */ diff -Nru vidalia-0.2.10/src/vidalia/bwgraph/BandwidthGraph.ui vidalia-0.2.15/src/vidalia/bwgraph/BandwidthGraph.ui --- vidalia-0.2.10/src/vidalia/bwgraph/BandwidthGraph.ui 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/bwgraph/BandwidthGraph.ui 2011-10-07 19:16:56.000000000 +0000 @@ -1,55 +1,45 @@ - + + BandwidthGraph - - + + 0 0 - 283 - 138 + 553 + 381 - + Qt::NoContextMenu - + Tor Bandwidth Usage - - :/images/32x32/utilities-system-monitor.png + + + :/images/32x32/utilities-system-monitor.png:/images/32x32/utilities-system-monitor.png - - - - 9 - - - 6 - - - - - 0 - - - 6 - + + + + - - + + Show Settings - + true - + Qt::Horizontal - + 21 20 @@ -58,428 +48,332 @@ - - + + Reset - - - + + + 120 80 - + 10 - + Qt::NoContextMenu - + QFrame::Box - + QFrame::Plain - - - - - 0 - 0 - 0 - 0 - - - - - 355 - 85 - + + + + Qt::Vertical - + - 355 - 82 + 0 + 100 - - Qt::NoContextMenu - - + + + + + QFrame::StyledPanel - + QFrame::Raised - - - 9 + + + QLayout::SetDefaultConstraint + + + 10 + + + 0 - - 6 + + 5 - - - - 3 + + + + Qt::NoContextMenu - - 6 + + - - - - Qt::NoContextMenu - - - - - - Qt::RightToLeft - - - Receive Rate - - - false - - - - - - - Qt::NoContextMenu - - - - - - Qt::RightToLeft - - - Send Rate - - - false - - - - - - - Qt::RightToLeft - - - Always on Top - - - - - - - Qt::Vertical - - - - 20 - 21 - - - - - + + Qt::RightToLeft + + + Receive Rate + + + false + + - - - - 0 + + + + Qt::NoContextMenu - - 1 + + + + Qt::RightToLeft + + + Send Rate + + + false + + + + + + + Qt::RightToLeft + + + Always on Top + + + + + + + Style + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + - - - 0 - - - 6 - - - - - Qt::Horizontal - - - - 20 - 20 - - - - - - - - Style - - - - - - - - - - - :/images/16x16/graph-line.png - - - - - - - - :/images/16x16/graph-area.png - - - - - - - - - - Qt::NoContextMenu - - - QFrame::NoFrame - - - QFrame::Plain - - - - 0 - - - 3 - - - - - Qt::NoContextMenu - - - Changes the transparency of the Bandwidth Graph - - - 30 - - - 100 - - - 100 - - - 100 - - - false - - - Qt::Horizontal - - - false - - - QSlider::NoTicks - - - 10 - - - - - - - Qt::Vertical - - - - 20 - 20 - - - - - - - - 0 - - - 0 - - - - - Qt::Horizontal - - - - 21 - - - - - - - - - 25 - 0 - - - - - 10 - - - - Qt::NoContextMenu - - - Qt::RightToLeft - - - 100 - - - - - - - - 10 - - - - Qt::NoContextMenu - - - % Opaque - - - - - - - Qt::Horizontal - - - - 21 - - - - - - - - + + + + + + :/images/16x16/graph-line.png:/images/16x16/graph-line.png + - - - Qt::Vertical - - - - 21 - 20 - - - + + + + + + :/images/16x16/graph-area.png:/images/16x16/graph-area.png + - + + + + + + Cancel + + + + + + + Save + + - - - + + + Qt::Horizontal - + - 21 + 40 20 - - - - 0 + + + + QFrame::NoFrame - - 1 + + QFrame::Plain - - - - Save - - - - - - - Cancel - - - - + + 0 + + + + 0 + + + -1 + + + + + + 0 + 0 + + + + Qt::NoContextMenu + + + Changes the transparency of the Bandwidth Graph + + + 30 + + + 100 + + + 100 + + + 100 + + + false + + + Qt::Horizontal + + + false + + + QSlider::NoTicks + + + 10 + + + + + + + + 25 + 0 + + + + + 10 + + + + Qt::NoContextMenu + + + Qt::RightToLeft + + + 100 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 10 + + + + Qt::NoContextMenu + + + % Opaque + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + - + GraphFrame QFrame

bwgraph/GraphFrame.h
+ 1 - - - btnToggleSettings btnReset - chkReceiveRate - chkSendRate - chkAlwaysOnTop - cmbGraphStyle - sldrOpacity - btnSaveSettings - btnCancelSettings + + + diff -Nru vidalia-0.2.10/src/vidalia/bwgraph/GraphFrame.cpp vidalia-0.2.15/src/vidalia/bwgraph/GraphFrame.cpp --- vidalia-0.2.10/src/vidalia/bwgraph/GraphFrame.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/bwgraph/GraphFrame.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,20 +3,19 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 GraphFrame.cpp -** \version $Id: GraphFrame.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Graphs a series of send and receive data points */ #include "GraphFrame.h" -#include +#include /** Default contructor */ @@ -32,7 +31,8 @@ /* Initialize graph values */ _recvData->prepend(0); _sendData->prepend(0); - _maxPoints = getNumPoints(); + _maxPoints = getNumPoints(); + _maxPosition = 0; _showRecv = true; _showSend = true; _maxValue = MIN_SCALE; @@ -52,9 +52,7 @@ int GraphFrame::getNumPoints() { - QDesktopWidget *desktop = QApplication::desktop(); - int width = desktop->width(); - return width; + return size().width() - _scaleWidth; } /** Adds new data points to the graph. */ @@ -67,6 +65,18 @@ _recvData->removeLast(); } + /* Update the displayed maximum */ + if (_maxPosition >= _maxPoints) { + _maxValue = MIN_SCALE; + foreach(qreal send, *_sendData) + if(send > _maxValue) + _maxValue = send; + foreach(qreal recv, *_recvData) + if(recv > _maxValue) + _maxValue = recv; + _maxPosition = 0; + } + /* Add the points to their respective lists */ _sendData->prepend(send); _recvData->prepend(recv); @@ -75,9 +85,23 @@ _totalSend += send; _totalRecv += recv; + bool maxUpdated = false; /* Check for a new maximum value */ - if (send > _maxValue) _maxValue = send; - if (recv > _maxValue) _maxValue = recv; + if (send > _maxValue) { + _maxValue = send; + maxUpdated = true; + } + + if (recv > _maxValue) { + _maxValue = recv; + maxUpdated = true; + } + + if (maxUpdated) { + _maxPosition = 0; + } else { + _maxPosition++; + } this->update(); } @@ -319,3 +343,9 @@ _painter->drawLine(_scaleWidth, top, _scaleWidth, bottom); } +void +GraphFrame::resizeEvent(QResizeEvent *ev) +{ + _maxPoints = ev->size().width() - _scaleWidth; + _maxPoints /= SCROLL_STEP; +} diff -Nru vidalia-0.2.10/src/vidalia/bwgraph/GraphFrame.h vidalia-0.2.15/src/vidalia/bwgraph/GraphFrame.h --- vidalia-0.2.10/src/vidalia/bwgraph/GraphFrame.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/bwgraph/GraphFrame.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 GraphFrame.h -** \version $Id: GraphFrame.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Graphs a series of send and receive data points */ @@ -90,6 +89,8 @@ /** Paints an integral using the supplied data. */ void paintIntegral(QVector points, QColor color, qreal alpha = 1.0); + void resizeEvent(QResizeEvent *ev); + /** Style with which the bandwidth data will be graphed. */ GraphStyle _graphStyle; /** A QPainter object that handles drawing the various graph elements. */ @@ -102,6 +103,8 @@ QRect _rec; /** The maximum data value plotted. */ qreal _maxValue; + /** The position of the local maximum in the displayed bandwidth */ + int _maxPosition; /** The maximum number of points to store. */ int _maxPoints; /** The total data sent/recv. */ diff -Nru vidalia-0.2.10/src/vidalia/CMakeLists.txt vidalia-0.2.15/src/vidalia/CMakeLists.txt --- vidalia-0.2.10/src/vidalia/CMakeLists.txt 2010-08-05 20:29:28.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/CMakeLists.txt 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ ## -## $Id: CMakeLists.txt 4379 2010-08-05 20:29:28Z edmanm $ +## $Id$ ## ## This file is part of Vidalia, and is subject to the license terms in the ## LICENSE file, found in the top level directory of this distribution. If ## you did not receive the LICENSE file with this file, you may obtain it ## from the Vidalia source package distributed by the Vidalia Project at -## http://www.vidalia-project.net/. No part of Vidalia, including this file, -## may be copied, modified, propagated, or distributed except according to -## the terms described in the LICENSE file. +## http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +## including this file, may be copied, modified, propagated, or distributed +## except according to the terms described in the LICENSE file. ## @@ -106,6 +106,7 @@ config/Service.cpp config/ServiceList.cpp config/ServicePage.cpp + config/TorrcDialog.cpp config/ServiceSettings.cpp config/TorSettings.cpp config/VidaliaSettings.cpp @@ -131,6 +132,7 @@ config/ServerPage.h config/ServerSettings.h config/ServicePage.h + config/TorrcDialog.h config/TorSettings.h config/VidaliaSettings.h config/VSettings.h @@ -276,6 +278,7 @@ config/NetworkPage.ui config/ServerPage.ui config/ServicePage.ui + config/TorrcDialog.ui help/browser/HelpBrowser.ui log/MessageLog.ui network/NetViewer.ui @@ -358,6 +361,12 @@ set(CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}/) add_executable(${vidalia_BIN} MACOSX_BUNDLE ${vidalia_SRCS}) + ## Specify location of custom Info.plist file + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/MacOSXBundleInfo.plist.in + ${CMAKE_CURRENT_BINARY_DIR}/MacOSXBundleInfo.plist) + set_target_properties(${vidalia_BIN} PROPERTIES MACOSX_BUNDLE_INFO_PLIST + ${CMAKE_CURRENT_BINARY_DIR}/MacOSXBundleInfo.plist) + ## Get the location of the app bundle for the current configuration get_target_property(VIDALIA_EXECUTABLE ${vidalia_BIN} LOCATION) get_filename_component(MACOSX_BUNDLE_DIRECTORY ${VIDALIA_EXECUTABLE} PATH) @@ -367,6 +376,8 @@ add_custom_command(TARGET ${vidalia_BIN} POST_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E make_directory ${MACOSX_BUNDLE_DIRECTORY}/Contents/Resources + COMMAND ${CMAKE_COMMAND} + ARGS -E make_directory ${MACOSX_BUNDLE_DIRECTORY}/share/tor COMMAND cp ARGS ${CMAKE_CURRENT_SOURCE_DIR}/res/icons/*.icns ${MACOSX_BUNDLE_DIRECTORY}/Contents/Resources/ @@ -462,7 +473,7 @@ 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 -Nru vidalia-0.2.10/src/vidalia/config/AbstractTorSettings.cpp vidalia-0.2.15/src/vidalia/config/AbstractTorSettings.cpp --- vidalia-0.2.10/src/vidalia/config/AbstractTorSettings.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/AbstractTorSettings.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AbstractTorSettings.cpp -** \version $Id: AbstractTorSettings.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Manages settings that need to be SETCONF'ed to Tor */ diff -Nru vidalia-0.2.10/src/vidalia/config/AbstractTorSettings.h vidalia-0.2.15/src/vidalia/config/AbstractTorSettings.h --- vidalia-0.2.10/src/vidalia/config/AbstractTorSettings.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/AbstractTorSettings.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AbstractTorSettings.h -** \version $Id: AbstractTorSettings.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Manages settings that need to be SETCONF'ed to Tor */ @@ -20,7 +19,6 @@ #include "VSettings.h" #include "TorControl.h" - class AbstractTorSettings : public VSettings { Q_OBJECT diff -Nru vidalia-0.2.10/src/vidalia/config/AdvancedPage.cpp vidalia-0.2.15/src/vidalia/config/AdvancedPage.cpp --- vidalia-0.2.10/src/vidalia/config/AdvancedPage.cpp 2010-07-14 15:50:50.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/AdvancedPage.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,18 +3,18 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AdvancedPage.cpp -** \version $Id: AdvancedPage.cpp 4353 2010-07-14 15:50:50Z edmanm $ ** \brief Advanced Tor and Vidalia configuration options */ #include "AdvancedPage.h" +#include "TorrcDialog.h" #include "Vidalia.h" #include "VMessageBox.h" #include "IpValidator.h" @@ -60,12 +60,19 @@ this, SLOT(authMethodChanged(int))); connect(ui.chkRandomPassword, SIGNAL(toggled(bool)), ui.linePassword, SLOT(setDisabled(bool))); + connect(ui.btnEditTorConfig, SIGNAL(clicked()), + this, SLOT(displayTorrcDialog())); + connect(ui.rdoControlPort, SIGNAL(toggled(bool)), this, SLOT(toggleControl(bool))); + connect(ui.btnBrowseSocketPath, SIGNAL(clicked()), this, SLOT(browseSocketPath())); + connect(ui.chkAuto, SIGNAL(toggled(bool)), this, SLOT(toggleAuto(bool))); /* Hide platform specific features */ #if defined(Q_WS_WIN) #if 0 ui.grpService->setVisible(TorService::isSupported()); #endif + /* Disable ControlSocket */ + ui.rdoControlSocket->setEnabled(false); #endif } @@ -111,12 +118,34 @@ bool AdvancedPage::save(QString &errmsg) { - /* Validate the control listener address */ QHostAddress controlAddress(ui.lineControlAddress->text()); - if (controlAddress.isNull()) { - errmsg = tr("'%1' is not a valid IP address.") - .arg(ui.lineControlAddress->text()); - return false; + QString path(ui.lineSocketPath->text()); + + if(ui.chkAuto->isChecked()) { + if(ui.lineTorDataDirectory->text().isEmpty()) { + errmsg = tr("You've checked the autoconfiguration option for the ControlPort, but" + " provided no Data Directory. Please add one, or uncheck the" + " \"Configure ControlPort automatically\" option."); + return false; + } + _settings->setAutoControlPort(true); + } + + /* Validate the control settings */ + if(ui.rdoControlPort->isChecked()) { + if (controlAddress.isNull()) { + errmsg = tr("'%1' is not a valid IP address.") + .arg(ui.lineControlAddress->text()); + return false; + } + _settings->setControlMethod(ControlMethod::Port); + } else { + QFileInfo finfo(path); + if(!finfo.exists()) { + errmsg = tr("ControlSocket path doesn't exist."); + return false; + } + _settings->setControlMethod(ControlMethod::Socket); } /* Validate the selected authentication options */ @@ -147,21 +176,30 @@ /* Only remember the torrc and datadir values if Vidalia started Tor, or * if the user changed the displayed values. */ - if (!Vidalia::torControl()->isVidaliaRunningTor()) { + if (Vidalia::torControl()->isVidaliaRunningTor() or + !Vidalia::torControl()->isConnected()) { QString torrc = ui.lineTorConfig->text(); - if (torrc != _settings->getTorrc()) + if (torrc != _settings->getTorrc()) { _settings->setTorrc(torrc); + if(Vidalia::torControl()->isConnected()) { + QMessageBox::StandardButtons res = QMessageBox::question(this, tr("Warning"), + tr("You changed torrc path, would you like to restart Tor?"), + QMessageBox::Yes | QMessageBox::No); + if(res == QMessageBox::Yes) + emit restartTor(); + } + } QString dataDir = ui.lineTorDataDirectory->text(); if (dataDir != _settings->getDataDirectory()) _settings->setDataDirectory(dataDir); - } else { - _settings->setTorrc(ui.lineTorConfig->text()); - _settings->setDataDirectory(ui.lineTorDataDirectory->text()); } - _settings->setControlAddress(controlAddress); - _settings->setControlPort(ui.lineControlPort->text().toUShort()); + if(!ui.chkAuto->isChecked()) { + _settings->setControlAddress(controlAddress); + _settings->setControlPort(ui.lineControlPort->text().toUShort()); + } + _settings->setSocketPath(ui.lineSocketPath->text()); _settings->setAuthenticationMethod(authMethod); _settings->setUseRandomPassword(ui.chkRandomPassword->isChecked()); @@ -187,12 +225,16 @@ ui.lineControlPort->setText(QString::number(_settings->getControlPort())); ui.lineTorConfig->setText(_settings->getTorrc()); ui.lineTorDataDirectory->setText(_settings->getDataDirectory()); + ui.chkAuto->setChecked(_settings->autoControlPort()); ui.cmbAuthMethod->setCurrentIndex( authMethodToIndex(_settings->getAuthenticationMethod())); ui.chkRandomPassword->setChecked(_settings->useRandomPassword()); if (!ui.chkRandomPassword->isChecked()) ui.linePassword->setText(_settings->getControlPassword()); + ui.rdoControlPort->setChecked(_settings->getControlMethod() == ControlMethod::Port); + ui.rdoControlSocket->setChecked(_settings->getControlMethod() == ControlMethod::Socket); + ui.lineSocketPath->setText(_settings->getSocketPath()); #if 0 #if defined(Q_WS_WIN) @@ -200,6 +242,11 @@ ui.chkUseService->setChecked(s.isInstalled()); #endif #endif + + if(Vidalia::torControl()->getTorVersion() < 0x2021a) { // 0x2021a == 0.2.2.26 + ui.chkAuto->setChecked(false); + ui.chkAuto->setVisible(false); + } } /** Called when the user selects a different authentication method from the @@ -294,6 +341,22 @@ ui.lineTorDataDirectory->setText(dataDir); } +/** Opens a QFileDialog for the user to browse to or create a socket path to + * communicate to Tor */ +void +AdvancedPage::browseSocketPath() +{ + QString start = QDir::currentPath(); + if(!ui.lineSocketPath->text().isEmpty()) + start = ui.lineSocketPath->text(); + QString socketPath = QFileDialog::getOpenFileName(this, + tr("Select a file to use for Tor socket path"), + start); + + if (!socketPath.isEmpty()) + ui.lineSocketPath->setText(socketPath); +} + #if 0 #if defined(Q_WS_WIN) /** Installs or removes the Tor service as necessary. */ @@ -329,3 +392,43 @@ #endif #endif +/** Called when the user presses the Edit current torrc button */ +void +AdvancedPage::displayTorrcDialog() +{ + TorrcDialog rcdialog(this); + rcdialog.exec(); +} + +void +AdvancedPage::toggleControl(bool) +{ + if(ui.rdoControlPort->isChecked()) { + ui.lblAddress->setEnabled(true); + ui.lineControlAddress->setEnabled(true); + ui.lineControlPort->setEnabled(true); + ui.lblPath->setEnabled(false); + ui.lineSocketPath->setEnabled(false); + ui.btnBrowseSocketPath->setEnabled(false); + ui.chkAuto->setEnabled(true); + } else { +#if !defined(Q_OS_WIN32) + ui.lblAddress->setEnabled(false); + ui.lineControlAddress->setEnabled(false); + ui.lineControlPort->setEnabled(false); + ui.lblPath->setEnabled(true); + ui.lineSocketPath->setEnabled(true); + ui.btnBrowseSocketPath->setEnabled(true); + ui.chkAuto->setEnabled(false); +#endif + } +} + +void +AdvancedPage::toggleAuto(bool) +{ + ui.lblAddress->setVisible(!ui.chkAuto->isChecked()); + ui.lineControlAddress->setVisible(!ui.chkAuto->isChecked()); + ui.label->setVisible(!ui.chkAuto->isChecked()); + ui.lineControlPort->setVisible(!ui.chkAuto->isChecked()); +} diff -Nru vidalia-0.2.10/src/vidalia/config/AdvancedPage.h vidalia-0.2.15/src/vidalia/config/AdvancedPage.h --- vidalia-0.2.10/src/vidalia/config/AdvancedPage.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/AdvancedPage.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AdvancedPage.h -** \version $Id: AdvancedPage.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Advanced Tor and Vidalia configuration options */ @@ -51,6 +50,10 @@ /** Called when the user changes the UI translation. */ virtual void retranslateUi(); +signals: + /** Emitted when the user changes torrc file to restart Tor */ + void restartTor(); + private slots: /** Called when the user selects a different authentication method from the * combo box. */ @@ -61,6 +64,19 @@ /** Called when the user clicks "Browse" to choose the location of Tor's * data directory. */ void browseTorDataDirectory(); + /** Called when the user clicks "Browse" to choose the location of Tor's + * socket path. */ + void browseSocketPath(); + /** Called when the user changes from ControlPort to ControlSocket or + * the other way aroud */ + void toggleControl(bool); + + /** Called when the user clicks "Edit current torrc" to edit Tor's config in + * a more advanced way */ + void displayTorrcDialog(); + + /** Called when the user checks "Configure ControlPort automatically" */ + void toggleAuto(bool); private: /** Returns the authentication method for the given index. */ diff -Nru vidalia-0.2.10/src/vidalia/config/AdvancedPage.ui vidalia-0.2.15/src/vidalia/config/AdvancedPage.ui --- vidalia-0.2.10/src/vidalia/config/AdvancedPage.ui 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/AdvancedPage.ui 2011-10-07 19:16:56.000000000 +0000 @@ -1,123 +1,109 @@ - + + AdvancedPage - - + + 0 0 - 507 + 573 543 - + Qt::NoContextMenu - - - 9 - - - 6 - + - - + + Qt::NoContextMenu - - Control Port + + Tor Control - - - 9 - - - 6 - + - - - 0 - - + + 2 - - - + + 6 + + + + Authentication: - + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - + + + Address: - + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - 0 - - + + + 2 - - + + 120 0 - + QComboBox::AdjustToContents - + None - + Cookie - + Password - - + + QLineEdit::Password - - + + Randomly Generate - + Qt::Horizontal - + 0 20 @@ -127,83 +113,121 @@ - - - - 0 - - - 6 - + + - - + + 120 16777215 - + 16 - + Qt::AlignRight - - + + : - - + + 75 0 - + 75 16777215 - + 5 - + Qt::Horizontal - + QSizePolicy::Expanding - + 40 - 20 + 0 - - - - 0 + + + + Use TCP connection (ControlPort) - - 6 + + true - + + + + + + false + + + Path: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + false + + + + + + + Use Unix domain socket (ControlSocket) + + + + + + + false + + + Browse + + + + + + + Configure ControlPort automatically + + @@ -211,110 +235,138 @@ - - + + Qt::NoContextMenu - + Tor Configuration File - - - 9 - - - 6 - - - - - true - - - 4 - - - Qt::NoContextMenu - - - Start the Tor software with the specified configuration file (torrc) - - - - - - - true - - - - 0 - 0 - - - - Qt::NoContextMenu - - - Select path to your configuration file - - - Browse - - + + + + + + + true + + + + 0 + 0 + + + + IBeamCursor + + + Qt::NoContextMenu + + + Start the Tor software with the specified configuration file (torrc) + + + + + + + true + + + + 0 + 0 + + + + Qt::NoContextMenu + + + Select path to your configuration file + + + Browse + + + + + + + Edit current torrc + + + + + + + NOTE: this will edit the currently loaded torrc + + + + + + + Qt::Horizontal + + + QSizePolicy::MinimumExpanding + + + + 100 + 20 + + + + + - - + + Qt::NoContextMenu - + Data Directory - - - 9 - - - 6 - + - - + + true - - 4 + + IBeamCursor - + Qt::NoContextMenu - + Store data for the Tor software in the following directory - - + + true - + 0 0 - + Qt::NoContextMenu - + Select the directory used to store data for the Tor software - + Browse @@ -324,10 +376,10 @@ - + Qt::Vertical - + 489 141 @@ -343,8 +395,6 @@ cmbAuthMethod linePassword chkRandomPassword - lineTorConfig - btnBrowseTorConfig lineTorDataDirectory btnBrowseTorDataDirectory diff -Nru vidalia-0.2.10/src/vidalia/config/AppearancePage.cpp vidalia-0.2.15/src/vidalia/config/AppearancePage.cpp --- vidalia-0.2.10/src/vidalia/config/AppearancePage.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/AppearancePage.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AppearancePage.cpp -** \version $Id: AppearancePage.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays Vidalia language and style settings */ @@ -73,6 +72,21 @@ /* Set the new style */ Vidalia::setStyle(ui.cmboStyle->currentText()); _settings->setInterfaceStyle(ui.cmboStyle->currentText()); + +#if defined(Q_WS_MAC) + /* Save new icon preference */ + if(ui.rdoIconPrefDock->isChecked()) { + _settings->setIconPref(VidaliaSettings::Dock); + } + else if(ui.rdoIconPrefTray->isChecked()) { + _settings->setIconPref(VidaliaSettings::Tray); + } + else { + /* default setting */ + _settings->setIconPref(VidaliaSettings::Both); + } +#endif + return true; } @@ -85,5 +99,18 @@ index = ui.cmboStyle->findData(Vidalia::style().toLower()); ui.cmboStyle->setCurrentIndex(index); + +#if defined(Q_WS_MAC) + /* set current icon preference */ + ui.rdoIconPrefBoth->setChecked(_settings->getIconPref() == VidaliaSettings::Both); + ui.rdoIconPrefTray->setChecked(_settings->getIconPref() == VidaliaSettings::Tray); + ui.rdoIconPrefDock->setChecked(_settings->getIconPref() == VidaliaSettings::Dock); +#else + /* hide preference on non-OSX platforms */ + ui.grpIconPref->setVisible(false); + ui.rdoIconPrefBoth->setVisible(false); + ui.rdoIconPrefTray->setVisible(false); + ui.rdoIconPrefDock->setVisible(false); +#endif } diff -Nru vidalia-0.2.10/src/vidalia/config/AppearancePage.h vidalia-0.2.15/src/vidalia/config/AppearancePage.h --- vidalia-0.2.10/src/vidalia/config/AppearancePage.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/AppearancePage.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 AppearancePage.h -** \version $Id: AppearancePage.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays Vidalia language and style settings */ diff -Nru vidalia-0.2.10/src/vidalia/config/AppearancePage.ui vidalia-0.2.15/src/vidalia/config/AppearancePage.ui --- vidalia-0.2.10/src/vidalia/config/AppearancePage.ui 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/AppearancePage.ui 2011-10-07 19:16:56.000000000 +0000 @@ -52,7 +52,7 @@ Qt::Horizontal - + 300 16 @@ -80,7 +80,7 @@ Qt::Horizontal - + 40 20 @@ -111,11 +111,66 @@ + + + + 0 + 100 + + + + Qt::PreventContextMenu + + + System Icon Preferences (changes will take effect when you restart Vidalia) + + + + + 20 + 30 + 441 + 20 + + + + Show the Tray Icon and Dock Icon (default) + + + + + + 20 + 70 + 441 + 20 + + + + Hide the Tray Icon + + + + + + 20 + 50 + 441 + 20 + + + + Hide the Dock Icon + + + + + Qt::Vertical - + 476 161 diff -Nru vidalia-0.2.10/src/vidalia/config/BridgeDownloader.cpp vidalia-0.2.15/src/vidalia/config/BridgeDownloader.cpp --- vidalia-0.2.10/src/vidalia/config/BridgeDownloader.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/BridgeDownloader.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,48 +3,38 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BridgeDownloader.cpp -** \version $Id: BridgeDownloader.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Downloads a list of new bridge addresses via HTTPS */ #include "BridgeDownloader.h" #include "Vidalia.h" -#include - #define BRIDGEDB_HOST "bridges.torproject.org" #define BRIDGEDB_PORT 443 - BridgeDownloader::BridgeDownloader(QObject *parent) - : QObject(parent), - _requestId(0) + : QObject(parent) { - _https = new QHttp(BRIDGEDB_HOST, QHttp::ConnectionModeHttps, - BRIDGEDB_PORT, this); + _https = new QNetworkAccessManager(); - connect(_https, SIGNAL(stateChanged(int)), - this, SLOT(httpsStateChanged(int))); - connect(_https, SIGNAL(requestFinished(int, bool)), - this, SLOT(httpsRequestFinished(int, bool))); - connect(_https, SIGNAL(dataReadProgress(int, int)), - this, SIGNAL(downloadProgress(int, int))); - connect(_https, SIGNAL(sslErrors(QList)), - this, SLOT(sslErrors(QList))); + connect(_https, SIGNAL(finished(QNetworkReply *)), + this, SLOT(httpsRequestFinished(QNetworkReply *))); + connect(_https, SIGNAL(sslErrors(QNetworkReply *, QList)), + this, SLOT(sslErrors(QNetworkReply *, QList))); } void BridgeDownloader::setProxy(const QString &host, int port, const QString &username, const QString &password) { - _https->setProxy(host, port, username, password); + _https->setProxy(QNetworkProxy(QNetworkProxy::HttpProxy, host, port, username, password)); } bool @@ -83,16 +73,18 @@ emit statusChanged(tr("Starting HTTPS bridge request...")); emit downloadProgress(0, 0); - _requestId = _https->get("/?format=plain"); - vInfo("Sending an HTTPS bridge request to %1:%2 (id %3).").arg(BRIDGEDB_HOST) - .arg(BRIDGEDB_PORT) - .arg(_requestId); + _reply = _https->get(QNetworkRequest(QUrl("https://bridges.torproject.org/?format=plain"))); + connect(_reply, SIGNAL(downloadProgress(qint64, qint64)), + this, SIGNAL(downloadProgress(qint64, qint64))); + vInfo("Sending an HTTPS bridge request to %1:%2.").arg(BRIDGEDB_HOST) + .arg(BRIDGEDB_PORT); } void BridgeDownloader::cancelBridgeRequest() { - _https->abort(); + _reply->close(); + disconnect(_reply, 0, 0, 0); } void @@ -118,20 +110,16 @@ } void -BridgeDownloader::httpsRequestFinished(int id, bool error) +BridgeDownloader::httpsRequestFinished(QNetworkReply *reply) { - if (id != _requestId) - return; - - if (error) { - QString errorString = _https->errorString(); - vWarn("Bridge request failed (id %1): %2").arg(id).arg(errorString); + if (reply->error() != QNetworkReply::NoError) { + QString errorString = reply->errorString(); + vWarn("Bridge request failed: %2").arg(errorString); emit bridgeRequestFailed(errorString); } else { - QByteArray response = _https->readAll(); - vInfo("Bridge request complete (id %1): received %2 bytes.").arg(id) - .arg(response.size()); + QByteArray response = reply->readAll(); + vInfo("Bridge request complete: received %2 bytes.").arg(response.size()); QStringList bridges, lines = QString(response).split("\n"); foreach (QString line, lines) { @@ -141,22 +129,21 @@ } emit bridgeRequestFinished(bridges); } - _https->close(); + _reply->close(); + disconnect(_reply,0,0,0); } void -BridgeDownloader::sslErrors(const QList &sslErrors) +BridgeDownloader::sslErrors(QNetworkReply *reply, const QList &sslErrors) { QString errorString; QStringList errorStrings; - vWarn("%1 SSL error(s) when requesting bridge information (id %2):") - .arg(sslErrors.size()) - .arg(_requestId); + vWarn("%1 SSL error(s) when requesting bridge information:") + .arg(sslErrors.size()); foreach (QSslError sslError, sslErrors) { errorString = sslError.errorString(); errorStrings << errorString; vWarn(" SSL Error: %1").arg(errorString); } } - diff -Nru vidalia-0.2.10/src/vidalia/config/BridgeDownloader.h vidalia-0.2.15/src/vidalia/config/BridgeDownloader.h --- vidalia-0.2.10/src/vidalia/config/BridgeDownloader.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/BridgeDownloader.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,24 +3,20 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BridgeDownloader.h -** \version $Id: BridgeDownloader.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Downloads a list of new bridge addresses via HTTPS */ #ifndef _BRIDGEDOWNLOADER_H #define _BRIDGEDOWNLOADER_H -#include -#include -#include - +#include class BridgeDownloader : public QObject { @@ -66,7 +62,7 @@ * have been read so far. Note that total may be 0 if the expected * total size of the response is not known. */ - void downloadProgress(int done, int total); + void downloadProgress(qint64 done, qint64 total); /** Emitted when the status of the bridge request changes. status * describes the new current state of the request. @@ -99,14 +95,14 @@ * signal is ignored since it is the result of a close() or abort() * request. */ - void httpsRequestFinished(int id, bool error); + void httpsRequestFinished(QNetworkReply *reply); /** Called when the HTTPS connection encounters one or more * sslErrors. Currently the errors are just logged and * bridgeRequestFailed() is not emitted, since QHttp will also * emit */ - void sslErrors(const QList &sslErrors); + void sslErrors(QNetworkReply *, const QList &sslErrors); private: /** Initiates an HTTPS connection to bridges.torproject.org to start @@ -116,10 +112,10 @@ /** Used to connect to the bridge database, send an HTTPS request for * new bridge addresses and then read the response. */ - QHttp* _https; + QNetworkAccessManager* _https; - /** Unique numeric identifier of the current bridge request. */ - int _requestId; + /** Identifier of the current bridge request */ + QNetworkReply *_reply; }; #endif diff -Nru vidalia-0.2.10/src/vidalia/config/BridgeDownloaderProgressDialog.cpp vidalia-0.2.15/src/vidalia/config/BridgeDownloaderProgressDialog.cpp --- vidalia-0.2.10/src/vidalia/config/BridgeDownloaderProgressDialog.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/BridgeDownloaderProgressDialog.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BridgeDownloaderProgressDialog.cpp -** \version $Id: BridgeDownloaderProgressDialog.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays the progress of a request for bridge addresses */ @@ -47,7 +46,7 @@ } void -BridgeDownloaderProgressDialog::setDownloadProgress(int done, int total) +BridgeDownloaderProgressDialog::setDownloadProgress(qint64 done, qint64 total) { ui.progressBar->setRange(0, total); ui.progressBar->setValue(done); diff -Nru vidalia-0.2.10/src/vidalia/config/BridgeDownloaderProgressDialog.h vidalia-0.2.15/src/vidalia/config/BridgeDownloaderProgressDialog.h --- vidalia-0.2.10/src/vidalia/config/BridgeDownloaderProgressDialog.h 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/BridgeDownloaderProgressDialog.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BridgeDownloaderProgressDialog.h -** \version $Id: BridgeDownloaderProgressDialog.h 3879 2009-06-23 22:53:29Z edmanm $ ** \brief Displays the progress of a request for bridge addresses */ @@ -40,7 +39,7 @@ * maximum steps. If value and maximum are both 0, * then a "busy" progress bar is displayed. */ - void setDownloadProgress(int value, int maximum); + void setDownloadProgress(qint64 value, qint64 maximum); /** Called when the bridge download completes successfully and discards * the progress dialog with an Accept result code. bridges diff -Nru vidalia-0.2.10/src/vidalia/config/BridgeUsageDialog.cpp vidalia-0.2.15/src/vidalia/config/BridgeUsageDialog.cpp --- vidalia-0.2.10/src/vidalia/config/BridgeUsageDialog.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/BridgeUsageDialog.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BridgeUsageDialog.cpp -** \version $Id: BridgeUsageDialog.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays a summary of bridge usage information, including client ** geographic location history. */ diff -Nru vidalia-0.2.10/src/vidalia/config/BridgeUsageDialog.h vidalia-0.2.15/src/vidalia/config/BridgeUsageDialog.h --- vidalia-0.2.10/src/vidalia/config/BridgeUsageDialog.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/BridgeUsageDialog.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 BridgeUsageDialog.h -** \version $Id: BridgeUsageDialog.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays a summary of bridge usage information, including client ** geographic location history. */ diff -Nru vidalia-0.2.10/src/vidalia/config/ConfigDialog.cpp vidalia-0.2.15/src/vidalia/config/ConfigDialog.cpp --- vidalia-0.2.10/src/vidalia/config/ConfigDialog.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ConfigDialog.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ConfigDialog.cpp -** \version $Id: ConfigDialog.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Contains a series of Vidalia and Tor configuration pages */ @@ -66,6 +65,8 @@ connect(Vidalia::torControl(), SIGNAL(authenticated()), this, SLOT(applyChanges())); + /* Used to connect restartTor signals */ + AdvancedPage *advancedPage; /* Create the config pages and actions */ QActionGroup *grp = new QActionGroup(this); GeneralPage *generalPage = new GeneralPage(ui.stackPages); @@ -91,10 +92,12 @@ createPageAction(QIcon(IMAGE_APPEARANCE), tr("Appearance"), "Appearance", grp)); - ui.stackPages->add(new AdvancedPage(ui.stackPages), + ui.stackPages->add(advancedPage = new AdvancedPage(ui.stackPages), createPageAction(QIcon(IMAGE_ADVANCED), tr("Advanced"), "Advanced", grp)); + connect(advancedPage, SIGNAL(restartTor()), this, SIGNAL(restartTor())); + foreach (ConfigPage *page, ui.stackPages->pages()) { connect(page, SIGNAL(helpRequested(QString)), this, SLOT(help(QString))); diff -Nru vidalia-0.2.10/src/vidalia/config/ConfigDialog.h vidalia-0.2.15/src/vidalia/config/ConfigDialog.h --- vidalia-0.2.10/src/vidalia/config/ConfigDialog.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ConfigDialog.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ConfigDialog.h -** \version $Id: ConfigDialog.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Contains a series of Vidalia and Tor configuration pages */ @@ -50,6 +49,8 @@ /** Emitted when the user clicks "Check Now" to initiate a check * for software updates. */ void checkForUpdates(); + /** Emitted when the user changes torrc file to restart Tor */ + void restartTor(); protected: /** Called when the user changes the UI translation. */ diff -Nru vidalia-0.2.10/src/vidalia/config/ConfigPage.h vidalia-0.2.15/src/vidalia/config/ConfigPage.h --- vidalia-0.2.10/src/vidalia/config/ConfigPage.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ConfigPage.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ConfigPage.h -** \version $Id: ConfigPage.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Pure-virtual class for a configuration page */ diff -Nru vidalia-0.2.10/src/vidalia/config/ConfigPageStack.cpp vidalia-0.2.15/src/vidalia/config/ConfigPageStack.cpp --- vidalia-0.2.10/src/vidalia/config/ConfigPageStack.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ConfigPageStack.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ConfigPageStack.cpp -** \version $Id: ConfigPageStack.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief A collection of configuration pages */ diff -Nru vidalia-0.2.10/src/vidalia/config/ConfigPageStack.h vidalia-0.2.15/src/vidalia/config/ConfigPageStack.h --- vidalia-0.2.10/src/vidalia/config/ConfigPageStack.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ConfigPageStack.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ConfigPageStack.h -** \version $Id: ConfigPageStack.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief A collection of configuration pages */ diff -Nru vidalia-0.2.10/src/vidalia/config/DomainValidator.cpp vidalia-0.2.15/src/vidalia/config/DomainValidator.cpp --- vidalia-0.2.10/src/vidalia/config/DomainValidator.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/DomainValidator.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 DomainValidator.cpp -** \version $Id: DomainValidator.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Validates that a given domain name is (probably) valid */ diff -Nru vidalia-0.2.10/src/vidalia/config/DomainValidator.h vidalia-0.2.15/src/vidalia/config/DomainValidator.h --- vidalia-0.2.10/src/vidalia/config/DomainValidator.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/DomainValidator.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 DomainValidator.h -** \version $Id: DomainValidator.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Validates that a given domain name is (probably) valid */ diff -Nru vidalia-0.2.10/src/vidalia/config/ExitPolicy.cpp vidalia-0.2.15/src/vidalia/config/ExitPolicy.cpp --- vidalia-0.2.10/src/vidalia/config/ExitPolicy.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ExitPolicy.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ExitPolicy.cpp -** \version $Id: ExitPolicy.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Collection of Policy objects representing an exit policy */ diff -Nru vidalia-0.2.10/src/vidalia/config/ExitPolicy.h vidalia-0.2.15/src/vidalia/config/ExitPolicy.h --- vidalia-0.2.10/src/vidalia/config/ExitPolicy.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ExitPolicy.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ExitPolicy.h -** \version $Id: ExitPolicy.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Collection of Policy objects representing an exit policy */ diff -Nru vidalia-0.2.10/src/vidalia/config/GeneralPage.cpp vidalia-0.2.15/src/vidalia/config/GeneralPage.cpp --- vidalia-0.2.10/src/vidalia/config/GeneralPage.cpp 2009-09-24 02:28:18.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/GeneralPage.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 GeneralPage.cpp -** \version $Id: GeneralPage.cpp 4132 2009-09-24 02:28:18Z edmanm $ ** \brief General Tor and Vidalia configuration options */ diff -Nru vidalia-0.2.10/src/vidalia/config/GeneralPage.h vidalia-0.2.15/src/vidalia/config/GeneralPage.h --- vidalia-0.2.10/src/vidalia/config/GeneralPage.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/GeneralPage.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 GeneralPage.h -** \version $Id: GeneralPage.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief General Tor and Vidalia configuration options */ diff -Nru vidalia-0.2.10/src/vidalia/config/GeneralPage.ui vidalia-0.2.15/src/vidalia/config/GeneralPage.ui --- vidalia-0.2.10/src/vidalia/config/GeneralPage.ui 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/GeneralPage.ui 2011-10-07 19:16:56.000000000 +0000 @@ -166,7 +166,7 @@ Qt::Horizontal - + 40 20 @@ -179,7 +179,7 @@ Qt::Horizontal - + 40 20 @@ -202,7 +202,7 @@ Qt::Vertical - + 20 40 diff -Nru vidalia-0.2.10/src/vidalia/config/IpValidator.cpp vidalia-0.2.15/src/vidalia/config/IpValidator.cpp --- vidalia-0.2.10/src/vidalia/config/IpValidator.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/IpValidator.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 IpValidator.cpp -** \version $Id: IpValidator.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Validates an entered IP address */ diff -Nru vidalia-0.2.10/src/vidalia/config/IpValidator.h vidalia-0.2.15/src/vidalia/config/IpValidator.h --- vidalia-0.2.10/src/vidalia/config/IpValidator.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/IpValidator.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 IpValidator.h -** \version $Id: IpValidator.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Validates an entered IP address */ diff -Nru vidalia-0.2.10/src/vidalia/config/Local8BitStringValidator.cpp vidalia-0.2.15/src/vidalia/config/Local8BitStringValidator.cpp --- vidalia-0.2.10/src/vidalia/config/Local8BitStringValidator.cpp 2010-07-14 15:50:50.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/Local8BitStringValidator.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Local8BitStringValidator.cpp -** \version $Id: Local8BitStringValidator.cpp 4353 2010-07-14 15:50:50Z edmanm $ ** \brief Validates that a given string contains only characters capable of ** being represented in the current local 8-bit character encoding. */ diff -Nru vidalia-0.2.10/src/vidalia/config/Local8BitStringValidator.h vidalia-0.2.15/src/vidalia/config/Local8BitStringValidator.h --- vidalia-0.2.10/src/vidalia/config/Local8BitStringValidator.h 2010-07-14 15:50:50.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/Local8BitStringValidator.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Local8BitStringValidator.h -** \version $Id: Local8BitStringValidator.h 4353 2010-07-14 15:50:50Z edmanm $ ** \brief Validates that a given string contains only characters capable of ** being represented in the current local 8-bit character encoding. */ diff -Nru vidalia-0.2.10/src/vidalia/config/NetworkPage.cpp vidalia-0.2.15/src/vidalia/config/NetworkPage.cpp --- vidalia-0.2.10/src/vidalia/config/NetworkPage.cpp 2009-10-04 17:39:14.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/NetworkPage.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 NetworkPage.cpp -** \version $Id: NetworkPage.cpp 4141 2009-10-04 17:39:14Z edmanm $ ** \brief Network and firewall configuration options */ @@ -390,8 +389,8 @@ connect(_bridgeDownloader, SIGNAL(statusChanged(QString)), dlg, SLOT(setStatus(QString))); - connect(_bridgeDownloader, SIGNAL(downloadProgress(int, int)), - dlg, SLOT(setDownloadProgress(int, int))); + connect(_bridgeDownloader, SIGNAL(downloadProgress(qint64, qint64)), + dlg, SLOT(setDownloadProgress(qint64, qint64))); connect(_bridgeDownloader, SIGNAL(bridgeRequestFailed(QString)), dlg, SLOT(bridgeRequestFailed(QString))); connect(_bridgeDownloader, SIGNAL(bridgeRequestFinished(QStringList)), diff -Nru vidalia-0.2.10/src/vidalia/config/NetworkPage.h vidalia-0.2.15/src/vidalia/config/NetworkPage.h --- vidalia-0.2.10/src/vidalia/config/NetworkPage.h 2009-10-03 21:49:21.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/NetworkPage.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 NetworkPage.h -** \version $Id: NetworkPage.h 4140 2009-10-03 21:49:21Z edmanm $ ** \brief Network and firewall configuration options */ diff -Nru vidalia-0.2.10/src/vidalia/config/NetworkPage.ui vidalia-0.2.15/src/vidalia/config/NetworkPage.ui --- vidalia-0.2.10/src/vidalia/config/NetworkPage.ui 2009-10-03 21:49:21.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/NetworkPage.ui 2011-10-07 19:16:56.000000000 +0000 @@ -148,7 +148,7 @@ Qt::Horizontal - + 40 20 @@ -289,7 +289,7 @@ Qt::Horizontal - + 40 20 @@ -392,7 +392,7 @@ Qt::Vertical - + 20 40 @@ -428,7 +428,7 @@ Qt::Horizontal - + 40 20 @@ -446,7 +446,7 @@ Qt::Vertical - + 20 40 diff -Nru vidalia-0.2.10/src/vidalia/config/NetworkSettings.cpp vidalia-0.2.15/src/vidalia/config/NetworkSettings.cpp --- vidalia-0.2.10/src/vidalia/config/NetworkSettings.cpp 2009-10-03 21:49:21.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/NetworkSettings.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,18 +3,18 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 NetworkSettings.cpp -** \version $Id: NetworkSettings.cpp 4140 2009-10-03 21:49:21Z edmanm $ ** \brief Settings for configuring an HTTP/HTTPS proxy or bridges */ #include "NetworkSettings.h" +#include "TorControl.h" #define SETTING_FASCIST_FIREWALL "FascistFirewall" #define SETTING_REACHABLE_ADDRESSES "ReachableAddresses" diff -Nru vidalia-0.2.10/src/vidalia/config/NetworkSettings.h vidalia-0.2.15/src/vidalia/config/NetworkSettings.h --- vidalia-0.2.10/src/vidalia/config/NetworkSettings.h 2009-10-03 21:49:21.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/NetworkSettings.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 NetworkSettings.h -** \version $Id: NetworkSettings.h 4140 2009-10-03 21:49:21Z edmanm $ ** \brief Settings for configuring an HTTP/HTTPS proxy or bridges */ diff -Nru vidalia-0.2.10/src/vidalia/config/NicknameValidator.cpp vidalia-0.2.15/src/vidalia/config/NicknameValidator.cpp --- vidalia-0.2.10/src/vidalia/config/NicknameValidator.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/NicknameValidator.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 NicknameValidator.cpp -** \version $Id: NicknameValidator.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Validates that a server nickname contains only valid characters */ diff -Nru vidalia-0.2.10/src/vidalia/config/NicknameValidator.h vidalia-0.2.15/src/vidalia/config/NicknameValidator.h --- vidalia-0.2.10/src/vidalia/config/NicknameValidator.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/NicknameValidator.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 NicknameValidator.h -** \version $Id: NicknameValidator.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Validates that a server nickname contains only valid characters */ diff -Nru vidalia-0.2.10/src/vidalia/config/Policy.cpp vidalia-0.2.15/src/vidalia/config/Policy.cpp --- vidalia-0.2.10/src/vidalia/config/Policy.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/Policy.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Policy.cpp -** \version $Id: Policy.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Exit policy parsing */ diff -Nru vidalia-0.2.10/src/vidalia/config/Policy.h vidalia-0.2.15/src/vidalia/config/Policy.h --- vidalia-0.2.10/src/vidalia/config/Policy.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/Policy.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 Policy.h -** \version $Id: Policy.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Exit policy parsing */ diff -Nru vidalia-0.2.10/src/vidalia/config/PortValidator.cpp vidalia-0.2.15/src/vidalia/config/PortValidator.cpp --- vidalia-0.2.10/src/vidalia/config/PortValidator.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/PortValidator.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 PortValidator.cpp -** \version $Id: PortValidator.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Validates that a number is a valid port number */ diff -Nru vidalia-0.2.10/src/vidalia/config/PortValidator.h vidalia-0.2.15/src/vidalia/config/PortValidator.h --- vidalia-0.2.10/src/vidalia/config/PortValidator.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/PortValidator.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 PortValidator.h -** \version $Id: PortValidator.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Validates that a number is a valid port number */ diff -Nru vidalia-0.2.10/src/vidalia/config/ServerPage.cpp vidalia-0.2.15/src/vidalia/config/ServerPage.cpp --- vidalia-0.2.10/src/vidalia/config/ServerPage.cpp 2009-10-12 00:59:22.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServerPage.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ServerPage.cpp -** \version $Id: ServerPage.cpp 4143 2009-10-12 00:59:22Z edmanm $ ** \brief Tor server configuration options */ @@ -90,6 +89,8 @@ this, SLOT(customRateChanged())); connect(ui.rdoClientMode, SIGNAL(toggled(bool)), this, SLOT(serverModeChanged(bool))); + connect(ui.rdoNonExitMode, SIGNAL(toggled(bool)), + this, SLOT(serverModeChanged(bool))); connect(ui.rdoServerMode, SIGNAL(toggled(bool)), this, SLOT(serverModeChanged(bool))); connect(ui.rdoBridgeMode, SIGNAL(toggled(bool)), @@ -102,6 +103,8 @@ this, SLOT(copyBridgeIdentity())); connect(ui.lblBridgeUsage, SIGNAL(linkActivated(QString)), this, SLOT(linkActivated(QString))); + connect(ui.lblWhatsThis, SIGNAL(linkActivated(QString)), + this, SLOT(linkActivated(QString))); /* Set validators for address, mask and various port number fields */ ui.lineServerNickname->setValidator(new NicknameValidator(this)); @@ -118,6 +121,9 @@ ui.chkEnableUpnp->setVisible(false); ui.btnTestUpnp->setVisible(false); #endif + + _tmpDirPort = "9030"; + _tmpMirror = true; } /** Destructor */ @@ -216,10 +222,12 @@ { Q_UNUSED(enabled); bool bridgeEnabled = ui.rdoBridgeMode->isChecked(); + bool relayEnabled = ui.rdoServerMode->isChecked() || + ui.rdoNonExitMode->isChecked(); /* Show the tab menu only if the user is running a normal relay or a bridge * relay. */ - ui.tabsMenu->setVisible(ui.rdoServerMode->isChecked() || bridgeEnabled); + ui.tabsMenu->setVisible(relayEnabled || bridgeEnabled); /* Disable the Exit Policies tab when bridge relay mode is selected */ ui.tabsMenu->setTabEnabled(2, !bridgeEnabled); @@ -232,6 +240,28 @@ ui.chkPublishBridgeAddress->setVisible(bridgeEnabled); ui.lblBridgeUsage->setVisible(bridgeEnabled && Vidalia::torControl()->isConnected()); + + if(bridgeEnabled) { + if(ui.lineDirPort->text().length() != 0) { + _tmpDirPort = ui.lineDirPort->text(); + _tmpMirror = ui.chkMirrorDirectory->isChecked(); + } + ui.lineDirPort->clear(); + ui.chkMirrorDirectory->setChecked(false); + } else { + ui.lineDirPort->setText(_tmpDirPort); + ui.chkMirrorDirectory->setChecked(_tmpMirror); + } + + ui.chkMirrorDirectory->setEnabled(!bridgeEnabled); + if(ui.chkMirrorDirectory->isChecked()) { + ui.lblDirPort->setEnabled(!bridgeEnabled); + ui.lineDirPort->setEnabled(!bridgeEnabled); + } + + /* Disable the Exit Policies tab when bridge or non-exit relay mode is + * selected */ + ui.tabsMenu->setTabEnabled(2, !bridgeEnabled and !ui.rdoNonExitMode->isChecked()); } /** Returns true if the user has changed their server settings since the @@ -265,8 +295,10 @@ { /* Force the bandwidth rate limits to validate */ customRateChanged(); - - if (ui.rdoServerMode->isChecked() || ui.rdoBridgeMode->isChecked()) { + + if (ui.rdoServerMode->isChecked() || + ui.rdoNonExitMode->isChecked() || + ui.rdoBridgeMode->isChecked()) { /* A server must have an ORPort and a nickname */ if (ui.lineServerPort->text().isEmpty() || ui.lineServerNickname->text().isEmpty()) { @@ -285,16 +317,22 @@ /* "Server" is enabled whether we're a bridge or normal relay. "Bridge" is * only enabled if we're a bridge (obviously). */ _settings->setServerEnabled(ui.rdoServerMode->isChecked() - || ui.rdoBridgeMode->isChecked()); + || ui.rdoNonExitMode->isChecked() + || ui.rdoBridgeMode->isChecked()); + _settings->setNonExitEnabled(ui.rdoNonExitMode->isChecked()); _settings->setBridgeEnabled(ui.rdoBridgeMode->isChecked()); if (ui.rdoBridgeMode->isChecked()) _settings->setPublishServerDescriptor(ui.chkPublishBridgeAddress->isChecked()); /* Save the rest of the server settings. */ - _settings->setDirectoryMirror(ui.chkMirrorDirectory->isChecked()); _settings->setNickname(ui.lineServerNickname->text()); _settings->setORPort(ui.lineServerPort->text().toUInt()); - _settings->setDirPort(ui.lineDirPort->text().toUInt()); + if (!ui.rdoBridgeMode->isChecked()) { + _settings->setDirPort(ui.lineDirPort->text().toUInt()); + _settings->setDirectoryMirror(ui.chkMirrorDirectory->isChecked()); + } else { + _settings->setDirectoryMirror(false); + } _settings->setContactInfo(ui.lineServerContact->text()); saveBandwidthLimits(); saveExitPolicies(); @@ -312,6 +350,8 @@ { if (_settings->isBridgeEnabled()) ui.rdoBridgeMode->setChecked(true); + else if (_settings->isNonExitEnabled()) + ui.rdoNonExitMode->setChecked(true); else if (_settings->isServerEnabled()) ui.rdoServerMode->setChecked(true); else @@ -452,41 +492,47 @@ void ServerPage::saveExitPolicies() { - ExitPolicy exitPolicy; - bool rejectUnchecked = ui.chkMisc->isChecked(); - - /* If misc is checked, then reject unchecked items and leave the default exit - * policy alone. Else, accept only checked items and end with reject *:*, - * replacing the default exit policy. */ - if (ui.chkWebsites->isChecked() && !rejectUnchecked) { - exitPolicy.addAcceptedPorts(PORTS_HTTP); - } else if (!ui.chkWebsites->isChecked() && rejectUnchecked) { - exitPolicy.addRejectedPorts(PORTS_HTTP); - } - if (ui.chkSecWebsites->isChecked() && !rejectUnchecked) { - exitPolicy.addAcceptedPorts(PORTS_HTTPS); - } else if (!ui.chkSecWebsites->isChecked() && rejectUnchecked) { - exitPolicy.addRejectedPorts(PORTS_HTTPS); - } - if (ui.chkMail->isChecked() && !rejectUnchecked) { - exitPolicy.addAcceptedPorts(PORTS_MAIL); - } else if (!ui.chkMail->isChecked() && rejectUnchecked) { - exitPolicy.addRejectedPorts(PORTS_MAIL); - } - if (ui.chkIRC->isChecked() && !rejectUnchecked) { - exitPolicy.addAcceptedPorts(PORTS_IRC); - } else if (!ui.chkIRC->isChecked() && rejectUnchecked) { - exitPolicy.addRejectedPorts(PORTS_IRC); - } - if (ui.chkIM->isChecked() && !rejectUnchecked) { - exitPolicy.addAcceptedPorts(PORTS_IM); - } else if (!ui.chkIM->isChecked() && rejectUnchecked) { - exitPolicy.addRejectedPorts(PORTS_IM); - } - if (!ui.chkMisc->isChecked()) { - exitPolicy.addPolicy(Policy(Policy::RejectAll)); + ExitPolicy *exitPolicy; + if(ui.rdoNonExitMode->isChecked()) { + exitPolicy = new ExitPolicy(ExitPolicy::Middleman); + } else { + exitPolicy = new ExitPolicy(); + bool rejectUnchecked = ui.chkMisc->isChecked(); + + /* If misc is checked, then reject unchecked items and leave the default exit + * policy alone. Else, accept only checked items and end with reject *:*, + * replacing the default exit policy. */ + if (ui.chkWebsites->isChecked() && !rejectUnchecked) { + exitPolicy->addAcceptedPorts(PORTS_HTTP); + } else if (!ui.chkWebsites->isChecked() && rejectUnchecked) { + exitPolicy->addRejectedPorts(PORTS_HTTP); + } + if (ui.chkSecWebsites->isChecked() && !rejectUnchecked) { + exitPolicy->addAcceptedPorts(PORTS_HTTPS); + } else if (!ui.chkSecWebsites->isChecked() && rejectUnchecked) { + exitPolicy->addRejectedPorts(PORTS_HTTPS); + } + if (ui.chkMail->isChecked() && !rejectUnchecked) { + exitPolicy->addAcceptedPorts(PORTS_MAIL); + } else if (!ui.chkMail->isChecked() && rejectUnchecked) { + exitPolicy->addRejectedPorts(PORTS_MAIL); + } + if (ui.chkIRC->isChecked() && !rejectUnchecked) { + exitPolicy->addAcceptedPorts(PORTS_IRC); + } else if (!ui.chkIRC->isChecked() && rejectUnchecked) { + exitPolicy->addRejectedPorts(PORTS_IRC); + } + if (ui.chkIM->isChecked() && !rejectUnchecked) { + exitPolicy->addAcceptedPorts(PORTS_IM); + } else if (!ui.chkIM->isChecked() && rejectUnchecked) { + exitPolicy->addRejectedPorts(PORTS_IM); + } + if (!ui.chkMisc->isChecked()) { + exitPolicy->addPolicy(Policy(Policy::RejectAll)); + } } - _settings->setExitPolicy(exitPolicy); + + _settings->setExitPolicy(*exitPolicy); } /** Called when the user selects a new value from the rate combo box. */ @@ -550,6 +596,8 @@ { if (!url.compare("#bridgeUsage")) displayBridgeUsage(); + else if(!url.compare("#bridgeHelp")) + emit helpRequested("bridges.about"); } /** Retrieves bridge usage history from Tor, parses and validates it, and @@ -558,15 +606,11 @@ ServerPage::displayBridgeUsage() { QString info; + QMessageBox dlg(this); info = Vidalia::torControl()->getInfo("status/clients-seen").toString(); if (info.isEmpty()) { - QMessageBox dlg(QMessageBox::Information, tr("No Recent Usage"), - tr("No clients have used your relay recently."), - QMessageBox::Ok, this); - dlg.setInformativeText(tr("Leave your relay running so clients have " - "a better chance of finding and using it.")); - dlg.exec(); + goto none; } else { QDateTime timeStarted; QHash countrySummary; @@ -584,29 +628,50 @@ if (!timeStarted.isValid()) goto err; - foreach (QString pair, keyvals.value("CountrySummary").split(",")) { - QStringList parts = pair.split("="); - if (parts.size() != 2) - goto err; - - countrySummary.insert(parts.at(0).toUpper(), parts.at(1).toInt(&ok)); - if (!ok) - goto err; - } + // Default is LocalTime, force UTC + timeStarted.setTimeSpec(Qt::UTC); + + QStringList summary = keyvals.value("CountrySummary") + .split(",", QString::SkipEmptyParts); + if (summary.isEmpty()) { + goto none; + } else { + foreach (QString pair, summary) { + QStringList parts = pair.split("="); + if (parts.size() != 2) + goto err; + + countrySummary.insert(parts.at(0).toUpper(), parts.at(1).toInt(&ok)); + if (!ok) + goto err; + } - dlg.update(timeStarted, countrySummary); - dlg.exec(); + dlg.update(timeStarted, countrySummary); + dlg.exec(); + } } return; +none: + dlg.setIcon(QMessageBox::Information); + dlg.setWindowTitle(tr("No Recent Usage")); + dlg.setText(tr("No clients have used your relay recently.")); + dlg.setInformativeText(tr("Leave your relay running so clients have " + "a better chance of finding and using it.")); + dlg.setStandardButtons(QMessageBox::Ok); + dlg.exec(); + return; + err: - QMessageBox dlg(QMessageBox::Warning, tr("Bridge History"), - tr("Vidalia was unable to retrieve your bridge's usage " - "history."), QMessageBox::Ok, this); + dlg.setIcon(QMessageBox::Warning); + dlg.setWindowTitle(tr("Bridge History")); + dlg.setText(tr("Vidalia was unable to retrieve your bridge's usage " + "history.")); dlg.setInformativeText(tr("Tor returned an improperly formatted " "response when Vidalia requested your " "bridge's usage history.")); dlg.setDetailedText(tr("The returned response was: %1").arg(info)); + dlg.setStandardButtons(QMessageBox::Ok); dlg.exec(); } diff -Nru vidalia-0.2.10/src/vidalia/config/ServerPage.h vidalia-0.2.15/src/vidalia/config/ServerPage.h --- vidalia-0.2.10/src/vidalia/config/ServerPage.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServerPage.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ServerPage.h -** \version $Id: ServerPage.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Tor server configuration options */ @@ -121,6 +120,12 @@ /** Qt Designer generated object */ Ui::ServerPage ui; + + /** Used to store the dirport value and if the user wants to mirror the + * directory so that they can be emptied when selecting being a bridge and + * re-added when selecting relay */ + QString _tmpDirPort; + bool _tmpMirror; }; #endif diff -Nru vidalia-0.2.10/src/vidalia/config/ServerPage.ui vidalia-0.2.15/src/vidalia/config/ServerPage.ui --- vidalia-0.2.10/src/vidalia/config/ServerPage.ui 2009-10-12 00:59:22.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServerPage.ui 2011-10-07 19:16:56.000000000 +0000 @@ -6,8 +6,8 @@ 0 0 - 546 - 463 + 548 + 507 @@ -15,25 +15,56 @@ - - - Run as a client only - - - - - - - Relay traffic for the Tor network - - - - - - - Help censored users reach the Tor network - - + + + + + Run as a client only + + + + + + + Relay traffic for the Tor network (exit relay) + + + + + + + Help censored users reach the Tor network + + + + + + + <a href="#bridgeHelp">What's this?</a> + + + + + + + Qt::Horizontal + + + + 40 + 0 + + + + + + + + Relay traffic inside the Tor network (non-exit relay) + + + + @@ -243,7 +274,7 @@ - + Qt::NoContextMenu diff -Nru vidalia-0.2.10/src/vidalia/config/ServerSettings.cpp vidalia-0.2.15/src/vidalia/config/ServerSettings.cpp --- vidalia-0.2.10/src/vidalia/config/ServerSettings.cpp 2009-10-12 00:59:22.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServerSettings.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,20 +3,20 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ServerSettings.cpp -** \version $Id: ServerSettings.cpp 4143 2009-10-12 00:59:22Z edmanm $ ** \brief Settings for running a Tor server */ #include "config.h" #include "ServerSettings.h" #include "TorSettings.h" +#include "TorControl.h" #ifdef USE_MINIUPNPC #include "UPNPControl.h" #endif @@ -43,6 +43,7 @@ #define SETTING_BANDWIDTH_RATE "BandwidthRate" #define SETTING_BANDWIDTH_BURST "BandwidthBurst" #define SETTING_BRIDGE_RELAY "BridgeRelay" +#define SETTING_NONEXIT_RELAY "NonExitRelay" #define SETTING_ENABLE_UPNP "EnableUPnP" #define SETTING_RELAY_BANDWIDTH_RATE "RelayBandwidthRate" #define SETTING_RELAY_BANDWIDTH_BURST "RelayBandwidthBurst" @@ -71,7 +72,7 @@ setDefault(SETTING_BANDWIDTH_BURST, 10485760); setDefault(SETTING_RELAY_BANDWIDTH_BURST, 10485760); setDefault(SETTING_EXITPOLICY, - ExitPolicy(ExitPolicy::Default).toString()); + ExitPolicy(ExitPolicy::Middleman).toString()); setDefault(SETTING_ENABLE_UPNP, false); setDefault(SETTING_BRIDGE_RELAY, false); setDefault(SETTING_PUBLISH_SERVER_DESCRIPTOR, "1"); @@ -257,6 +258,21 @@ { return value(SETTING_BRIDGE_RELAY).toBool() && isServerEnabled(); } + +/** Sets to enabled whether Tor should be a non-exit node when acting as + * a server. */ +void +ServerSettings::setNonExitEnabled(bool enabled) +{ + setValue(SETTING_NONEXIT_RELAY, enabled); +} + +/** Returns true if Tor is configured to act as a non-exit node. */ +bool +ServerSettings::isNonExitEnabled() +{ + return value(SETTING_NONEXIT_RELAY).toBool() && isServerEnabled(); +} /** Sets the server's ORPort. */ void diff -Nru vidalia-0.2.10/src/vidalia/config/ServerSettings.h vidalia-0.2.15/src/vidalia/config/ServerSettings.h --- vidalia-0.2.10/src/vidalia/config/ServerSettings.h 2009-10-12 00:59:22.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServerSettings.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ServerSettings.h -** \version $Id: ServerSettings.h 4143 2009-10-12 00:59:22Z edmanm $ ** \brief Settings for running a Tor server */ @@ -43,6 +42,12 @@ /** Returns true if Tor is configured to act as a bridge node. */ bool isBridgeEnabled(); + /** Sets to enabled whether Tor should be a non-exit node when acting + * as a server. */ + void setNonExitEnabled(bool enable); + /** Returns true if Tor is configured to act as a non-exit node. */ + bool isNonExitEnabled(); + /** Sets the server's ORPort value. */ void setORPort(quint16 orPort); /** Gets the server's ORPort value. */ diff -Nru vidalia-0.2.10/src/vidalia/config/Service.cpp vidalia-0.2.15/src/vidalia/config/Service.cpp --- vidalia-0.2.10/src/vidalia/config/Service.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/Service.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/config/Service.h vidalia-0.2.15/src/vidalia/config/Service.h --- vidalia-0.2.10/src/vidalia/config/Service.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/Service.h 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/config/ServiceList.cpp vidalia-0.2.15/src/vidalia/config/ServiceList.cpp --- vidalia-0.2.10/src/vidalia/config/ServiceList.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServiceList.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/config/ServiceList.h vidalia-0.2.15/src/vidalia/config/ServiceList.h --- vidalia-0.2.10/src/vidalia/config/ServiceList.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServiceList.h 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/config/ServicePage.cpp vidalia-0.2.15/src/vidalia/config/ServicePage.cpp --- vidalia-0.2.10/src/vidalia/config/ServicePage.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServicePage.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/config/ServicePage.h vidalia-0.2.15/src/vidalia/config/ServicePage.h --- vidalia-0.2.10/src/vidalia/config/ServicePage.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServicePage.h 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/config/ServiceSettings.cpp vidalia-0.2.15/src/vidalia/config/ServiceSettings.cpp --- vidalia-0.2.10/src/vidalia/config/ServiceSettings.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServiceSettings.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/config/ServiceSettings.h vidalia-0.2.15/src/vidalia/config/ServiceSettings.h --- vidalia-0.2.10/src/vidalia/config/ServiceSettings.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/ServiceSettings.h 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/config/TorrcDialog.cpp vidalia-0.2.15/src/vidalia/config/TorrcDialog.cpp --- vidalia-0.2.10/src/vidalia/config/TorrcDialog.cpp 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/TorrcDialog.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,165 @@ +/* +** This file is part of Vidalia, and is subject to the license terms in the +** LICENSE file, found in the top level directory of this distribution. If you +** did not receive the LICENSE file with this file, you may obtain it from the +** Vidalia source package distributed by the Vidalia Project at +** http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +** including this file, may be copied, modified, propagated, or distributed +** except according to the terms described in the LICENSE file. +*/ + +/* +** \file TorrcDialog.cpp +** \brief Torrc Dialog, contains the dialog for displaying and editing the torrc +** +** Implements the dialog for editing the torrc file inside Vidalia +*/ + +#include "TorrcDialog.h" +#include "Vidalia.h" + +#include + +void +TorHighlighter::highlightBlock(const QString &text) +{ + bool firstFormatted = false; + + for (int i = 0; i < text.length(); ++i) { + if(text.mid(i, 1) == " " and !firstFormatted) { + setFormat(0, i, QColor(2,71,105)); + setFormat(i, text.length() - 1, Qt::gray); + firstFormatted = true; + } else if (text.mid(i, 1) == "#") { + setFormat(i, text.length() - i, QColor(112,144,128)); + break; + } + } +} + +/** Constructor */ +TorrcDialog::TorrcDialog(QWidget *parent) +: QDialog(parent) +{ + /* Invoke the Qt Designer generated object setup routine */ + ui.setupUi(this); + TorHighlighter *highlighter = new TorHighlighter(ui.teditTorrc); + + /* Retrieve the global TorControl instance */ + tc = Vidalia::torControl(); + /* Load the torrc file to the TextEdit */ + loadTorrc(); + + /* Connect the accepted event from the dialog with the parsing and saving + * routine */ + connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(saveTorrc())); +} + +/** Destructor */ +TorrcDialog::~TorrcDialog() +{ + +} + +/** Gives a shallow parse phase to the settings to catch most errors + * and passes on the error messages from Tor if the setting's value isn't + * valid. It returns false if something went wrong. + * If there's a problem in the setting stage, changes to that point will + * remaind but won't be saved. */ +bool +TorrcDialog::parseAndSet(QString *errmsg) +{ + if(!errmsg) errmsg = new QString(""); + if(!tc || !tc->isConnected()) { + *errmsg = tr("Error connecting to Tor"); + return false; + } + + QString key, val; + QStringList parts, lines; + + if(ui.rdoAll->isChecked()) + lines = ui.teditTorrc->toPlainText().split('\n', QString::SkipEmptyParts); + else { + QString tmp = ui.teditTorrc->toPlainText(); + QTextCursor tcursor = ui.teditTorrc->textCursor(); + int start = tcursor.selectionStart(); + int end = tcursor.selectionEnd(); + tmp = tmp.mid(start, end - start).trimmed(); + if(tmp.isEmpty()) { + *errmsg = tr("Selection is empty. Please select some text, or check \"Apply all\""); + return false; + } + + lines = tmp.split('\n', QString::SkipEmptyParts); + } + /* First pass: parsing */ + int i = 0; + foreach(QString line, lines) { + i++; + line = line.trimmed(); + if(line.startsWith("#")) continue; // Skip commentaries + parts = line.split(" ", QString::SkipEmptyParts); + if(parts.count() < 2) { + *errmsg = tr("Error at line %1: \"%2\"").arg(i).arg(line); + return false; + } + } + /* Second pass: setting */ + QHash settings; + foreach(QString line, lines) { + line = line.trimmed(); + parts = line.split(" ", QString::SkipEmptyParts); + key = parts[0]; + parts.removeFirst(); + val = parts.join(" "); + settings.insert(key, val); + } + + if(!tc->setConf(settings, errmsg)) return false; + + return true; +} + +/** Loads the saved torrc file that Tor's using to the TextEdit widget for + * editing */ +void +TorrcDialog::loadTorrc() +{ + if(tc && tc->isConnected()) { + QString text = ""; + QFile file(tc->getInfo("config-file").toString()); + if(file.open(QFile::ReadOnly)) { + QTextStream in(&file); + QString line = ""; + do { + line = in.readLine(); + text += line + "\n"; + } while(!line.isNull()); + ui.teditTorrc->setText(text); + } else { + QMessageBox::critical(this, tr("Error"), tr("An error ocurred while opening torrc file")); + } + } +} + +/** Calls the parsing and setting routine, and if everything went right + * it saves the configuration to the torrc file through the SAVECONF control */ +void +TorrcDialog::saveTorrc() +{ + QString errmsg = ""; + if(tc && tc->isConnected()) { + if(!parseAndSet(&errmsg)) { + QMessageBox::critical(this, tr("Error"), errmsg); + return; + } + if(ui.chkSave->isChecked()) { + if(!tc->saveConf(&errmsg)) { + QMessageBox::critical(this, tr("Error"), errmsg); + return; + } + } + } + accept(); +} diff -Nru vidalia-0.2.10/src/vidalia/config/TorrcDialog.h vidalia-0.2.15/src/vidalia/config/TorrcDialog.h --- vidalia-0.2.10/src/vidalia/config/TorrcDialog.h 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/TorrcDialog.h 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,64 @@ +/* +** This file is part of Vidalia, and is subject to the license terms in the +** LICENSE file, found in the top level directory of this distribution. If you +** did not receive the LICENSE file with this file, you may obtain it from the +** Vidalia source package distributed by the Vidalia Project at +** http://www.torproject.org/projects/vidalia.html. No part of Vidalia, +** including this file, may be copied, modified, propagated, or distributed +** except according to the terms described in the LICENSE file. +*/ + +/* +** \file TorrcDialog.h +** \brief Torrc Dialog, contains the dialog for displaying and editing the torrc +*/ + +#ifndef _TORRCDIALOG_H +#define _TORRCDIALOG_H + +#include + +class TorHighlighter : public QSyntaxHighlighter { + public: + /** Default constructor */ + TorHighlighter(QTextEdit *te) : QSyntaxHighlighter(te) {} + /** Default deconstructor */ + ~TorHighlighter() {} + /** Hightlights commented lines and gives some format to + * the rest of the lines */ + void highlightBlock(const QString &text); +}; + +#include "ui_TorrcDialog.h" + +class TorControl; + +class TorrcDialog : public QDialog +{ + Q_OBJECT + +public: + /** Default constructor */ + TorrcDialog(QWidget *parent = 0); + /** Destructor */ + ~TorrcDialog(); + +private slots: + /** Saves the settings specified to the torrc file + * through the SAVECONF control */ + void saveTorrc(); + +private: + /** Loads the contents of the torrc file that Tor has loaded */ + void loadTorrc(); + /** Parses the options edited and sets them through SETCONF + * if they pass the parsing stage */ + bool parseAndSet(QString *errmsg = 0); + + Ui::TorrcDialog ui; /**< Qt Designer generated object. */ + /** TorControl object to comunicate with Tor */ + TorControl *tc; + +}; + +#endif // _TORRCDIALOG_H diff -Nru vidalia-0.2.10/src/vidalia/config/TorrcDialog.ui vidalia-0.2.15/src/vidalia/config/TorrcDialog.ui --- vidalia-0.2.10/src/vidalia/config/TorrcDialog.ui 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/TorrcDialog.ui 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,325 @@ + + + TorrcDialog + + + + 0 + 0 + 601 + 582 + + + + Editing torrc + + + + :/images/16x16/system-run.png:/images/16x16/system-run.png + + + + + + + + + + + Save settings. If unchecked it will only apply settings to the current Tor instance. + + + true + + + + + + + + + Cut + + + + :/images/22x22/editcut.png:/images/22x22/editcut.png + + + + 22 + 22 + + + + true + + + + + + + Copy + + + + :/images/22x22/edit-copy.png:/images/22x22/edit-copy.png + + + + 22 + 22 + + + + true + + + + + + + Paste + + + + :/images/22x22/editpaste.png:/images/22x22/editpaste.png + + + + 22 + 22 + + + + true + + + + + + + Undo + + + + :/images/22x22/edit_undo.png:/images/22x22/edit_undo.png + + + + 22 + 22 + + + + true + + + + + + + Redo + + + + :/images/22x22/edit_redo.png:/images/22x22/edit_redo.png + + + + 22 + 22 + + + + true + + + + + + + Select All + + + + :/images/22x22/edit_select_all.png:/images/22x22/edit_select_all.png + + + + 22 + 22 + + + + true + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + Apply all + + + true + + + + + + + Apply selection only + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + + + + buttonBox + rejected() + TorrcDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + btnUndo + clicked() + teditTorrc + undo() + + + 35 + 17 + + + 300 + 265 + + + + + btnRedo + clicked() + teditTorrc + redo() + + + 97 + 17 + + + 300 + 265 + + + + + btnSelectAll + clicked() + teditTorrc + selectAll() + + + 171 + 17 + + + 300 + 265 + + + + + btnCopy + clicked() + teditTorrc + copy() + + + 85 + 17 + + + 300 + 265 + + + + + btnPaste + clicked() + teditTorrc + paste() + + + 149 + 17 + + + 300 + 265 + + + + + btnCut + clicked() + teditTorrc + cut() + + + 29 + 17 + + + 300 + 265 + + + + + diff -Nru vidalia-0.2.10/src/vidalia/config/TorSettings.cpp vidalia-0.2.15/src/vidalia/config/TorSettings.cpp --- vidalia-0.2.10/src/vidalia/config/TorSettings.cpp 2009-06-27 01:57:05.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/TorSettings.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorSettings.cpp -** \version $Id: TorSettings.cpp 3901 2009-06-27 01:57:05Z edmanm $ ** \brief Settings used for starting and running Tor */ @@ -32,6 +31,8 @@ #define SETTING_TORRC "Torrc" #define SETTING_CONTROL_ADDR "ControlAddr" #define SETTING_CONTROL_PORT "ControlPort" +#define SETTING_SOCKET_PATH "ControlSocket" +#define SETTING_CONTROL_METHOD "ControlMethod" #define SETTING_AUTH_TOKEN "AuthToken" #define SETTING_TOR_USER "User" #define SETTING_TOR_GROUP "Group" @@ -41,9 +42,16 @@ #define SETTING_USE_RANDOM_PASSWORD "UseRandomPassword" #define SETTING_WARN_PLAINTEXT_PORTS "WarnPlaintextPorts" #define SETTING_REJECT_PLAINTEXT_PORTS "RejectPlaintextPorts" +#define SETTING_BOOTSTRAP "Bootstrap" +#define SETTING_BOOTSTRAP_FROM "BootstrapFrom" +#define SETTING_AUTOCONTROL "AutoControl" /** Default to using hashed password authentication */ #define DEFAULT_AUTH_METHOD PasswordAuth +/** Default control method */ +#define DEFAULT_CONTROL_METHOD "ControlPort" +/** Default socket path */ +#define DEFAULT_SOCKET_PATH "" /* Arguments we can pass to Tor on the command-line */ #define TOR_ARG_CONTROL_PORT "ControlPort" @@ -75,12 +83,17 @@ setDefault(SETTING_CONTROL_ADDR, "127.0.0.1"); setDefault(SETTING_CONTROL_PORT, 9051); setDefault(SETTING_AUTH_METHOD, toString(DEFAULT_AUTH_METHOD)); + setDefault(SETTING_CONTROL_METHOD, DEFAULT_CONTROL_METHOD); + setDefault(SETTING_SOCKET_PATH, DEFAULT_SOCKET_PATH); setDefault(SETTING_DATA_DIRECTORY, ""); setDefault(SETTING_CONTROL_PASSWORD, ""); setDefault(SETTING_USE_RANDOM_PASSWORD, true); setDefault(SETTING_WARN_PLAINTEXT_PORTS, QList() << 23 << 109 << 110 << 143); setDefault(SETTING_REJECT_PLAINTEXT_PORTS, QList()); + setDefault(SETTING_BOOTSTRAP, false); + setDefault(SETTING_BOOTSTRAP_FROM, ""); + setDefault(SETTING_AUTOCONTROL, false); } /** Applies any changes to Tor's control port or authentication settings. */ @@ -206,6 +219,34 @@ setValue(SETTING_CONTROL_PORT, port); } +/** Get the path for ControlSocket */ +QString +TorSettings::getSocketPath() const +{ + return value(SETTING_SOCKET_PATH).toString(); +} + +/** Set the path for ControlSocket */ +void +TorSettings::setSocketPath(const QString &path) +{ + setValue(SETTING_SOCKET_PATH, path); +} + +/** Get the current control method */ +ControlMethod::Method +TorSettings::getControlMethod() const +{ + return ControlMethod::fromString(localValue(SETTING_CONTROL_METHOD).toString()); +} + +/** Set the control method */ +void +TorSettings::setControlMethod(ControlMethod::Method method) +{ + setValue(SETTING_CONTROL_METHOD, ControlMethod::toString(method)); +} + /** Returns the plaintext (i.e., not hashed) control password used when * authenticating to Tor. */ QString @@ -388,3 +429,38 @@ .arg(base16_encode(key)); } +void +TorSettings::setBootstrap(bool enabled) +{ + setValue(SETTING_BOOTSTRAP, enabled); +} + +bool +TorSettings::bootstrap() const +{ + return value(SETTING_BOOTSTRAP).toBool(); +} + +void +TorSettings::setBootstrapFrom(const QString &from) +{ + setValue(SETTING_BOOTSTRAP_FROM, from); +} + +QString +TorSettings::bootstrapFrom() const +{ + return QDir::convertSeparators(value(SETTING_BOOTSTRAP_FROM).toString()); +} + +bool +TorSettings::autoControlPort() const +{ + return value(SETTING_AUTOCONTROL).toBool(); +} + +void +TorSettings::setAutoControlPort(const bool autoControl) +{ + setValue(SETTING_AUTOCONTROL, autoControl); +} diff -Nru vidalia-0.2.10/src/vidalia/config/TorSettings.h vidalia-0.2.15/src/vidalia/config/TorSettings.h --- vidalia-0.2.10/src/vidalia/config/TorSettings.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/TorSettings.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 TorSettings.h -** \version $Id: TorSettings.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Settings used for starting and running Tor */ @@ -66,6 +65,25 @@ quint16 getControlPort() const; /** Set the control port. */ void setControlPort(quint16 port); + + /** Get the path for ControlSocket */ + QString getSocketPath() const; + + /** Get the current control method */ + ControlMethod::Method getControlMethod() const; + + /** Returns true if Vidalia will get the ControlPort automatically from + * Tor */ + bool autoControlPort() const; + + /** Sets whether Vidalia should get the ControlPort from Tor */ + void setAutoControlPort(const bool auto); + + /** Set the control method */ + void setControlMethod(ControlMethod::Method method); + + /** Set the path for ControlSocket */ + void setSocketPath(const QString &path); /** Returns the plaintext (i.e., not hashed) control password used when * authenticating to Tor. */ @@ -107,6 +125,15 @@ * "tor --hash-password foo". */ static QString hashPassword(const QString &password); + /** Returns true if Vidalia needs to bootstrap the torrc file */ + bool bootstrap() const; + /** Enables or disables bootstrap */ + void setBootstrap(bool enabled); + /** Returns the path of the bootstrap torrc file */ + QString bootstrapFrom() const; + /** Sets the location of the bootstrap torrc file */ + void setBootstrapFrom(const QString &from); + private: /** Returns the AuthenticationMethod enum value for the string * description of the authentication method given in authMethod. */ diff -Nru vidalia-0.2.10/src/vidalia/config/UPNPControl.cpp vidalia-0.2.15/src/vidalia/config/UPNPControl.cpp --- vidalia-0.2.10/src/vidalia/config/UPNPControl.cpp 2009-05-31 00:12:09.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/UPNPControl.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 UPNPControl.cpp -** \version $Id: UPNPControl.cpp 3803 2009-05-31 00:12:09Z edmanm $ ** \brief Singleton object for interacting with UPNP device */ diff -Nru vidalia-0.2.10/src/vidalia/config/UPNPControl.h vidalia-0.2.15/src/vidalia/config/UPNPControl.h --- vidalia-0.2.10/src/vidalia/config/UPNPControl.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/UPNPControl.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 UPNPControl.h -** \version $Id: UPNPControl.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Singleton object for interacting with UPNP device */ diff -Nru vidalia-0.2.10/src/vidalia/config/UPNPControlThread.cpp vidalia-0.2.15/src/vidalia/config/UPNPControlThread.cpp --- vidalia-0.2.10/src/vidalia/config/UPNPControlThread.cpp 2010-04-09 23:18:46.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/UPNPControlThread.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 UPNPControlThread.cpp -** \version $Id: UPNPControlThread.cpp 4252 2010-04-09 23:18:46Z edmanm $ ** \brief Thread for configuring UPnP in the background */ diff -Nru vidalia-0.2.10/src/vidalia/config/UPNPControlThread.h vidalia-0.2.15/src/vidalia/config/UPNPControlThread.h --- vidalia-0.2.10/src/vidalia/config/UPNPControlThread.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/UPNPControlThread.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 UPNPControlThread.h -** \version $Id: UPNPControlThread.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Thread for configuring UPnP in the background */ diff -Nru vidalia-0.2.10/src/vidalia/config/UPNPTestDialog.cpp vidalia-0.2.15/src/vidalia/config/UPNPTestDialog.cpp --- vidalia-0.2.10/src/vidalia/config/UPNPTestDialog.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/UPNPTestDialog.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 UPNPTestDialog.cpp -** \version $Id: UPNPTestDialog.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Dialog that displays the progress of a UPnP configuration test */ diff -Nru vidalia-0.2.10/src/vidalia/config/UPNPTestDialog.h vidalia-0.2.15/src/vidalia/config/UPNPTestDialog.h --- vidalia-0.2.10/src/vidalia/config/UPNPTestDialog.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/UPNPTestDialog.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If ** you did not receive the LICENSE file with this file, you may obtain it ** from the Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to -** the terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 UPNPTestDialog.h -** \version $Id: UPNPTestDialog.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Dialog that displays the progress of a UPnP configuration test */ diff -Nru vidalia-0.2.10/src/vidalia/config/VidaliaSettings.cpp vidalia-0.2.15/src/vidalia/config/VidaliaSettings.cpp --- vidalia-0.2.10/src/vidalia/config/VidaliaSettings.cpp 2010-08-05 20:09:44.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/VidaliaSettings.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 VidaliaSettings.cpp -** \version $Id: VidaliaSettings.cpp 4375 2010-08-05 20:09:44Z edmanm $ ** \brief General Vidalia settings, such as language and interface style */ @@ -46,6 +45,7 @@ #define VIDALIA_REG_KEY "Vidalia" #endif +#define SETTING_ICON_PREF "IconDisplayPreference" /** Default Constructor */ VidaliaSettings::VidaliaSettings() @@ -83,6 +83,7 @@ setDefault(SETTING_LAST_UPDATE_CHECK, QDateTime()); setDefault(SETTING_USE_LOCAL_GEOIP_DATABASE, false); setDefault(SETTING_LOCAL_GEOIP_DATABASE, ""); + setDefault(SETTING_ICON_PREF, Both); } /** Gets the currently preferred language code for Vidalia. */ @@ -322,3 +323,35 @@ setValue(SETTING_LOCAL_GEOIP_DATABASE, databaseFile); } +/** Get the icon preference */ +VidaliaSettings::IconPosition +VidaliaSettings::getIconPref() +{ + return fromString(value(SETTING_ICON_PREF).toString()); +} + +/** Set the icon preference */ +void +VidaliaSettings::setIconPref(const IconPosition iconPref) +{ + setValue(SETTING_ICON_PREF, toString(iconPref)); +} + +QString +VidaliaSettings::toString(const IconPosition iconPref) +{ + switch(iconPref) { + case Dock: return "Dock"; + case Tray: return "Tray"; + default: return "Both"; + } +} + +VidaliaSettings::IconPosition +VidaliaSettings::fromString(QString iconPref) +{ + if(iconPref == "Dock") return Dock; + if(iconPref == "Tray") return Tray; + + return Both; +} diff -Nru vidalia-0.2.10/src/vidalia/config/VidaliaSettings.h vidalia-0.2.15/src/vidalia/config/VidaliaSettings.h --- vidalia-0.2.10/src/vidalia/config/VidaliaSettings.h 2010-08-05 20:09:44.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/VidaliaSettings.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 VidaliaSettings.h -** \version $Id: VidaliaSettings.h 4375 2010-08-05 20:09:44Z edmanm $ ** \brief General Vidalia settings, such as language and interface style */ @@ -34,6 +33,12 @@ Q_OBJECT public: + enum IconPosition { + Tray, + Dock, + Both, + }; + /** Default constructor. */ VidaliaSettings(); @@ -126,6 +131,14 @@ QString localGeoIpDatabase() const; /** Sets the file to use as a local GeoIP database. */ void setLocalGeoIpDatabase(const QString &databaseFile); + + /** Get the icon preference */ + IconPosition getIconPref(); + + /** Set the icon preference */ + void setIconPref(const IconPosition iconPref); + QString toString(const IconPosition iconPref); + IconPosition fromString(QString iconPref); }; #endif diff -Nru vidalia-0.2.10/src/vidalia/config/VSettings.cpp vidalia-0.2.15/src/vidalia/config/VSettings.cpp --- vidalia-0.2.10/src/vidalia/config/VSettings.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/VSettings.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 VSettings.cpp -** \version $Id: VSettings.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Stores and retrieves settings from Vidalia's configuration file. */ diff -Nru vidalia-0.2.10/src/vidalia/config/VSettings.h vidalia-0.2.15/src/vidalia/config/VSettings.h --- vidalia-0.2.10/src/vidalia/config/VSettings.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/config/VSettings.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 vsettings.h -** \version $Id: VSettings.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Stores and retrieves settings from Vidalia's configuration file. */ diff -Nru vidalia-0.2.10/src/vidalia/ControlPasswordInputDialog.cpp vidalia-0.2.15/src/vidalia/ControlPasswordInputDialog.cpp --- vidalia-0.2.10/src/vidalia/ControlPasswordInputDialog.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/ControlPasswordInputDialog.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlPasswordInputDialog.cpp -** \version $Id: ControlPasswordInputDialog.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Prompts the user to enter their control port password, and gives ** them the option to save or attempt to reset it. */ diff -Nru vidalia-0.2.10/src/vidalia/ControlPasswordInputDialog.h vidalia-0.2.15/src/vidalia/ControlPasswordInputDialog.h --- vidalia-0.2.10/src/vidalia/ControlPasswordInputDialog.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/ControlPasswordInputDialog.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 ControlPasswordInputDialog.h -** \version $Id: ControlPasswordInputDialog.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Prompts the user to enter their control port password, and gives ** them the option to save or attempt to reset it. */ diff -Nru vidalia-0.2.10/src/vidalia/CrashReporter.cpp vidalia-0.2.15/src/vidalia/CrashReporter.cpp --- vidalia-0.2.10/src/vidalia/CrashReporter.cpp 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/CrashReporter.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -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 @@ -39,7 +39,6 @@ /* ** \file CrashReporter.h -** \version $Id$ ** \brief General routines to install a Breakpad-based exception handler and ** set options related to launching the crash reporting application. */ @@ -51,8 +50,12 @@ #include #elif defined(Q_OS_MAC) #include +#include +#include #elif defined(Q_OS_LINUX) #include +#include +#include #elif defined(Q_OS_SOLARIS) #include #endif @@ -226,7 +229,10 @@ 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]; @@ -242,8 +248,7 @@ #if defined(Q_OS_WIN32) CloseHandle(hFile); #else - /* TODO: Implement for non-Windowses */ - /* close(hFile); */ + close(hFile); #endif return true; } @@ -271,6 +276,7 @@ * 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); @@ -284,7 +290,6 @@ return false; /* Launch the crash reporter with the name and location of the minidump */ -#if defined(Q_OS_WIN32) PROCESS_INFORMATION pi; STARTUPINFOW si; @@ -303,8 +308,29 @@ 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 -Nru vidalia-0.2.10/src/vidalia/CrashReporter.h vidalia-0.2.15/src/vidalia/CrashReporter.h --- vidalia-0.2.10/src/vidalia/CrashReporter.h 2009-06-23 22:53:29.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/CrashReporter.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 CrashReporter.h -** \version $Id$ ** \brief General routines to install a Breakpad-based exception handler and ** set options related to launching the crash reporting application. */ diff -Nru vidalia-0.2.10/src/vidalia/help/browser/HelpBrowser.cpp vidalia-0.2.15/src/vidalia/help/browser/HelpBrowser.cpp --- vidalia-0.2.10/src/vidalia/help/browser/HelpBrowser.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/browser/HelpBrowser.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 HelpBrowser.cpp -** \version $Id: HelpBrowser.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays a list of help topics and content */ diff -Nru vidalia-0.2.10/src/vidalia/help/browser/HelpBrowser.h vidalia-0.2.15/src/vidalia/help/browser/HelpBrowser.h --- vidalia-0.2.10/src/vidalia/help/browser/HelpBrowser.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/browser/HelpBrowser.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 HelpBrowser.h -** \version $Id: HelpBrowser.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays a list of help topics and content */ diff -Nru vidalia-0.2.10/src/vidalia/help/browser/HelpTextBrowser.cpp vidalia-0.2.15/src/vidalia/help/browser/HelpTextBrowser.cpp --- vidalia-0.2.10/src/vidalia/help/browser/HelpTextBrowser.cpp 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/browser/HelpTextBrowser.cpp 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 HelpTextBrowser.cpp -** \version $Id: HelpTextBrowser.cpp 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays an HTML-based help document */ diff -Nru vidalia-0.2.10/src/vidalia/help/browser/HelpTextBrowser.h vidalia-0.2.15/src/vidalia/help/browser/HelpTextBrowser.h --- vidalia-0.2.10/src/vidalia/help/browser/HelpTextBrowser.h 2009-04-28 20:28:01.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/browser/HelpTextBrowser.h 2011-10-07 19:16:56.000000000 +0000 @@ -3,14 +3,13 @@ ** LICENSE file, found in the top level directory of this distribution. If you ** did not receive the LICENSE file with this file, you may obtain it from the ** Vidalia source package distributed by the Vidalia Project at -** http://www.vidalia-project.net/. No part of Vidalia, including this file, -** may be copied, modified, propagated, or distributed except according to the -** terms described in the LICENSE file. +** http://www.torproject.org/projects/vidalia.html. 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 HelpTextBrowser.h -** \version $Id: HelpTextBrowser.h 3735 2009-04-28 20:28:01Z edmanm $ ** \brief Displays an HTML-based help document */ diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/bridges.html vidalia-0.2.15/src/vidalia/help/content/ar/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/ar/bridges.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,68 @@ + + + + + + +

مرحلات الجسر

+
+ + +

ما هي مرحلات الجسر؟

+

+يحاول بعض مزودي خدمة الانترنت (ISPs) منع المستخدمين من الوصول الى شبكة تور +عن طريق منع الاتصالات الى مرحلات تور المعروفة. مرحلات الجسر (او +الجسور للاختصار) هي مرحلات تساعد هؤلاء المستخدمين المراقبين على +الوصول الى شبكة تور. خلافا لمرحلات تور الاخرى, الجسور ليست مدرجة في نفس +الدلائل العامة كالمرحلات العادية. طالما انه لا توجد قائمة عامة كاملة لهم, +حتى اذا كان مزود خدمة الانترنت (ISP) الخاص بك يقوم بتصفية الاتصالات الى جميع +مرحلات تور المعروفة, فإنهم على الارجع غير قادرين على منع جميع الجسور. +

+ +
+

كيف أجد مرحل جسر؟

+

+هناك طريقتين رئيسيتين لمعرفة عنوان جسر: +

    +
  1. أطلب من أصدقائك تثبيت الجسور الخاصة لك
  2. +
  3. إستخدم بعضا من الجسور العامة
  4. +
+

+ +

+لإستخدام الجسور الخاصة, اطلب من اصدقائك تشغيل فيداليا وتور في منطقة غير +خاضعة لرقابة الإنترنت, ثم أنقر على مساعدة المستخدمين المراقبين في +صفحة إعدادات مرحل فيداليا. بعد ذلك ينبغي ان يرسلوا +لك سرا خط عنوان الجسر في أسفل صفحة المرحل الخاصة بهم. خلافا لتشغيل +مرحل مخرج, تشغيل مرحل جسر يمرر فقط البيانات الى ومن شبكة تور, حتى لا ينبغي +تعريض المشغل لأي إساءة استخدام شبكة الانترنت. +

+ +

+يمكنك إيجاد عناوين جسر عامة عن طريق زيارتك +https://bridges.torproject.org. الإجابات التي تحصل عليها من تلك +الصفحة سوف تتغير كل بضعة أيام, لذلك قم بالتحقق دورياً إذا أردت المزيد من +عناوين الجسر. طريقة أخرى للعثور على عناوين جسر عامة هو بإرسال رسالة +إلكترونية إلى bridges@torproject.org مع العنوان get bridges by +itself في داخل الرسالة. وذلك ، حتى يمكننا أن نجعل من الصعب على مهاجم ان +يتعلم الكثير من عناوين الجسر, يجب إرسال هذا الطلب من حساب بريد جوجل (Gmail). +

+ +

+تكوين أكثر من عنوان جسر واحد سوف يجعل اتصال تور الخاص بك أكثر استقرارا, في +حالة ان بعض الجسور أصبحت غير قابلة للوصول. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/config.html vidalia-0.2.15/src/vidalia/help/content/ar/config.html --- vidalia-0.2.10/src/vidalia/help/content/ar/config.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,178 @@ + + + + + + +

تهيئة فيداليا و تور

+
+ +

+فيداليا يسمح لك بتهيئة بعض الجوانب التي يعدلها العديد من مستخدمي فيداليا و +تور. كما أنه يتيح لك إنشاء وإدارة توصيلة تور حتى +تتمكن من مساعدة شبكة تور على النمو. +

+ + +

الإعدادات العامة

+

+الإعدادات على الصفحة العامةالتي يرغب في تبديلها المستخدمون تشمل معظم +الإعدادات. +

+
    +
  • ملف تور التنفيذي : هذا هو الملف القابل للتنفيذ الذي ستقوم بتشغيله +فيداليا عند اختيارابدأ من ايقونة تور. إذا كان عندك إصدارات متعددة من +تور ، فمن الممكن أن تختار الإصدار الذي ترغب في تشغيله بالنقر على +استعراض +
  • بدء التشغيل خيارات : هذا الإعداد يسمح بجعل تور يعمل تلقائيا عندما +يبدأ فيداليا. يمكنك أيضا تهيئة فيداليا بحيث يعمل عند بدء تشغيل جهاز الكبموتر +(ويندوز فقط). +
  • +
+ +
+

إعدادات الشبكة

+

+صفحة إعدادات الشبكة تتيح لك تغيير كيف يتصل برنامج تور بشبكة تور +المركزية. +

+
+ + +

إعدادات التبديلات

+

+انظر هذا الموضوع مساعدة للحصول على معلومات +مفصلة حول إنشاء وإدارة تبديلة تور. +

+ + +

إعدادات المظهر

+

+الإعدادات على صفحة المظهر تسمح لك بتخصيص مظهر فيداليا. +

+
    +
  • اللغة :تم ترجمة واجهة فيداليا إلى العديد من اللغات من قبل +المتطوعين. عندما يتم تشغيل فيداليا للمرة الأولى ، فإنه سيحاول تخمين لغة +الكمبيوتر التي تستخدمها حاليا. إذا كتن تخمين فيداليا غير صحيح ، أو إذا كنت +تفضل لغة مختلفة ، يمكنك اختيار لغة أخرى من مربع القائمة المنسدلة. سوف تحتاج +إلى إعادة تشغيل فيداليا مرة اخرى بعد تغيير لغة العرض لتصبح التغييرات نافذة +المفعول. +
  • +
  • النمط : في معظم الحالات ، سوف يقوم فيداليا باستخدام النمط الافتراضي +على جهازك . إذا كان لا يروقك النمط الافتراضي ، يمكنك اختيار نمط واجهة آخر من +مربع القائمة المنسدلة. +
  • +
+ +
+

إعدادات متقدمة

+

+ الصفحة المتقدمة عموما ينبغي أن يتم تعديل الإعدادات فقط من قبل ذوي +الخبرة على. +

+
    +
  • التحكم بالعنوان والمنفذ : بالمنفذ التحكم هو +المنفذ الذي يستخدم فيداليا لاجراء اتصال مع تور. هذا لا يحتاج إلى تغيير ما لم +يكن لديه تعارض مع خدمة أخرى على جهازك ، أو إذا كنت تستخدم فيداليا لمراقبة +ورصد اتصال لتور على جهاز آخر. +
  • +
  • التحكم بمصادقة المنافذيستخدم التحكم بمصادقة المنافذ لتقييد عدد +التطبيقات على جهازك التي باستطاعتها الاتصال و تهيئة تثبيت تور . أساليب +المصادقة المتوفرة: : +
      +
    • + لا مصادقة مطلوبة بلا --. الخيار بشدة استخدام هذا الخيار غير +مفضل. ويمكن لأي مستخدم على الكمبيوتر الخاص بك تهيئة تثبيت تور . +
    • +
    • + كلمة المرور (الافتراضي) -- إذا تم تحديد هذا الأسلوب ، يمكنك +تحديد كلمة السر التي يطلبها تور في كل مرة يتصل مستخدم على منفذ تور. إذا قام +فيداليا بتشغيل تور لك ، يمكن له توليد كلمة سر جديدة في كل مرة يبدأ تور عن +طريق التحقق من صندوق شكل عشوائي. +
    • +
    • + الكعكات كوكيز -- اذا تم اختيار التحقق من الكوكيز ، تور سينشئ ملف (أو +الكعكة) التي تحتوي على بايت عشوائي إلى دليل البيانات الخاصة به عند +بدء تشغيله. يجب أن يكون أي مستخدم يحاول الاتصال إلى منفذ تحكم تور قادرا على +توفير محتويات هذه الكعكة. +
    • +
    +
  • +
  • ملف تهيئة تور (اختياري) : يمكنك استخدام هذا الخيار لبدء +فيداليا تور باستخدام torrc محددة ، او ملف تهيئة تور. إذا تركت هذا +الحقل فارغا ، سوف يستخدم تور موقعه الافتراضي torrc. +
  • +
  • دليل بيانات تور (اختياري) : يمكنك تحديد الدليل الذي سيقوم +تور بحفظ البيانات الخاصة فيه، مثل المعلومات المخزنة مؤقتا عن تبديلة تور ، +مفاتيح تتابع تور ، وملفات التهيئة. إذا تركت هذا الحقل فارغا ، سوف يقوم تور +بوضع البيانات الخاصة به في الدليل الافتراضي. +
  • +
  • أذونات (اختياري ، غيرمتوفر على ويندوز) : إذا اخترت تشغيل +كمستخدم ، سيقوم تور بعمل setuid لهذا المستخدم عند بدء +تشغيله. إذا قمت بإختيار تشغيل كمجموعة ، سوف يقوم تور بعمل +setgid إلى هذه المجموعة عند بدء تشغيله. +
  • +
+ +
+

إعدادات الخدمة المخفية

+

+الخدمات المخفية تسمح لك بتقديم أي نوع من الخدمة على أساس برنامج التعاون +الفني ، على سبيل المثال خدمة النص المتشعب ، للآخرين دون الكشف عن عنوان +بروتوكول الإنترنت الخاص بك. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/index.html vidalia-0.2.15/src/vidalia/help/content/ar/index.html --- vidalia-0.2.10/src/vidalia/help/content/ar/index.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/index.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,41 @@ + + + + + + +

مساعدة فيداليا

+
+ +

+إختر موضوع مساعدة من الهيكل على اليسار أو أنقر على زر البحث في أعلى قائمة +المواضيع للبحث من خلال جميع مواضيع المساعدة المتاحة. +

+ +

+يمكنك استخدام زر إيجاد على شريط الأدوات أعلاه للبحث في موضوع مساعدة +خاص. +

+ +

+زر الصفحة الرئيسية أعلاه سوف يقوم بإرجاعك الى الصفحة الرئيسية هذه. +

+ +

+أنظر موضوع روابط مفيدة للحصول على بعض الاماكن التي +يمكنك زيارتها والعثور على مساعدة ومعلومات إضافية حول فيداليا وتور. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/links.html vidalia-0.2.15/src/vidalia/help/content/ar/links.html --- vidalia-0.2.10/src/vidalia/help/content/ar/links.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/links.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,85 @@ + + + + + + +

روابط مفيدة

+
+ +

فيداليا

+ + + + + + + + + + + + + + + + +
وnbsp;وnbsp;وnbsp;الصفحة الرئيسية + +https://www.torproject.org/vidalia/ +
وnbsp;وnbsp;وnbsp;ويكي (Wiki) + +http://trac.vidalia-project.net/wiki +
وnbsp;وnbsp;وnbsp;متعقّب الأخطاء + +http://trac.vidalia-project.net/report +
+ +

تور

+ + + + + + + + + + + + + + + + + + + + + +
وnbsp;وnbsp;وnbsp;الصفحة الرئيسية + https://www.torproject.org/ +
وnbsp;وnbsp;وnbsp;الأسئلة المتداولة (FAQ) + +https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ +
وnbsp;وnbsp;وnbsp;ويكي (Wiki) + +https://wiki.torproject.org/noreply/TheOnionRouter +
وnbsp;وnbsp;وnbsp;متعقّب الأخطاء + +https://bugs.torproject.org/flyspray +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/log.html vidalia-0.2.15/src/vidalia/help/content/ar/log.html --- vidalia-0.2.10/src/vidalia/help/content/ar/log.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,101 @@ + + + + + + +

سجل الاحداث

+
+ +يسمح لك سجل الاحداث بمشاهدة معلومات الحالة حول عملية تور قيد التشغيل. كل رسالة لديها خطورة مرتبطة بها, تتراوح من خطأ +(الأشد خطورة) الى تصحيح (مطوّل أكثر). أنظر قسم المساعدة في خطورات الرسالة للمزيد من المعلومات +

خطورات الرسالة

+

+خطورة رسالة ما تخبرك مدى أهمية الرسالة. رسالة خطورة أعلى عادة تشير إلى شيئا +خطأ في تور. الرسائل الأقل خطورة تظهر مرارا أثناء عمليات تور العادية وعادة لا +تحتاج إلى تسجيل. +

+ +

+خطورات الرسالة الممكنة, من الأشد خطورة الى الأقل خطورة, هي: +

+
    +
  • + خطأ: الرسائل التي تظهر عندما يكون هناك خطأ كبير جدا قد حدث وتور لا +يستطيع المواصلة. سوف تكون تلك الرسائل بارزة باللون الأحمر في سجل +الاحداث. +
  • +
  • + تحذير: الرسائل التي تظهر عندما يكون هناك خطأ قد حدث مع تور, لكنها +ليست كارثة وسوف يستمر تور بالتشغيل. سوف تكون تلك الرسائل بارزة باللون +الأصفر. +
  • +
  • + إنذار: الرسائل التي تظهر أحيانا أثناء تشغيل تور العادي ولا تعد +أخطاءا, ولكن قد لا تزال تهمك. +
  • +
  • + معلومات: الرسائل التي تظهر كثيرا أثناء تشغيل تور العادي و لا تسترعي +عادة إهتمام معظم المستخدمين. +
  • +
  • + تصحيح: الرسائل المطولة للغاية التي تكون في المقام الأول من الأهمية +للمطورين. عموما ينبغي عليك أن لا تقوم بتسجيل رسائل التصحيح إلا إذا كنت تعرف +ما تقوم به. +
  • +
+ +

+معظم المستخدمين ينبغي عليهم فقط تسجيل رسائل الخطأ, التحذير, و +الإنذار. +

+ +

+لإختيار أي من خطورات الرسالة التي ترغب في رويتها, إعمل الآتي: +

    +
  1. إفتح سجل الاحداث من قائمة شريط فيداليا.
  2. +
  3. أنقر على الإعدادات في الجزء العلوي من نافذة سجل الاحداث.
  4. +
  5. + ضع علامة على خطورات الرسالة التي ترغب في رؤيتها من مجموعة تصفية الرسالة على +اليسار وأزل العلامة عن خطورات الرسالة التي ترغب في إخفائها. +
  6. +
  7. أنقر على حفظ الإعدادات لتطبيق تصفية الرسالة الجديدة الخاصة بك.
  8. +
+

+ + +
+

تسجيل الدخول الى ملف

+

+يستطيع فيداليا ايضا حفظ رسائل السجل في ملف, إضافة الى تسجيلهم في نافذة سجل +الاحداث. لتمكين تسجيل الدخول إلى ملف، إتّبع الخطوات التالية : +

+ +
    +
  1. إفتح سجل الاحداث من قائمة شريط فيداليا.
  2. +
  3. أنقر على الإعدادات في الجزء العلوي من نافذة سجل الاحداث.
  4. +
  5. ضع علامة في الصندوق المسمى حفظ رسائل السجل الجديدة في الملف تلقائيا.
  6. +
  7. + إذا كنت ترغب في تغيير الملف الذي سيتم تسجيل الرسائل فيه, إما ان تكتب المسار +واسم الملف في مربع النص, أو أنقر على تصفح للانتقال إلى موقع لملف +السجل الخاص بك. +
  8. +
  9. أنقر على حفظ الإعدادات لحفظ وجهة السجل الخاص بك.
  10. +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/netview.html vidalia-0.2.15/src/vidalia/help/content/ar/netview.html --- vidalia-0.2.10/src/vidalia/help/content/ar/netview.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,171 @@ + + + + + + +

نظرة عامة على شبكة تور

+
+ +

+تسمح لك النظرة العامة على شبكة تور بمشاهدة المرحلات في شبكة تور والى أين +تتجه حركة المرور الخاصة بك. +

+ + +
+

نظرة عامة

+

+عندما تريد الاتصال بشكل مجهول الهوية من خلال تور (مثال: الاتصال بموقع), سوف +يقوم تور بإنشاء نفق, أو دائرة, من الاتصالات المشفرة من خلال سلسلة من +المرحلات على الشبكة. يتم إرسال حركة مرور التطبيق الخاص بك بعد ذلك +كتيار من خلال تلك الدائرة. لتحسين الكفاءة، يمكن ان تتشارك عدة تيارات +في نفس الدائرة. +

+ +
+

خريطة الشبكة

+

+خريطة الشبكة تتكون من خريطة العالم, مع بروز باللون الأحمر يشير إلى الموقع +الجغرافي للمرحّلات في شبكة تور. يتم رسم خطوط خضراء بين المرحّلات للإشارة إلى +مسار الدوائر التي أنشأها عميل تور خاصتك من خلال شبكة تور. +

+

+يمكنك تكبير المواقع في الخريطة بواسطة النقر على أزرار تكبير و +تصغير في شريط الأدوات. يمكنك ايضا التنقل على الخريطة بواسطة النقر +عليها تم سحبها الى اي اتجاه تريد تحريكها اليه. +

+

+يتم تحديد الموقع الجغرافي لمرحل تور عن طريق البحث عن عنوان IP للمرحل في +قاعدة بيانات الموقع الجغرافي لعنوان بروتوكول الانترنت (GeoIP) التي تم +إنشاؤها من قبل MaxMind وتقع على الخادم geoip.vidalia-project.net. +

+

+في منتصف صندوق الحوار, أسقل خريطة الشبكة, سترى قائمة من الدوائر الحالية +بالاضافة الى أي حركة مرور حاليا للتطبيق على تلك الدوائر. عند تحميل خريطة +الشبكة لأول مرة, فإنك على الاغلب سترى اتصال الى geoip.vidalia-project.net, +الذي يحدث عندما يقوم فيداليا بالبحث عن معلومات جغرافية لقائمة مرحلات تور. من +المهم ملاحظة أن هذا الطلب تم من خلال تور, بحيث لا يتم كشف موقعك لمرحل الموقع +الجغرافي لعنوان بروتوكول الانترنت (GeoIP).نتائج عمليات البحث سوف تكون محلية +مؤقتا من اجل الحد من الحمل على مرحلات الموقع الجغرافي لعنوان بروتوكول +الانترنت (GeoIP) لفيداليا. +

+ + +
+

حالة المرحّل

+

+على الجانب الأيسر من الخريطة، سترى قائمة المرحلات في شبكة تور. بجانب كل مرحل +هو رمز يشير إلى حالة المرحل. يلخص الجدول التالي رموز حالة المرحّل الممكنة: +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ المرحّل غير متصل او ببساطة لا يستجيب. +
+ المرحّل يدخل في سبات, بمعنى انه متصل, لكنه قد إستخدم الكثير من عرض +النطاق الترددي المسموح به من قبل المشغّل لفترة معينة. +
+ المرحّل متصل، لكن يدعم الحد الأدنى فقط من حركة المرور. +
+ المرحل متصل ويدعم حركة مرور أكبر من او= 20 كيلو بايت في الثانية. +
+ المرحل متصل ويدعم حركة مرور أكبر من او= 60 كيلو بايت في الثانية. +
+ المرحل متصل ويدعم حركة مرور أكبر من او= 400 كيلو بايت في الثانية. +
+

+

+جميع قيم عرض النطاق الترددي تقدر استناداً إلى الحد الأدنى من إما الإدخال أو +الإخراج المطّرد لعرض النطاق الترددي الاقصى خلال أية فترات من عشرة ثوان في +اليوم السابق. +

+ + +
+

تفاصيل المرحّل

+

+تظهر لوحة تفاصيل المرحّل على الجانب الايمن من الشاشة تعطيك تفاصيل حول +المرحّل أو المرحلات المختارة حاليا في قائمة +المرحّل. اذا قمت بإختيار دائرة او تيار في قائمة الدوائر والتيارات +الحالية الخاصة بك, سوف تظهر لك هذه اللوحة تفاصيل حول كل مرحل والذي من خلاله +تم إرسال حركة مرور خاصة بك حاليا. +

+

+الحقول التي قد تراها في اللوحة هي كما يلي (ملاحظة: ليست كل هذه الحقول +موجودة دائما): +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
موقعالموقع الجغرافي لمرحّل تور هذا.
عنوان بروتوكول الانترنت (IP)عنوان بروتوكول الإنترنت (IP) الذي يمكن ان يقوم مرحّل تور هذا من الوصول +إليه.
النظام الأساسي + معلومات نظام التشغيل وإصدار تور الذي يتم حاليا تشغيل هذا المرحل عليه. +
عرض النطاق الترددي + أقصى مقدار مقدّر لعرض النطاق الترددي حيث دعمت مرحّلات الدليل هذا المرحّل +مؤخرا. +
الجهوزية + طول الوقت الذي كان فيه المرحّل متوفرا, والذي يمكن استخدامه للمساعدة في تقدير +إستقرار هذا المرحّل. +
آخر تحديثتاريخ آخر تحديث لمعلومات هذا المرحل.
+

+ + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/running.html vidalia-0.2.15/src/vidalia/help/content/ar/running.html --- vidalia-0.2.10/src/vidalia/help/content/ar/running.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,104 @@ + + + + + + +

تشغيل تور

+
+ +

+يستطيع فيداليا مساعدتك بالتحكم بعملية تور الخاصة بك عن طريق السماح لك ببدء +وإيقاف تور, بالإضافة الى مراقبة حالة تور والسماح لك بمعرفة إذا خرج بشكل غير +متوقع. +

+ + +

بدء وإيقاف تور

+

+لبدء تور, +

    +
  1. إختر بدء من قائمة شريط فيداليا أو إضغط Ctrl+S
  2. . +
  3. + سوف تتحول أيقونة شريط فيداليا من اونيون (بصلة) ذات علامة X حمراء الى بصلة +خضراء اللون عند بدء تور. +
  4. +
+إذا كان فيداليا غير قادر على تشغيل تور, سوف يقوم فيداليا بعرض رسالة خطأ +تخبرك عن الخطأ الذي حدث. يمكنك أيضا إلقاء نظرة على
سجل +الاحداث لمعرفة إذا قام تور بإصدار المزيد من المعلومات حول ما الخطأ الذي +حدث. +

+ +

+لإيقاف تور, +

    +
  1. إختر إيقاف من قائمة شريط فيداليا أو إضغط Ctrl+T
  2. . +
  3. + سوف تتحول أيقونة شريط فيداليا من اونيون (بصلة) خضراء اللون الى بصلة رمادية +اللون مع علامة X حمراء عند إيقاف تور. +
  4. +
+إذا كان فيداليا غير قادر على إيقاف تور, سوف يقوم فيداليا بعرض رسالة خطأ +تخبرك عن الخطأ الذي حدث. يمكنك أيضا إلقاء نظرة على سجل +الاحداث لمعرفة ما إذا قام تور بإصدار المزيد من المعلومات حول ما الخطأ +الذي حدث. +

+ + +

مراقبة حالة تور

+

+يخبرك فيداليا عن حالة تور عن طريق عرض أيقونة في شريط النظام أو منطقة الإرساء +الخاصة بك. يبين الجدول التالي مختلف الدول المشار إليها بواسطة الرمز في منطقة +الإشعار للنظام الخاص بك: +

+

+ + + + + + + + + + + + + + + + + +
+ تم إيقاف تور. إختر بدء من قائمة فيداليا لبدء تور. +
+ تور يبدأ بالتشغيل. يمكنك ان تتحقق من سجل الاحداث +للحصول على معلومات عن حالة تور أثناء بدء تشغيله. +
+ تور قيد التشغيل. إذا أردت إيقاف تور, إختر إيقاف من قائمة فيداليا. سوف +يصدر تور رسائل معلومات الى سجل الاحداث أثناء تشغيله +إذا أردت رؤية ماذا يفعل. +
تور في طور عملية الإغلاق.
+

+ +

+اذا خرج تور بشكل غير متوقع, سوف يقوم فيداليا بتغيير لون أيقونته الى اونيون +(بصلة) داكن مع علامة X حمراء اللون وإظهار رسالة خطأ لإعلامك ما الخطأ الذي +حدث. يمكنك التحقق أيضا من سجل الاحداث للحصول على +المزيد من التفاصيل عن أية مشاكل واجهها تور قبل خروجه. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/server.html vidalia-0.2.15/src/vidalia/help/content/ar/server.html --- vidalia-0.2.10/src/vidalia/help/content/ar/server.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/server.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,239 @@ + + + + + + +

ضبط مرحّل تور

+
+ +تتألف شبكة تور من متطوعين من جميع أنحاء العالم الذين يتبرعون ببعض من عرض +النطاق الترددي الاضافي الخاص بهم عن طريق تشغيل مرحل تور. فيداليا يساعدك على +القيام بدورك عن طريق جعله أسهل لضبط المرحل الخاص بك. +

إعدادات أساسية

+

+إذا قررت أن تساعد شبكة تور في النموّ عن طريق تشغيل مرحلّ ، يمكنك إتّباع هذه +الخطوات للبدء: +

+
    +
  1. + إفتح صندوق حوار التكوين عن طريق إختيار إعدادات من قائمة الشريط +أو تفضيلات من شريط القائمة لنظامك الخاص في أنظمة ماكنتوش. +
  2. +
  3. إختر صفحة تكوين المرحّل .
  4. +
  5. + قرر اذا كنت تريد تشغيل مرحّل تور عادي أو مرحل جسر (Tor 0.2.0.8-alpha +أو أحدث). مرحلات الجسر تساعد مستخدمي تور المراقبين الذين منعوا من الوصول إلى +شبكة تور مباشرة. ضع علامة في الصندوق المسمّى حركة مرور مرحل لشبكة +تور اذا أردت تشغيل مرحل تور عادي أو مساعدة مستخدمين مراقبين للوصول +الى شبكة تور اذا اردت تشغيل مرحّل جسر. +
  6. +
  7. أدخل المعلومات التالية:
  8. +
      +
    • الاسم المستعار: الاسم الذي سوف يكون المرحّل الخاص بك معروفا على شبكة +تور. مثال على اسم مستعار لمرحل هو "مرحل فيداليا الخاص بي". +
    • +
    • معلومات الاتصال: عنوان البريد الالكتروني الخاص بك. سوف يتم استخدام +هذا العنوان فقط للاتصال بك في حال كان هناك تحديث أمني مهم لتور او حدث خطأ ما +يتعلق بالمرحّل الخاص بك. يمكنك ايضا شمل هوية مفتاح الخصوصية الجيدة جدا (PGP) +أو حارس خصوصية جنو (GPG) الخاص بك والبصمة. +
    • +
    • منفذ المرحل: المنفذ الذي من خلاله سوف يقوم المرحل الخاص بك بالاستماع +لحركة المرور من العملاء أو غيره من مرحّلات تور. +
    • +
    +
  9. + إذا كنت تريد تثبيت نسخة مطابقة لدليل تور للمرحّلات للآخرين على الشبكة يمكنك +وضع علامة في الصندوق المسمى نسخة مطابقة لدليل مرحّل. إذا لم يكن لديك +الكثير من عرض النطاق الترددي، أزل العلامة من هذا الصندوق. اذا قررت تثبيت +نسخة مطابقة لدليل المرحّل, تأكد بأن منفذ الدليل مختلف عن منفذ +المرحّل الذي ادخلته في الاعلى. مرحلات الجسر يجب ان تكون نسخة +مطابقة لدليل المرحّل. +
  10. +
+ +
+

حدود عرض النطاق الترددي

+

+تشغيل مرحل تور يمكن أن يستهلك كمية كبيرة من عرض النطاق الترددي; ومع ذلك، تور +يسمح لك بتحديد مقدار عرض النطاق الترددي الذي تريد ان تساهم به في شبكة +تور. يمكنك تشغيل مرحل, في حين لا تزال تحتفظ بإتصال الشبكة خاصتك التي يمكن +استخدامها لاستخدامك الخاص. +

+

+يجب عليك تحديد الخيار في صندوق القائمة المنسدلة التي تطابق أفضل سرعة اتصال +لديك. اذا قمت بإختيار مخصص, ستكون قادرا على تحديد الحدود الخاصة بك. +

+

الحدود المخصصة

+

+إن المعدل الاقصىهو مجموعة من البايتات المستخدمة لتلبية الطلبات خلال +فترات قصيرة من حركة مرور أعلى من معدل المتوسطالمحدد الخاص بك, لكن لا +تزال تحتفظ بالمتوسط على مدى فترة طويلة. معدل متوسط منخفض ولكن المعدل الأقصى +العالي يفرض المتوسط على المدى الطويل في حين لا يزال يسمح بالمزيد من الحركة +خلال أوقات الذروة إذا لم يتم التوصل الى المتوسط مؤخرا. اذا كان معدل المتوسط +الخاص بك هو نفس المعدل الاقصى الخاص بك, فإن تور سوف لن يتجاوز المعدل +المحدد أبدا. يجب ان يكون المعدل الاقصى الخاص بك دائما أكبر من أو +مساوي لمعدل المتوسط الخاص بك. +

+

+ان معدل المتوسط هو معدل عرض النطاق الترددي الاقصى طويل المدى المسموح +(على شكل كيلو بايتات في الثانية). على سبيل المثال, قد ترغب في اختيار 2 ميجا +بايت في الثانية (2048 كيلو بايت/الثانية), أو 50 كيلو بايت في الثانية (اتصال +كيبل متوسط السرعة). تور يتطلب 20 كيلو بايت في الثانية كحد أدنى لتشغيل +المرحّل. +

+

+من المهم تذكر ان تور يقيس عرض النطاق الترددي بالبايتات, وليس +بالبت. أيضا, سوف يقوم تور بالبحث فقط عن البايتات الواردة وليس البايتات +الصادرة. على سبيل المثال, اذا عمل المرحّل الخاص بك كنسخة مطابقة لدليل, قد +تقوم بإرسال بايتات صادرة أكثر من الواردة. اذا وجدت ان هذه هي الحالة وأنك تضع +عبئا كبيرا جدا على عرض النطاق الترددي الخاص بك, يجب عليك أن تنظر بعين +الاعتبارالى إزالة علامة التحديد في صندوق الاختيار المسمى نسخة مطابقة +لدليل مرحّل. +

+ +
+

سياسات المخرج

+

+سياسات المخرج تعطيك طريقة لتحديد أي نوع من الموارد على شبكة الإنترنت ترغب +بالسماح للمستخدمين الآخرين بالوصول إليها من مرحّل تور الخاص بك. تور يستخدم +القائمة الافتراضية لسياسات المخرج التي تقيد بعض الخدمات, مثل البريد لمنع +البريد المزعج وبعض منافذ مشاركة الملف الافتراضي للحد من إساءة استخدام شبكة +تور. +

+

+كل من صناديق الاختيار يمثل نوع من الموارد التي يمكنك السماح لمستخدمي تور من +الوصول اليها عن طريق المرحّل الخاص بك. إذا قمت بإزالة علامة التحديد في +الصندوق المجاور لنوع معين من الموارد, لن يسمح لمستخدمي تور بالوصول إلى ذلك +المورد من المرحل الخاص بك. اذا كان الصندوق المسمى خدمات أخرى متنوعة +قد تم وضع علامة تحديد فيه, سوف يتمكن مستخدمي تور من الوصول إلى الخدمات +الأخرى غير المشمولة في صناديق الاختيار الأخرى أو سياسة مخرج تور الافتراضية. +

+ +

+للتأكد من اكتماله, يعمل الجدول التالي على سرد أرقام منفذ معين ممثلة من كل +صناديق إختيار سياسة المخرج. عمود الوصف يصف الموارد التي سوف يسمح +لعملاء تور بالوصول اليها من خلال المرحّل الخاص بك, اذا تم وضع علامة في +الصندوق المرتبط. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
صندوق اختيارمنافذوصف
مواقع80طبيعي، تصفح الإنترنت غير مشفر
مواقع آمنة (SSL)443تصفح الإنترنت مشفر
استرداد البريد (POP, IMAP)110, 143, 993, 995تنزيل البريد الإلكتروني (لا يسمح بإرسال البريد الإلكتروني)
التراسل الفوري (IM)703, 1863, 5050, 5190, 5222, 5223, 8300, 8888تطبيقات التراسل الفوري مثل MSN Messenger, AIM, ICQ, و Jabber
دردشة مرحّل الانترنت (IRC)6660-6669, 6697, 7000-7001عملاء وخوادم دردشة مرحّل الانترنت (IRC)
متنوعة. خدمات أخرى*جميع التطبيقات الأخرى التي تكون غير مشمولة من قبل صناديق الإختيار السابقة
+ +

+إذا كنت لا تريد السماح لمستخدمي تور الآخرين من إجراء اتصالات خارج شبكة تور +من المرحّل الخاص بك, يمكنك إزالة التحديد عن جميع صناديق الاختيار. حتى اذا +قمت بإزالة التحديد عن جميع صناديق الاختيار, سوف يبقى المرحّل الخاص بك مفيدا +لشبكة تور. سوف يقوم المرحّل الخاص بك بالسماح لمستخدمي تور الآخرين بالاتصال +بشبكة تور وسوف يساعد حركة مرور المرحّل بين مرحّلات تور الأخرى. +

+

+اذا إخترت تشغيل مرحل جسر, فإن علامة سياسات المخرج سوف تصبح رمادية +اللون, حيث ان مرحلات الجسر لا تسمح بإتصالات المخرج. تستخدم الجسور فقط من قبل +عملاء تور للاتصال بشبكة تور. +

+ + +
+

إعادة توجيه المنفذ

+

+العديد من المستخدمين المنزليين يتصلون بالإنترنت عبر الراوتر الذي يسمح +لعدة أجهزة كمبيوتر على شبكة الاتصال المحلية بالمشاركة في نفس اتصال +الإنترنت. بعض المستخدمين قد يكونون أيضا خلف حماية جدار الحماية الذي +يحظر الاتصالات الواردة إلى جهازك الكمبيوتر من أجهزة الكمبيوتر الأخرى على +شبكة الإنترنت. اذا اردت تشغيل مرحّل تور, مع ذلك, يجب ان يكون لدى عملاء +ومرحّلات تور الآخرين القدرة على الاتصال بمرحّلك الخاص من خلال جهاز التوجيه +(الراوتر) الخاص بك أو جدار الحماية. +

+ +

+لجعل المرحّل الخاص بك قابل للوصول من قبل العامة, يجب على جهاز التوجيه +(الراوتر) أو جدار الحماية الخاص بك معرفة أي المنافذ التي يسمح بها من خلال +جهازك الكمبيوتر عن طريق ضبط ما يعرف بإعادة توجيه المنفذ. إعادة توجيه +المنفذ يعمل على تكوين جهاز التوجيه (الراوتر) او جدار الحماية "لإعادة توجيه" +جميع الاتصالات لمنافذ معينة على جهاز التوجيه (الراوتر) او جدار الحماية الخاص +بك الى منافذ محلية على جهازك الكمبيوتر. +

+ +

+اذا قمت بتحديد الصندوق المسمّى محاولة تكوين إعادة توجيه المنفذ +تلقائيا, سوف يقوم فيداليا بمحاولة ضبط إعادة توجيه المنفذ تلقائيا على +اتصال الشبكة المحلية الخاص بك بحيث يستطيع عملاء تور الآخرين من الاتصال +بمرحّلك الخاص. ليست كل أجهزة التوجيه (الراوتر) تدعم إعادة توجيه المنفذ +التلقائي, مع ذلك. يمكنك استخدام زر إختبار بجوار صندوق الاختيار +لمعرفة اذا كان فيداليا قادرا على ضبط إعادة توجيه المنفذ تلقائيا لك. +

+ +

+اذا وجد زر الإختبار ان فيداليا غير قادر على ضبط إعادة توجيه المنفذ +لك, قد تحتاج إلى تمكين هذه الميزة على جهاز التوجيه (الراوتر) الخاص بك أو ضبط +إعادة توجيه المنفذ يدويا. بعض أجهزة شبكة الاتصال لديها ميزة تدعى +Universal Plug-and-Play (UPnP). إذا كان يمكنك الوصول إلى واجهة جهاز +التوجيه (الراوتر) الإداري, عليك أن تبحث عن خيار لتمكين ميزة (UPnP). الواجهة +الادارية لمعظم أجهزة التوجيه (الراوتر) يمكن الوصول اليها عن طريق فتح http://192.168.0.1 أو http://192.168.1.1 في متصفّح الويب الخاص +بك. عليك الرجوع الى دليل جهاز التوجيه (الراوتر) الخاص بك للمزيد من +المعلومات. +

+ +

+اذا إحتجت الى ضبط إعادة توجيه المنفذ يدويا, فإن الموقع +portforward.com لديه تعليمات عن كيفية ضبط إعادة توجيه المنفذ لأنواع +عديدة من أجهزة التوجيه (الراوترات) وجدران الحماية. كحد أدنى, سوف تحتاج الى +إعادة توجيه منفذ المرحّل الخاص بك, والذي افتراضياته الى المنفذ 443 +على ويندوز و 9001 على جميع أنظمة التشغيل الأخرى. اذا قمت ايضا بتحديد صندوق +الإختيار المسمّى نسخة مطابقة لدليل المرحّل, فإنك سوف تحتاج ايضا الى +إعادة توجيه منفذ الدليل الخاص بك. يتم ضبط منفذ الدليل الى +المنفذ 9030 افتراضيا على جميع أنظمة التشغيل. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/services.html vidalia-0.2.15/src/vidalia/help/content/ar/services.html --- vidalia-0.2.10/src/vidalia/help/content/ar/services.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/services.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,134 @@ + + + + + + +

الخدمات الخفية

+
+ +ملاحظة: دعم الخدمات الخفية هو جديد في فيداليا. يجب أن تتوقع إحتوائه على +أخطاء وبعضها ربما يفسد تكوين الخدمة الخفية الخاصة بك. لذا، لا تعتمد عليه أو +بالأحرى، لا تقم بلومنا إذا حدث خطأ ما. اذا وجدت أخطاء أو تعليقات على هذه +الميزة الجديدة، يرجى إعلامنا! نحن بحاجة إلى ملاحظاتك. +

ما هي الخدمة الخفية؟

+

+ تسمح لك الخدمات الخفية بتقديم أي نوع من الخدمة على أساس برنامج التعاون +الفني (TCP), على سبيل المثال: خدمة بروتوكول نقل النص التشعبي (HTTP) للآخرين +بدون الكشف عن عنوان IP الخاص بك. البروتوكول الذي يقوم بتوفير الخدمة الخفية +يكون مبني على رأس الدوائر نفسها التي يستخدمها تور للتصفح المجهول وتقريبا +لديه خصائص غير مكشوفة مشابهة. +

+ +

+للمزيد من المعلومات حول الخدمة الخفية قد تحتاج لقراءة المادة 5 لصفحة تصميم +تور (doc/design-paper/tor-design.pdf) أو مواصفات التعيين +(doc/spec/rend-spec.txt). +

+ +
+

كيف يمكنني تقديم خدمة خفية؟

+

+توفير خدمة خفية يتكون على الاقل من خطوتين: +

    +
  1. ثبت خادم الويب محليا (أو خادم لمهما كانت الخدمة التي ترغب في توفيرها, على +سبيل المثال: دردشة مرحّل الإنترنت IRC) للاستماع للطلبات المحلية.
  2. +
  3. قم بتكوين الخدمة الخفية الخاصة بك، بحيث تأتي طلبات مرحلات تور من مستخدمي تور +إلى الخادم المحلي الخاص بك.
  4. +
+هناك برنامج تعليمي جيد على موقع تور +(https://www.torproject.org/docs/tor-hidden-service.html) الذي يصف هذه +الخطوات بتفصيل أكثر. +

+ +
+

ما هي البيانات التي أحتاج لتوفيرها؟

+

+جدول الخدمات يحتوي على خمسة أعمدة تحتوي على بيانات عن الخدمات الخفية +المكوّنة: +

    +
  • عنوان اونيون (مولّد): عنوان الخدمة (أو اونيون) يتم إنشاؤه بواسطة تور بشكل +فريد لتحديد الخدمة. أعطي عنوان اونيون هذا للأشخاص الذين يكونون قادرين على +الوصول إلى خدمتك. يمكنك إستخدام زر "نسخ الى الحافظة" لذلك لتجنب الأخطاء +المطبعية. إذا كنت قد أنشأت خدمة خفية للتو, يخبر الحقل "[تم إنشاؤه بواسطة +تور]"; من أجل جعله يعرض عنوان اونيون الحقيقي, تحتاج إلى حفظ التكوين الخاص بك +وإعادة فتح نافذة الإعدادات.
  • +
  • المنفذ الظاهري (مطلوب): هذا هو منفذ بروتوكول التعاون الفني (TCP) الذي سوف +يحتاج العملاء إلى معرفته من أجل الوصول إلى الخدمة الخاصة بك. عادة, سوف تريد +استخدام منفذ الخدمة المعينة هنا, على سبيل المثال: المنفذ 80 لبروتوكول نقل +النص التشعبي (HTTP). لاحظ أن المنفذ الظاهري عادة لا علاقة له بإعدادات جدار +الحماية, لأنه يستخدم تور داخليا فقط.
  • +
  • الهدف (إختياري): عادة, تريد ان يقوم تور بترحيل طلبات الاتصال للمستضيف المحلي +على منفذ مختلف عن الذي قمت بتحديده في "المنفذ الظاهري". لذلك، يمكنك تحديد +هدف يتألف من العنوان الفعلي والمنفذ الذي يتم توجيه الطلبات إلى الخدمة الخفية +الخاصة بك اليه, على سبيل المثال, الى المستضيف المحلي:5222 (أو على أي منفذ +يستمع اليه الخادم الخاص بك). اذا لم تقم بتحديد أي هدف, سوف يقوم تور بإعادة +توجيه الطلبات الى المنفذ المحدد في "المنفذ الظاهري" على المستضيف المحلي.
  • +
  • دليل الخدمة (مطلوب): يحتاج تور إلى تخزين بعض ملفات الخدمة الخفية المحددة في +دليل منفصل, على سبيل المثال: مفتاح خاص و ملف إسم مستضيف يحتوي على عنوان +اونيون. ينبغي لهذا الدليل أن يكون مختلفا عن دليل يحتوي على المحتوى الذي يوفر +الخدمة. المكان الأمثل لدليل الخدمة يمكن أن يكون دليل فرعي في دليل بيانات +تور. -- لاحظ أنه لا يمكنك تغيير الدليل لخدمة قيد التشغيل (لن تكون هناك فائدة +كبيرة للسماح لهذا, لأنه ليس من المفترض ان يقوم ڤيداليا بنقل الدلائل على +القرص الصلب الخاص بك!). اذا اردت نقل خدمة خفية الى دليل آخر, يرجى المتابعة +على النحو التالي: إبدأ عن طريق تعطيل الخدمة في فيداليا وحفظ التكوين. ثم أنقل +الدليل على القرص الصلب إلى مكان جديد. أخيرا, قم بتغيير الدليل في فيداليا إلى +الموقع الجديد, مكّن الخدمة مرة أخرى، وإحفظ التكوين الجديد.
  • +
  • ممكّن: إذا كان صندوق الاختيار هذا معطّلا، لن يقوم فيداليا بتكوين الخدمة +الخفية المعطى في تور. يمكن ان يكون هذا مفيدا لحفظ تكوين خدمة غير مستخدمة +حاليا للاستخدام في وقت لاحق. يتم تخزين كافة الخدمات غير الممكنّة في ملف +تكوين فيداليا المحدد vidalia.conf.
  • +
+

+ +
+

ما هي الأزرار الخمسة؟

+

+

    +
  • إضافة خدمة: إنشاء تكوين خدمة فارغ جديد.
  • +
  • إزالة خدمة: يزيل بشكل دائم تكوين خدمة خفية. (إذا كنت تريد إزالة خدمة مؤقتا، +قم بإزالة التحديد من صندوق اختيار التمكين).
  • +
  • النسخ الى الحافظة: نسخ عنوان اونيون إلى الحافظة، بحيث يمكنك اعلانه لمن سيكون +قادرا على استخدام الخدمة الخاصة بك.
  • +
  • التصفّح: يتيح لك التصفّح للعثور على دليل الخدمة الخفية المحلية.
  • +
+

+ +
+

كيف يمكنني تكوين إعدادات خدمة خفية متقدمة؟

+

+تور يسمح بتكوين إعدادات أكثر تحديدا لخدمات خفية، على سبيل المثال: الإجبار +على إستخدام (أو تجنب) عقد معينة كنقاط مقدمة, أو توفير منافذ ظاهرية متعددة +لنفس الخدمة. +

+ +

+ومع ذلك، قررنا تبسيط الأمور في فيداليا وتوفير الإعدادات الأكثر شيوعا +فقط. اذا أردت تكوين إعدادات متقدمة, فأنت بحاجة للقيام بذلك في ملف تورك +(torrc) تور. فيداليا لن يقوم بإزالة هذه الإعدادات حتى عندما تقوم بتعديل +الخدمات الخفية الخاصة بك. إذا قمت بتحديد أكثر من منفذ ظاهري، سوف يتم عرض +الاول فقط ويكون قابل للتعديل. +

+ +
+

كيف يستطيع فيداليا مساعدتي للوصول الى خدمات خفية أخرى؟

+

+بدون مانع على الإطلاق, ليست هناك حاجة للقيام بذلك. إذا كنت تريد الوصول إلى +خدمة خفية أخرى, اكتب عنوان اونيون للخدمة في المتصفّح الخاص بك (أو تطبيق +العميل المناسب إذا لم تكن خدمة ويب), ويقوم تور بالبقية عنك. ليست هناك حاجة +لتكوين تور على وجه التحديد لذلك. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/ar/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/ar/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/ar/troubleshooting.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/ar/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,149 @@ + + + + + + +

إستكشاف الأخطاء وإصلاحها

+
+ +المدرجة أدناه هي بعض من المشاكل أو الأسئلة الأكثر شيوعا لدى الناس أثناء +تشغيل تور. إذا لم تتمكن من العثور على أي شيء حول مشكلة معينة تواجهك, راجع +موقعنا على شبكة الإنترنت على www.vidalia-project.net للمزيد من الدعم +والمعلومات.
+

لا أستطيع تشغيل تور

+

+السبب الأكثر احتمالا أن فيداليا لا يستطيع تشغيل تورهو لأن فيداليا يبحث عن +تثبيت تور الخاص بك في الدليل الخاطئ. يمكنك إخبار فيداليا عن موقع تور عن طريق +تحديث خيار تور التنفيذي في إعدادات +التكوين العامة. +

+

+السبب المحتمل الآخر وراء عدم إمكانية تشغيل تور هو أن هناك عملية تور أخرى قيد +التشغيل. تحقق من قائمة العمليات قيد التشغيل الخاصة بك وأوقف عملية تور +السابقة، اذا وجد. ثم، حاول تشغيل تور مرة أخرى. +

+

+إذا لم يساعد ذلك, تحقق من سجل الرسالة الخاص بك لمعرفة +اذا قام تور بطباعة أية معلومات حول الأخطاء التي حصلت أثناء محاولة التشغيل. +

+ + +

لا يستطيع فيداليا الاتصال بتور

+

+يقوم فيداليا بإدارة تور عن طريق الاتصال معه عبر منفذ التحكملتور. +

+

+السبب الأكثر شيوعا وراء عدم إستطاعة فيداليا الاتصال بتور هو ان تور بدأ, لكن +واجهه خطأ وخرج على الفور. ينبغي عليك التحقق من سجل +الرسالة الخاص بك لمعرفة اذا كان تور أبلغ عن أي أخطاء في الوقت الذي بدأ +به. +

+

+إذا كان تور يستمع على منفذ مختلف عن الذي توقّعه فيداليا, سوف يكون فيداليا +غير قادر على الاتصال بتور. نادرا ما تحتاج إلى تغيير هذا الإعداد, لكن إذا +كانت هناك خدمة أخرى تعمل على جهازك تتعارض مع منفذ تحكم تور, سوف تحتاج الى +تحديد منفذ آخر. يمكنك تغيير هذا الاعداد في اعدادات التكوين المتقدمة لفيداليا. +

+ + +

لماذا يسألني فيداليا عن "كلمة مرور التحكم"؟

+

+يتفاعل فيداليا مع برنامج تور عن طريق "منفذ التحكم" لتور. يتيح منفذ التحكم +لفيداليا بتلقي تحديثات الحالة من تور, طلب هوية جديدة, تكوين اعدادات تور, +إلخ. في كل مرة يقوم فيداليا بتشغيل تور, يقوم بضبط كلمة مرور عشوائية لمنفذ +تحكم تور لمنع التطبيقات الأخرى من الاتصال بمنفذ التحكم وإحتمالية كشف حالة +التخفّي الخاصة بك. +

+ +

+عادة تحدث عملية توليد وضبط كلمة مرور التحكم العشوائية هذه في الخلفية. هناك +ثلاث حالات شائعة، رغم ذلك, حيث قد يطالبك فيداليا بكلمة مرور: +

+ +
+ + + +

خروج تور بشكل غير متوقع

+

+إذا خرج تور مباشرة بعد محاولة بدء تشغيل, من المرجح أن يكون لديك عملية تور +أخرى قيد التشغيل. تحقق من سجل الرسالةلترى اذا كان أي +من الرسائل القليلة السابقة في القائمة بارزة باللون الأصفر وتحتوي على رسالة +مشابهة للتالي: +

+
+connection_create_listener(): Could not bind to 127.0.0.1:9050: Address already in use. 
+Is Tor already running?
+
+

+اذا وجدت رسالة خطأ مثل الرسالة أعلاه, سوف تحتاج إلى إيقاف عملية تور الأخرى +قبل بدء واحدة جديدة مع فيداليا. في ويندوز, أنت بحاجة الى البحث عن +tor.exe في مدير المهام الخاص بك. في معظم أنظمة التشغيل الأخرى, الأمر +ps يمكن أن يساعدك في العثور على عملية تور الاخرى. +

+

+اذا تم تشغيل تور بنجاح لفترة قصيرة (وهذا, أكثر من بضع ثواني), عندها ينبغي +عليك التحقق من سجل الرسالة للحصول على معلومات حول أية +أخطاء إختبرها تور قبل خروجه. مثل هذه الأخطاء سوف تكون بارزة إمّا باللون +الأحمر أو الأصفر. +

+ + +

لا يستطيع فيداليا إيقاف تور

+

+اذا لم يستطع فيداليا إيقاف تور, يجب عليك التحقق من سجل +الرسالة الخاص بك لمعرفة اذا كان تور أبلغ عن أي أخطاء أثناء محاولته +الخروج. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/bridges.html vidalia-0.2.15/src/vidalia/help/content/bms/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/bms/bridges.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,76 @@ + + + + + + +

Bridge Relays

+
+ + +

bridge relays ေတြဆိုတာ ဘာလဲ?

+

+အခ်ိဳ႕ေသာ Internet Service Providers (ISPs) ေတြဟာ Tor relays မ်ားကို +ဆက္သြယ္မႈအား ပိတ္ဆို႔ျခင္းအားျဖင့္ Tor ကြန္ယက္ကို အသံုးျပဳသူေတြ ခ်ိတ္ဆက္မႈမွ +ကာကြယ္ရန္ ၾကိဳးစားၾကပါတယ္။ Bridge relays (သို႔မဟုတ္ အတိုေကာက္bridges +)ေတြဟာ relays မ်ား ျဖစ္ၾကျပီး Tor ကြန္ယက္ကို ခ်ိတ္ဆက္ဖို႔ ဆင္ဆာ အျဖတ္ခံရတဲ့ +အသံုးျပဳသူေတြကို ကူညီေပးပါတယ္။ Tor relays ေတြနဲ႔ မတူတာက ပံုမွန္ relays +မ်ားလို bridges ေတြဟာ အမ်ားသူငါဆိုင္ရာ လမ္းညႊန္စာရင္းတြင္ မပါဝင္ေပ။ +ျပီးျပည့္စံုေသာ အမ်ားသူငါဆိုင္ရာ စာရင္းဟူ၍ မရွိေပ။ အကယ္၍ သင္၏ ISP က +၎တို႔သိေသာ Tor relays မ်ားအားလံုးကို စီစစ္လိုက္တယ္ ဆိုရင္ေတာင္ bridges +အားလံုးကို ပိတ္ဆို႔ဖို႔ေတာ့ မျဖစ္ႏိုင္ေပ။ +

+ +
+

bridge relay ကိုဘယ္လိုရွာေဖြရမလဲ?

+

+bridge လိပ္စာႏွင့္ပတ္သက္ျပီး ေလ့လာရန္ အဓိက နည္းလမ္း ႏွစ္သြယ္ရွိပါတယ္။ : +

    +
  1. သင့္အတြက္ သီးသန္႔ bridges မ်ားကို run ရန္ သူငယ္ခ်င္းအခ်ိဳ႕ရွာပါ။
  2. +
  3. အမ်ားသူငါဆိုင္ရာ bridges အခ်ိဳ႕ကို သံုးပါ။
  4. +
+

+ +

+သီးသန္႔ bridges မ်ားကို သံုးရန္ အင္တာနက္ ဆင္ဆာမျဖတ္ထားေသာ နယ္နမိတ္ထဲမွာ +Vidalia ႏွင့္ Tor ကို သူငယ္ခ်င္းမ်ားကို run ခိုင္းပါ။ျပီးလွ်င္ Vidalia ၏ Relay settings page မွာ ဆင္ဆာျဖတ္ေတာက္ခံထားရေသာ +အသံုးျပဳသူမ်ားကို ကူညီပါ ဆိုတာကို ႏွိပ္ပါ။ ထို႔ေနာက္ Relay page ၏ +ေအာက္ေျခရွိ Bridge address လိုင္းကို သင့္ထံသို႔ သီးသန္႔ေပးပို႔ +ခိုင္းရပါမယ္။ ရွိျပီးသား relay ႏွင့္ run ပံုခ်င္း မတူသည္မွာ bridge relay သည္ +Tor ကြန္ယက္၏ အသြားအျပန္လမ္းေၾကာင္းတြင္ အခ်က္အလက္မ်ား ျဖတ္သန္းရံုမွ်သာ run +ျခင္းေၾကာင့္ျဖစ္သည္။ ထို႔ေၾကာင့္ ေစာဒကတက္မႈ တစ္စံုတစ္ရာကို operator +ျမင္ေအာင္ မျပသင့္ေပ။ +

+ +

+အမ်ားသူငါဆိုင္ရာ bridge လိပ္စာမ်ားကို https://bridges.torproject.org +ကိုသြားေရာက္၍ ရွာေဖြႏိုင္သည္။ ၎စာမ်က္ႏွာမွ သင္ရရွိေသာ အေျဖမ်ားသည္ +ေန႔စဉ္နဲ႔အမွ် ေျပာင္းလဲ ေနလိမ့္မည္။ အကယ္၍ bridge လိပ္စာ မ်ားကို သင္ပိုမို +လိုအပ္တယ္ဆိုရင္ အခါအားေလ်ာ္စြာ ျပန္လည္စစ္ေဆးပါ။ အမ်ားသူငါဆိုင္ရာ bridge +လိပ္စာမ်ားကို ရွာေဖြရန္ အျခားေသာ နည္းလမ္းမွာ ေမးလ္၏ စာကိုယ္တြင္ get +bridges ဟုထည့္သြင္းျပီး bridges@torproject.org +သို႔ေပးပို႔ႏိုင္ပါတယ္။ ဘယ္လိုပဲျဖစ္ျဖစ္ တိုက္ခုိက္သူေတြ bridge လိပ္စာမ်ားကို +ေလ့လာဖို႔ ခက္ခဲေအာင္ ကၽြန္ေတာ္တို႔က ျပဳလုပ္ႏိုင္ပါတယ္။ Gmail အေကာင့္မွ +ေတာင္းဆိုမႈမ်ားကိုေတာ့ မျဖစ္မေန ေပးပို႔ရမွာပါ။ +

+ +

+အကယ္၍ အခ်ိဳ႕ေသာ bridges မ်ားသည္ မေရာက္ရွိႏိုင္ျဖစ္ခဲ့လွ်င္ bridge လိပ္စာ +တစ္ခုထက္ပိုမို ျပင္ဆင္ထည့္သြင္းထားျခင္းသည္ Tor သို႔ခ်ိတ္ဆက္မႈကို ပိုမို +တည္ျငိမ္ေစမွာ ျဖစ္ပါတယ္။ +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/config.html vidalia-0.2.15/src/vidalia/help/content/bms/config.html --- vidalia-0.2.10/src/vidalia/help/content/bms/config.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,206 @@ + + + + + + +

Vidalia ႏွင့္ Tor ကိုျပင္ဆင္ျခင္း

+
+ +

+Vidalia သည္ Vidalia ႏွင့္ Tor ၏ အသြင္ျပင္ကို ျပဳျပင္ရန္ ခြင့္ျပဳပါသည္။ Tor relayကို ျပဳျပင္ထိန္းသိမ္းရန္ ႏွင့္ set up +ျပဳလုပ္ရန္လည္း ခြင့္ျပဳပါသည္။ ထို႔ေၾကာင့္ Tor ကြန္ယက္ တိုးတက္ေအာင္ +သင့္ကူညီႏိုင္ပါသည္။ +

+ + +

အေထြေထြ Settings မ်ား

+

+အေထြေထြ စာမ်က္ႏွာေပၚမွ settings မ်ားသည္ အမ်ားအားျဖင့္ +ျပဳျပင္မြမ္းမံႏိုင္ေသာ settings မ်ား ျဖစ္ၾကပါသည္။ +

+
    +
  • Tor Executable : tray menu မွ Start ကို သင္ေရြးခ်ယ္လိုက္တဲ့အခါ +Vidalia ကို run မည့္ Tor executable ျဖစ္ပါသည္။ အကယ္၍ Tor multiple +ဗားရွင္းမ်ားကို install လုပ္ထားတယ္ ဆိုရင္ Browse button ကို +ႏွိပ္ျခင္းအားျဖင့္ မည္သည့္ Vidalia ဗားရွင္းဆိုတာ ေျပာျပႏိုင္ျပီး +သင္လိုခ်င္ေသာ ပံုမွန္ Tor installation ကို သြားႏိုင္ပါတယ္။ +
  • +
  • Startup Options: Vidalia စတင္လိုက္တာနဲ႔ Tor ကို အလိုအေလ်ာက္ စတင္ေစမွာ +ျဖစ္ပါတယ္။ သင္၏ system စတင္တာနဲ႔ run ဖို႔ Vidalia ကို ျပင္ဆင္မႈ ျပဳလုပ္ထား +ႏိုင္ပါေသးတယ္။ (Windows တြင္သာ) +
  • +
+ +
+

Network Settings

+

+Network settings စာမ်က္ႏွာသည္ သင့္ကို Tor ကြန္ယက္သို႔ Tor +ဘယ္လိုခ်ိတ္ဆက္ရမယ္ဆိုတာကို ျပဳျပင္ခြင့္ျပဳထားပါတယ္။ +

+
+ + +

Relay Settings

+

+Tor relay တစ္ခုကို ျပင္ဆင္ျခင္းႏွင့္ စီမံခန္႔ခြဲျခင္းမ်ား ဆိုင္ရာ +သတင္းအခ်က္လက္မ်ားကို အကူအညီ က႑တြင္ ၾကည့္ရႈပါ။ +

+ + +

Appearance Settings

+

+Appearance စာမ်က္ႏွာရွိ setting သည္ Vidalia ၏ အသြင္ျပင္ကို +သင့္စိတ္ၾကိဳက္ျပင္ဆင္ခြင့္ျပဳပါသည္။ +

+
    +
  • ဘာသာစကား: Vidalia ၏ interface ကို ေစတနာ့ဝန္ထမ္းမ်ားက +ဘာသာစကားမ်ိဳးစံုသို႔ ကူညီဘာသာျပန္ဆိုထားျပီး ျဖစ္ပါတယ္။ Vidalia ကိုစတင္ run +လိုက္တာနဲ႔ လက္ရွိသင္၏ ကြန္ျပဴတာဟာ ဘယ္ဘာသာစကားကို အသံုးျပဳေနတယ္ဆိုတာ +ခန္႔မွန္းဖို႔ ၾကိဳးစားပါလိမ့္မယ္။ အကယ္၍ Vidalia ၏ မွန္းဆခ်က္သည္ +မမွန္ဘူးဆိုလွ်င္ သို႔မဟုတ္ တစ္ျခားကြဲျပားေသာ ဘာသာစကားကို +ရည္ညႊန္းခ်င္တယ္ဆိုလွ်င္ dropdown box မွ တစ္ျခားဘာသာစကားတစ္ခုကို +သင္ေရြးခ်ယ္ႏိုင္ပါတယ္။ ေဖာ္ျပရန္ ဘာသာစကားကိုေျပာင္းလဲ ျပီးတာနဲ႔ +အဲ့ဒိအေျပာင္းလဲအတြက္ သက္ေရာက္မႈရွိေစရန္ Vidalia ကို restart ျပန္လုပ္ဖို႔ +လုိပါတယ္။ +
  • +
  • အသြင္အျပင္: အမ်ားအားျဖင့္ Vidalia ဟာ သင့္ platform ၏ မူရင္း interface +အသြင္ျပင္ကိုပဲ အသံုးျပဳပါတယ္။ အကယ္၍ မူရင္းပံုစံသြင္ျပင္ကို မၾကိဳက္ဘူးဆိုရင္ +dropdown box ထဲက ၾကိဳက္ႏွစ္သက္ရာ interface အသြင္ျပင္ကို ေရြးခ်ယ္ႏိုင္ပါတယ္။ +
  • +
+ +
+

အဆင့္ျမင့္ Settings

+

+အဆင့္ျမင့္ စာမ်က္ႏွာ မွာရွိတဲ့ settings ေတြဟာ ပံုမွန္အားျဖင့္ +အေတြ႕အၾကံဳရွိအသံုးျပဳသူေတြသာ ျပင္ဆင္မြမ္းမံ ႏိုင္ပါတယ္။ +

+
    +
  • Control Address & Port: Control Port သည္ Vidalia က Tor +ကိုေျပာရန္ အသံုးျပဳသည့္ port ျဖစ္သည္။ သင့္စက္ထဲမွာ အျခားေသာ ဝန္ေဆာင္မႈေတြနဲ႔ +ပဋိပကၡ မျဖစ္ဘူးဆိုရင္ ဒါမွမဟုတ္ တစ္ျခား စက္ထဲမွာ Tor process +အလုပ္လုပ္ေနတာကို ေစာင့္ၾကည့္ဖို႔နဲ႔ ထိန္းခ်ဳပ္ဖို႔ Vidalia +ကိုအသံုးျပဳေနတာဆိုရင္ ၎ကို ေျပာင္းလဲဖို႔ မလိုအပ္ပါဘူး။ +
  • +
  • Control Port Authentication: Control port authentication သည္ +သင့္စက္ထဲမွာ ရွိတဲ့ applications ေတြကို Tor ၏ installation ကို +ျပန္လည္ျပင္ဆင္ရန္ႏွင့္ ခ်ိတ္ဆက္တာေတြကို ကန္႔သတ္ရန္ အတြက္ +အသံုးျပဳျခင္းျဖစ္သည္။ ရရွိႏိုင္ေသာ authentication နည္းလမ္းမ်ားကေတာ့: +
      +
    • + None --authentication မလိုပါ။ ဒီ option ကို သံုးတာဟာ လံုးဝ +မေရရာပါဘူး။ သင့္ကြန္ျပဴတာေပၚကေန application သို႔မဟုတ္ အသံုးျပဳသူ +တစ္ေယာက္ေယာက္က သင့္ရဲ႕ Tor installation ကို ျပန္လည္ျပင္ဆင္လိုက္ႏိုင္ပါတယ္။ +
    • +
    • + Password (Default) -- အကယ္၍ ဒီနည္းလမ္းကို ေရြးခ်ယ္ခဲ့လွ်င္ +အသံုးျပဳသူပဲျဖစ္ျဖစ္ application ပဲျဖစ္ျဖစ္ Tor ရဲ႕ control port ကို +ခ်ိတ္ဆက္တိုင္း ခ်ိတ္ဆက္တိုင္းမွာ လိုအပ္မယ့္ password ကို +သင္သတ္မွတ္ထားႏိုင္ပါတယ္။ အကယ္၍ Vidalia က သင့္အတြက္ Tor ကို စတင္ခဲ့ရင္ +Randomly Generate checkbox ကို ေရြးခ်ယ္ထားျခင္းအားျဖင့္ Tor +စတင္တိုင္းမွာ Vidlia ဟာ password အသစ္ေတြကို က်ပန္း ထုတ္ေပးေနမွာ ျဖစ္ပါတယ္။ +
    • +
    • + Cookie -- အကယ္၍ cookie authentication ကိုေရြးခ်ယ္ျပီးလွ်င္ စတင္တာနဲ႔ +Tor ဟာ က်ပန္း bytes ေတြပါဝင္တဲ့ ဖိုင္တစ္ဖိုင္ (သို႔မဟုတ္ cookie) ကို +သူရဲ႕အခ်က္အလက္ေတြ သိမ္းထားရာ ေနရာမွာ write လုပ္မွာ ျဖစ္ပါတယ္။ +ဘယ္အသံုးျပဳသူပဲျဖစ္ျဖစ္ သို႔မဟုတ္ ဘယ္application ပဲျဖစ္ျဖစ္ Tor ရဲ႕ control +port ကို ခ်ိတ္ဆက္ဖို႔ၾကိဳးစားရင္ ၎က cookie ရဲ႕ contents ေတြကို +ေထာက္ပံ့ကူညီေပးမွာပါ။ +
    • +
    +
  • +
  • Tor Configuration File (optional): သတ္မွတ္ထားေသာ Tor ရဲ႕ +torrc configuration file ကို အသံုးျပဳထားေသာ Tor ကို Vidalia +စတင္ရန္အတြက္ ဒီ ဝption ကို အသံုးျပဳႏိုင္ပါတယ္။ အကယ္၍ သင္ဟာ ဒီေနရာမွာ +ကြက္လပ္ ထားခဲ့မယ္ ဆိုရင္ Tor က ၎၏ မူရင္း torrc ေနရာကို အသံုးျပဳမွာ +ျဖစ္ပါတယ္။ +
  • +
  • Tor Data Directory (optional): Tor ရဲ႕ အခ်က္အလက္ သိမ္းဆည္းမည့္ +directory ကို သင့္သတ္မွတ္ႏိုင္သည္။ Tor relay သတင္းအခ်က္အလက္မ်ား၊Tor relay +keys ႏွင့္ configuration ဖိုင္မ်ား ကို သိမ္းထားျခင္းမ်ိဳးကဲ့သို႔ ျဖစ္သည္။ +အကယ္၍ ဒီေနရာကို ကြက္လပ္ထားခဲ့လွ်င္ Tor က သူရဲ႕ ကိုယ္ပိုင္ +မူရင္းအခ်က္အလက္သိမ္းတဲ့ေနရာ ကို အသံုးျပဳမွာျဖစ္ပါတယ္။ +
  • +
  • ခြင့္ျပဳခ်က္မ်ား (optional, Windows တြင္မရပါ): Run as +User အေနနဲ႔ တန္ဖိုးထည့္လိုက္လွ်င္ စတင္လိုက္သည္ႏွင့္ Tor ဟာ +setuid(အသံုးျပဳသူ၏ ID ကိုမွန္မမွန္ စစ္ေဆးျခင္းကို) လုပ္ပါလိမ့္မယ္။ +အကယ္၍ Run as Group လို႔ တန္ဖိုးထည့္လိုက္လွ်င္ စတင္လုိက္တာနဲ႔ Tor ဟာ +setgid (အဲ့ဒိအုပ္စု၏ ID မွန္မမွန္စစ္ေဆးျခင္းကို) ျပဳလုပ္ပါလိမ့္မယ္။ +
  • +
+ +
+

Hidden Service Settings

+

+သိုဝွက္ထားေသာ ဝန္ေဆာင္မႈမ်ားက မည္သည့္ TCP-based ဝန္ေဆာင္မႈမ်ားျဖင့္မဆို +ေထာက္ကူေပးရန္ ခြင့္ျပဳပါသည္။ ဥပမာ HTTP ဝန္ေဆာင္မႈက သင္၏ IP လိပ္စာကို +မည္သူကိုမွ ထုတ္ေဖာ္ မျပျခင္းမ်ိဳး ျဖစ္သည္။ +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/index.html vidalia-0.2.15/src/vidalia/help/content/bms/index.html --- vidalia-0.2.10/src/vidalia/help/content/bms/index.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/index.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,42 @@ + + + + + + +

Vidalia အကူအညီ

+
+ +

+ရရွိႏိုင္ေသာ က႑မ်ားကို Serch button ျဖင့္ အထက္ပါ က႑မ်ား စာရင္းမွလည္းေကာင္း၊ +သို႔မဟုတ္ ဘယ္ဘက္ျခမ္းရွိ tree မွ အကူအညီ က႑ကိုလည္းေကာင္း ေရြးခ်ယ္ပါ။ +

+ +

+toolbar ၏ အထက္မွာရွိတဲ့ ရွာပါ button ကို အကူအညီက႑ တစ္ခုခ်င္းစီအလိုက္ +ရွာရန္ အသံုးျပဳႏိုင္ပါတယ္။ +

+ +

+အထက္ပါ မူလစာမ်က္ႏွာသို႔ button သည္ သင့္ကို မူလစာမ်က္ႏွာသို႔ ျပန္လည္ +ေခၚေဆာင္သြားမွာ ျဖစ္ပါတယ္။ +

+ +

+Vidalia ႏွင့္ Tor တို႔၏ အပိုေဆာင္း အကူညီႏွင့္ သတင္းအခ်က္အလက္မ်ားကို +ရွာေဖြရန္ အသုံးဝင္ေသာ Links မ်ားက႑ ကိုၾကည့္ပါ။ +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/links.html vidalia-0.2.15/src/vidalia/help/content/bms/links.html --- vidalia-0.2.10/src/vidalia/help/content/bms/links.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/links.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,85 @@ + + + + + + +

အသံုးဝင္ေသာ Links မ်ား

+
+ +

Vidalia

+ + + + + + + + + + + + + + + + +
   မူလစာမ်က္ႏွာ + +https://www.torproject.org/vidalia/ +
   Wiki + +http://trac.vidalia-project.net/wiki +
   Bugtracker + +http://trac.vidalia-project.net/report +
+ +

Tor

+ + + + + + + + + + + + + + + + + + + + + +
   မူလစာမ်က္ႏွာ + https://www.torproject.org/ +
   ေမးေနက်ေမးခြန္းမ်ား + +https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ +
   Wiki + +https://wiki.torproject.org/noreply/TheOnionRouter +
   Bugtracker + +https://bugs.torproject.org/flyspray +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/log.html vidalia-0.2.15/src/vidalia/help/content/bms/log.html --- vidalia-0.2.10/src/vidalia/help/content/bms/log.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,107 @@ + + + + + + +

Message Log

+
+ +message log သည္ Tor process run ေနေသာ သတင္းအခ်က္အလက္ status ကို +ၾကည့္ရႈခြင့္ေပးသည္။ message +တစ္ခုခ်င္းစီတြင္အမွား(အေတာ္ေလး) မွ Debug(ပိုမိုမ်ားျပားသည္) +အထိ စီရီထားျပီး ၎ႏွင့္ ဆက္စပ္လွ်က္ရွိေသာ severity ရွိၾကသည္။ +ပိုမိုသိလိုေသာ သတင္းအခ်က္အလက္မ်ားအတြက္ အကူအညီက႑ရွိ message severities ကို ၾကည့္ပါ။ +

Message Severities

+

+message ၏ severity က သင့္ကို message သည္မည္မွ် အေရးၾကီးေၾကာင္း +ေျပာျပလိမ့္မည္။ အဆင့္ျမင့္ေသာ severity message ေတြဟာ Tor ၌ ျဖစ္ေပၚလာေသာ +မွားယြင္းမႈ တစ္စံုတစ္ရာကို ေဖာ္ျပပါသည္။ အဆင့္နိမ့္ေသာ severity messages +ေတြဟာ Tor operations မ်ားအတြင္း မၾကာခဏ ေပၚလာျပီး အျမဲတမ္း log လုပ္ရန္ +မလိုအပ္ေပ။ +

+ +

+အေရးအၾကီးဆံုးမွ စ၍ အစဥ္အတိုင္းစီထားေသာ message မ်ား: +

+
    +
  • + Error: ေတာ္ေတာ္ေလး အမွားယြင္းျဖစ္ေန၍ message ေပၚလာတဲ့အခါမွာေတာ့ Tor က +ဆက္လက္ အလုပ္လုပ္ႏိုင္ေတာ့မွာ မဟုတ္ပါဘူး။ အဲ့ဒိလို message မ်ိဳးကို message +log ထဲတြင္ အနီျဖင့္ မ်ဥ္းတား ျပသထားမွာ ျဖစ္ပါတယ္။ +
  • +
  • + သတိေပးခ်က္: Tor တြင္ တစ္ခုခု အမွားယြင္းေၾကာင့္ ေပၚလာေသာ messages +ေတြဟာ ပ်က္စီးေစမွာ မဟုတ္ပဲ Tor က ဆက္လက္ run ေနပါလိမ့္မယ္။ အဲ့ဒိ messages +ေတြကို အဝါေရာင္ျဖင့္ မ်ဥ္းတားျပထားေပးမွာ ျဖစ္ပါတယ္။ +
  • +
  • + အသိေပးခ်က္: ပံုမွန္ Tor operation အတြင္း မၾကာခဏမဟုတ္ပဲ ေပၚလာေသာ +messages ေတြဟာ errors ေတြကို အဆံုးအျဖတ္မေပးႏိုင္ေပးမယ့္ သင္အေနနဲ႔ +ဂရုစိုက္ဖို႔ေတာ့ လိုပါတယ္။ +
  • +
  • + Info: ပံုမွန္ Tor operation အတြင္း မၾကာခဏ ေပၚလာေသာ messages ေတြဟာ +သာမန္အသံုးျပဳသူေတြကို စိတ္မဝင္စား ေစပါဘူး။ +
  • +
  • + Debug:အလြန္ရွည္လ်ားေသာ message ေတြဟာ developers မ်ားကို အဓိက +စိတ္ဝင္စားေစပါတယ္။ သင္ဘာလုပ္ရမယ္ဆိုတာ မသိရင္ေတာင္ ပံုမွန္အားျဖင့္ debug ကို +log မလုပ္သင့္ပါဘူး။ +
  • +
+ +

+အသံုးျပဳသူအမ်ားစုသည္ Error, Warning, ႏွင့္ Notice +messages မ်ားကိုသာ log လုပ္သင့္ပါသည္။ +

+ +

+ျမင္ခ်င္ေသာ message ကို ေရြးခ်ယ္ရန္ ေအာက္ပါအတိုင္းျပဳလုပ္ပါ။ +

    +
  1. Vidalia ၏ အေသးခ်ံဳ႕ထားေသာ menu မွ message log ကိုဖြင့္ပါ။
  2. +
  3. message log window အေပၚဘက္ရွိ Settings ကိုႏွိပ္ပါ။
  4. +
  5. + ဘယ္ဘက္ျခမ္းရွိ Message Filter group မွ ျမင္ခ်င္ေသာ message ကို check +လုပ္ျပီးမျမင္ခ်င္ေသာ message ကို uncheck လုပ္ပါ။ +
  6. +
  7. message အသစ္ filter ကို apply ျပဳလုပ္ရန္ Save Settings ကို ႏွိပ္ပါ။
  8. +
+

+ + +
+

Logging to a File

+

+Vidalia သည္လည္း message log window ထဲသို႔ log in ဝင္ျပီး log messages +မ်ားကို ဖိုင္အျဖစ္ write လုပ္ႏိုင္ပါတယ္။ ဖိုင္ကို logging ျပဳလုပ္ျခင္းအား +enable လုပ္ရန္ ေအာက္ပါအဆင့္မ်ားအတိုင္း လုပ္ေဆာင္ပါ: +

+ +
    +
  1. Vidalia ၏ အေသးခ်ံဳ႕ထားေသာ menu မွ message log ကိုဖြင့္ပါ။
  2. +
  3. message log window အေပၚဘက္ရွိ Settings ကိုႏွိပ္ပါ။
  4. +
  5. log messages အသစ္မ်ားကို ဖိုင္အျဖစ္ အလိုအေလ်ာက္သိမ္းပါ။ဆိုသည့္ +နာမည္တပ္ထားေသာ box ကို check လုပ္ပါ။
  6. +
  7. + အကယ္၍ message ကို write လုပ္မယ့္ ဖိုင္ကို ေျပာင္းလဲခ်င္တယ္ဆိုလွ်င္ text box +ထဲမွာ ဖိုင္နာမည္ႏွင့္ လမ္းေၾကာင္းေတြကို ရိုက္ထည့္ရပါမယ္။ သို႔မဟုတ္ သင္၏ log +ဖိုင္ တည္ေနရာကို ညႊန္းဖို႔ Browse ကိုႏွိပ္ပါ။ +
  8. +
  9. သင္၏ log မ်ားကို သိမ္းရန္ Save Settingsကို ႏွိပ္ပါ။
  10. +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/netview.html vidalia-0.2.15/src/vidalia/help/content/bms/netview.html --- vidalia-0.2.10/src/vidalia/help/content/bms/netview.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,182 @@ + + + + + + +

Network Viewer

+
+ +

+network viewer ဟာ သင္၏ လမ္းေၾကာင္းဘယ္ကို သြားေနလဲဆိုတာရယ္၊ Tor ကြန္ယက္ေပၚက +relays ေတြကို ၾကည့္ရႈႏိုင္ေအာင္ လုပ္ေဆာင္ေပးပါတယ္။ +

+ + +
+

ျခံဳငံုၾကည့္ျခင္း

+

+Tor ကို ျဖတ္ျပီး အမည္မသိအေနနဲ႔ သင္ခ်ိတ္ဆက္လိုလွ်င္ (တနည္းအားျဖင့္ +ဝက္ဘ္ဆိုက္ကို ခ်ိတ္ဆက္ခ်င္လွ်င္)၊ Tor က tunnel တစ္ခုကို ဖန္တီးေပးပါတယ္။ +သို႔မဟုတ္ encrypt (ပံုစံဖ်က္ထားေသာ) ခ်ိတ္ဆက္မႈမ်ား၏ circuitသည္ +ကြန္ယက္ေပၚမွာ ရွိတဲ့ relays အတြဲလိုက္ကို ျဖတ္သန္းသြားပါလိမ့္မယ္။ သင့္ +application ရဲ႕ လမ္းေၾကာင္းေတြဟာ အဲဒိ circuit ကိုျဖတ္ျပီး +စီးဆင္းရာလမ္းေၾကာင္း အျဖစ္ ပို႔ေဆာင္ မွာ ျဖစ္ပါတယ္။ +အဆင္ေျပေခ်ာေမြ႕ေစရန္ အတြက္ မ်ားစြာေသာ စီးဆင္းရာလမ္းေၾကာင္းေတြကို တူညီတဲ့ +circuit မွာပဲ ေဝမွ်ေပးမွာ ျဖစ္ပါတယ္။ +

+ +
+

ကြန္ယက္ေျမပံု

+

+ကြန္ယက္ေျမပံုတြင္ အနီေရာင္ pinpoints မ်ားျဖင့္ ရည္ညႊန္းထားေသာ Tor +ကြန္ယက္ေပၚရွိ relays မ်ား၏ ပထဝီဆိုင္ရာ ေဒသမ်ားႏွင့္ ကမၻာ့ေျမပံုပါဝင္ပါသည္။ +အစိမ္းေရာင္လိုင္းမ်ားသည္ relays မ်ားအၾကား Tor ကြန္ယက္ကို ျဖတ္၍ ဖန္တီးထားေသာ +Tor client ျဖစ္တဲ့ circuits မ်ား၏ လမ္းေၾကာင္းကို ရည္ညႊန္းပါတယ္။ +

+

+ေျမပံုေပၚရွိ တည္ေနရာမ်ားကို toolbar ေပၚရွိ Zoom In ႏွင့္ Zoom +Out ကိုႏွိပ္၍ ခ်ံဳ႕၍/ခ်ဲ႕၍ ၾကည့္ႏိုင္ပါတယ္။ ေျမပံုေပၚတြင္ မည္သည့္ +လမ္းေၾကာင္းကို မဆို သင္ေရြ႕၍ ၾကည့္လိုလွ်င္ ၎ေပၚတြင္ ႏွိပ္၍ ဆြဲေရႊ႕ျပီး +ၾကည့္ရႈႏိုင္ပါတယ္။ +

+

+GeoIP database ထဲက relay ၏ IP လိပ္စာမ်ားကို ၾကည့္ျခင္းအားျဖင့္ Tor relay +တစ္ခု၏ ပထဝီဆိုင္ရာ တည္ေနရာကို ဆံုးျဖတ္ႏိုင္ပါသည္။ ၎ကို MaxMind က ဖန္တီးထားတာ +ျဖစ္ျပီး geoip.vidalia-project.net မွာတည္ရွိပါတယ္။ +

+

+ကြန္ယက္ေျမပံု၏ ေအာက္ဘက္ ဒိုင္ယာေလာ့ခ္၏ အလယ္တြင္ အဲ့ဒိ circuits မ်ားေပၚရွိ +လတ္တေလာ application လမ္းေၾကာင္းမ်ား ကဲ့သို႔ပင္ သင္၏ လက္ရွိ circuits မ်ား +စာရင္းကို ျမင္ေတြ႕ႏိုင္ပါတယ္။ ကြန္ယက္ ေျမပံု ပထမဆံုး စတင္တဲ့အခါမွာ Tor +relays မ်ား၏ စာရင္းအတြက္ ပထဝီဆိုင္ရာ သတင္းအခ်က္အလက္မ်ားကို Vidalia +ၾကည့္တဲ့ခါ ေတြ႕ရမယ့္ geoip.vidalia-project.net ကို ခ်ိတ္ဆက္မႈအား ျမင္ရမွာပါ။ +အေရးတၾကီး သိရမွာက Tor ကိုျဖတ္၍ ျပီးသြားတယ္ဆိုတာပါပဲ။ ထို႔ေၾကာင့္ GeoIP relay +သို႔ သင့္တည္ေနရာကို ထုတ္ေဖာ္ေျပာမွာ မဟုတ္ပါဘူး။ ၾကည့္ရႈျခင္း၏ ရလဒ္ကေတာ့ +Vidalia ၏ GeoIP relays မ်ားေပၚမွာ load လုပ္တာကို ေလွ်ာ့ခ်ရန္ အလို႔ငွာ local +မွာပဲ ဖမ္းယူေပးထားမွာ ျဖစ္ပါတယ္။ +

+ + +
+

Relay Status

+

+network view ၏ ဘယ္ဘက္ျခမ္းတြင္ Tor ကြန္ယက္ထဲရွိ relays မ်ား စာရင္းကို +သင္ျမင္ေတြ႕ရမွာ ျဖစ္ပါတယ္။ ေနာက္တစ္ခုကေတာ့ relay တစ္ခုခ်င္းစီဟာ relay ၏ +status ကို ညႊန္းတဲ့ icon ျဖစ္ပါတယ္။ ေအာက္ေဖာ္ျပပါ ဇယားကြက္ကေတာ့ relay status +icons မ်ားရဲ႕ ျဖစ္ႏိုင္ေျခရွိတဲ့ အႏွစ္ခ်ဳပ္ ဇယားကြက္ ျဖစ္ပါတယ္: +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ relay သည္ offline ျဖစ္ေနျခင္း သို႔မဟုတ္ တံု႔ျပန္မႈမရရွိပါ။ +
+ relay သည္ hibernating ျဖစ္ေနပါသည္။ ဆိုလိုတာကေတာ့ online ျဖစ္ေနတယ္ +ဒါေပမယ့္ ေပးထားေသာ အခ်ိန္အတိုင္းအတာအတြင္း operator က ခြင့္ျပဳလိုေပမယ့္ +bandwidth ေတာ္ေတာ္မ်ားမ်ားဟာ အသံုးျပဳလိုက္ျပီး ျဖစ္ေနပါတယ္။ +
+ Relay သည္ online ျဖစ္ေနသည္။ သို႔ေသာ္ ၎၏ အနိမ့္ဆံုး ႏႈန္းကို သာ +ေဖာ္ျပထားပါသည္။ +
+ Relay သည္ အြန္လိုင္းျဖစ္ေနသည္။ ၎၏ ႏႈန္းမွာ = 20 KB/s +
+ Relay သည္ အြန္လိုင္းျဖစ္ေနသည္။ ၎၏ ႏႈန္းမွာ = 60 KB/s +
+ Relay သည္ အြန္လိုင္းျဖစ္ေနသည္။ ၎၏ ႏႈန္းမွာ = 400 KB/s +
+

+

+bandwidth တန္ဖိုးအားလံုးသည္ အျမင့္ဆံုး bandwidth ၏ input သို႔မဟုတ္ +လြန္ခဲ့ေသာ ရက္ရွိ ၁၀ စကၠန္႔စာ output ၏ အနိမ့္ဆံုးေပၚတြင္ အၾကမ္းဖ်ဥ္း +အေျခခံပါသည္။ +

+ + +
+

Relay အေသးစိတ္မ်ား

+

+screen ၏ ညာဘက္ျခမ္းမွာရွိတဲ့ relay အေသးစိတ္ panel သည္ relay အေၾကာင္း +အေသးစိတ္ သို႔မဟုတ္ relay စာရင္း ထဲတြင္ လတ္တေလာ +ေရြးခ်ယ္ထားေသာ realy အေၾကာင္းကို ေဖာ္ျပေပးပါသည္။ သင္၏ လတ္တေလာ circuits +မ်ားႏွင့္ streams မ်ား စာရင္းထဲတြင္ circuit သို႔ မဟုတ္ stream ကို +သင္ေရြးခ်ယ္ထားျပီးျပီ ဆိုလွ်င္ ၎panel သည္ relay တစ္ခုခ်င္းစီကို ျဖတ္၍ +လတ္တေလာ ေပးပို႔ေနေသာ သင္၏ လမ္းေၾကာင္း အေၾကာင္း အေသးစိတ္ကို +ေဖာ္ျပေပးပါလိမ့္မယ္။ +

+

+panel ထဲတြင္ သင္ျမင္ေတြ႕ရမည့္ နယ္ပယ္မွာ ေအာက္ပါအတိုင္း ျဖစ္ပါသည္။ +(မွတ္ခ်က္: နယ္ပယ္ေတြအားလံုးကေတာ့ အျမဲတမ္း ေဖာ္ျပႏိုင္မွာ မဟုတ္ပါဘူး): +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
တည္ေနရာ၎ Tor relay ၏ ပထဝီဆိုင္ရာ တည္ေနရာ။
IP Address၎ Tor relay ေပၚရွိ IP လိပ္စာသည္ ေရာက္ရွိႏိုင္ပါသည္။
Platform + ၎ relay ေပၚရွိ Operating system သတင္းအခ်က္အလက္ႏွင့္ Tor version မ်ားသည္ +လက္တေလာတြင္ run ေနပါသည္။ +
Bandwidth + bandwidth ၏ အၾကမ္းဖ်ဥ္း အမ်ားဆံုး ပမာဏျဖစ္ေသာ relays ၏ လမ္းေၾကာင္းသည္ ၎ +realy ၏ လတ္တေလာ အေျခအေနကို ထိန္းထားႏိုင္ပါလိမ့္မည္။ +
Uptime + ၎ relay ၏တည္ျငိမ္မႈကို ကူညီရန္ relay ၏ အခ်ိန္အတိုင္းတာကို ရရွိႏိုင္ပါျပီ။ +
ေနာက္ဆံုး update ျပဳလုပ္ျပီးျခင္းဤ relay ေန႔စြဲ၏ သတင္းအခ်က္အလက္သည္ ေနာက္ဆံုး update ျပဳလုပ္ျပီး ျဖစ္ပါသည္။
+

+ + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/running.html vidalia-0.2.15/src/vidalia/help/content/bms/running.html --- vidalia-0.2.10/src/vidalia/help/content/bms/running.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,109 @@ + + + + + + +

Running Tor

+
+ +

+Vidalia သည္ မေမွ်ာ္လင့္ပဲ ပရိုဂရမ္ ပိတ္သြားျခင္းကို သင္အား ေပးသိျပီး Tor ၏ +status ကို ေကာင္းစြာ ေစာင့္ၾကည့္ေလ့လာရန္ Tor ကို start ႏွင့္ stop သင့္အား +ျပဳလုပ္ေစျခင္းအားျဖင့္ Tor process ကို သင္ ထိန္းခ်ဳပ္ႏိုင္ရန္ ကူညီေပးပါသည္။ +

+ + +

Starting and Stopping Tor

+

+Tor ကို startလုပ္ရန္ +

    +
  1. Vidalia ၏ tray meanu မွ Startကို ေရြးခ်ယ္ပါ သို႔မဟုတ္ +Ctrl+Sကို ႏွိပ္ပါ။
  2. . +
  3. + Tor စတင္လိုက္တဲ့အခ်ိန္မွာ Vidalia ၏ tray icon သည္ အနီေရာင္ X ႏွင့္ onion မွ +အစိမ္းေရာင္ onion သို႔ ေျပာင္းလဲသြားမွာ ျဖစ္ပါတယ္။ +
  4. +
+အကယ္၍ Vidalia သည္ Tor ကို မစတင္ႏိုင္ဘူး ဆိုလွ်င္ ဘာမွားေနတယ္ဆိုတဲ့ error +message ကို Vidalia က ျပသေပးမွာ ျဖစ္ပါတယ္။ ဘာမွားေနတယ္ဆိုတဲ့ +အခ်က္အလက္မ်ားကို Tor က ေဖာ္ျပခဲ့လွ်င္
message +logမွာလည္း ၾကည့္ရႈႏိုင္ပါတယ္။ +

+ +

+Tor ကို stopျပဳလုပ္ရန္ +

    +
  1. Vidalia ၏ tray menu မွ Stopကို ေရြးခ်ယ္ပါ သို႔မဟုတ္ Ctrl+T +ႏွိပ္ပါ။
  2. . +
  3. + Tor ကို ရပ္တန္႔လိုက္တဲ့အခါ Vidalia ၏ tray icon သည္ အစိမ္းေရာင္ onion မွ +အနီေရာင္ X ႏွင့္အတူ မီးခိုးေရာင္ onion အျဖစ္သို႔ ေျပာင္းလဲသြား ပါလိမ့္မယ္။ +
  4. +
+အကယ္၍ Vidalia သည္ Tor ကို မရပ္တန္႔ႏိုင္ခဲ့လွ်င္ Vidalia သည္ +ဘာမွားေနတယ္ဆိုတဲ့ error message ကို ျပသေပးမွာ ျဖစ္ပါတယ္။ အကယ္၍ Tor က +ဘာမွားေနတယ္ဆိုတဲ့ အခ်က္အလက္မ်ားကို ေဖာ္ျပခဲ့လွ်င္ message +log မွာလည္း ၾကည့္ရႈႏိုင္ပါေသးတယ္။ +

+ + +

Tor ၏ Status ကို ေစာင့္ၾကည့္ေလ့လာျခင္း

+

+dock area သို႔မဟုတ္ သင္၏ system tray ထဲမွာ icon ကို ေဖာ္ျပျခင္းအားျဖင့္ +Vidalia က Tor ၏ status ေတြ အေၾကာင္း သင့္ကိုေျပာျပမွာပါ။ ေအာက္ေဖာ္ျပပါ +ဇယားကြက္သည္ သင့္ system ၏ notification area ရွိ icon က မတူညီတဲ့ +အေျခအေနေတြကို ရည္ညႊန္းထားတဲ့ ဇယားကြက္ျဖစ္ပါတယ္: +

+

+ + + + + + + + + + + + + + + + + +
+ Tor ရပ္တန္႔သြားပါျပီ။ Tor ကို စတင္ရန္ Vidalia menu မွ Startကို +ေရြးပါ။ +
+ Tor သည္ စတင္ေနပါျပီ။ စတင္ေနတဲ့အခ်ိန္မွာပဲ Tor အေၾကာင္း အခ်က္အလက္ status +အတြက္ message logကို စစ္ပါ။ +
+ Tor သည္ run ေနပါသည္။ အကယ္၍ Tor ကို ရပ္တန္႔ခ်င္လွ်င္ Vidalia menu မွ +Stop ကိုေရြးပါ။ အကယ္၍ Tor ဘာလုပ္ေနတယ္ဆိုတာ ျမင္ခ်င္ရင္ Tor က +အခ်က္အလက္ဆိုင္ရာ messages မ်ားကို message log မွာ +ေဖာ္ျပေပးမွာ ျဖစ္ပါတယ္။ +
Tor ဟာ shut down ျပဳလုပ္ေနဆဲ အေျခအေနမွာပါ။
+

+ +

+အကယ္၍ မေမွ်ာ္လင့္ပဲ Tor က ထြက္သြားခဲ့လွ်င္ Vidalia ဟာ red X ႏွင့္ အမဲေရာင္ +onion ကိုေျပာင္းလဲသြားမွာ ျဖစ္ျပီး ဘာမွားသြားတယ္ဆိုတဲ့ error message ကို +ျပသမွာ ျဖစ္ပါတယ္။ မထြက္ခင္မွာ Tor ဟာ ျပႆနာတစ္ခုခုႏွင့္ ၾကံဳေတြ႕တဲ့ အေသးစိတ္ +အေၾကာင္းကို message log မွာ စစ္ေဆးႏိုင္ပါတယ္။ +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/server.html vidalia-0.2.15/src/vidalia/help/content/bms/server.html --- vidalia-0.2.10/src/vidalia/help/content/bms/server.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/server.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,266 @@ + + + + + + +

Tor Relay တစ္ခုကို စတင္ျပင္ဆင္ျခင္း

+
+ +Tor ကြန္ယက္သည္ တကမၻာလံုးက ေစတနာ့ဝန္ထမ္းေတြဟာ Tor realy ကို run ျပီး ၎၏ အရံ +bandwidth ေတြကို လွဴဒါန္းျခင္း အားျဖင့္ တည္ေဆာက္ထားပါတယ္။ Vidalia သည္ +သင့္ကိုယ္တုိင္ realy ကို အလြယ္တကူ set up ျပဳလုပ္ေစျခင္းအားျဖင့္ သင့္ကို +အစိတ္အပိုင္း တစ္ခုအျဖစ္ပါဝင္ေစရန္ ကူညီေပးပါတယ္။ +

အေျခခံ Setting မ်ား

+

+အကယ္၍ realy ကို run ျပီး Tor ကြန္ယက္ကို ဖြံ႕ျဖိဳးေစဖို႔ သင္ကူညီလုိတယ္ဆိုရင္ +စတင္ဖို႔အတြက္ ဤအခ်က္မ်ားကို လိုက္လုပ္ ႏိုင္ပါတယ္: +

+
    +
  1. + Macintosh systems တြင္ သင္၏ system menubar မွ အသြင္အျပင္ သို႔မဟုတ္ +tray menu မွ Settings ကိုေရြးခ်ယ္ျခင္းအားျဖင့္ ျပင္ဆင္ျခင္း +Dialog ကို ဖြင့္ပါ။ +
  2. +
  3. Relay ျပင္ဆင္ျခင္းစာမ်က္ႏွာကို ေရြးခ်ယ္ပါ။
  4. +
  5. + မည္သည့္ ပံုမွန္ Tor relay သို႔မဟုတ္ bridge relay (Tor 0.2.0.8-alpha +သို႔မဟုတ္ ဗားရွင္းအသစ္မ်ား) ကို သင္ run လိုသည္ဆိုတာကို ဆံုးျဖတ္ပါ။ Bridge +relays ေတြဟာ Tor ကြန္ယက္ကို တိုက္ရိုက္ ဆက္သြယ္ျခင္းကို ပိတ္ဆို႔ျခင္း +ခံထားရတဲ့ Tor အသံုးျပဳသူမ်ားရဲ႕ ဆင္ဆာျဖတ္ထားျခင္းခံရတာကို ကူညီေပးပါတယ္။ +အကယ္၍ ပံုမွန္ Tor relay ကို run ခ်င္ရင္ Tor ကြန္ယက္အတြက္ Relay +လမ္းေၾကာင္း သို႔မဟုတ္ bridge relay ကို run ခ်င္လွ်င္ Tor ကြန္ယက္သို႔ +ေရာက္ရွိရန္ ဆင္ဆာ အျဖတ္ခံထားရေသာ အသံုးျပဳသူမ်ားကို ကူညီပါ ဆိုေသာ box +မ်ားကို check လုပ္ပါ။ +
  6. +
  7. ေအာက္ပါအခ်က္အလက္မ်ားကို ထည့္သြင္းပါ။
  8. +
      +
    • နာမည္ေျပာင္: Tor ကြန္ယက္ေပၚတြင္ သင့္ relay နာမည္ကို သိရွိႏိုင္ပါသည္။ +ဥပမာအားျဖင့္ relay နာမည္ေျပာင္ "MyVidaliaRelay" ျဖစ္သည္။ +
    • +
    • ဆက္သြယ္ရန္အခ်က္အလက္: သင့္အီးေမးလ္လိပ္စာ။ ၎လိပ္စာကို အေရးၾကီးေသာ Tor +လံုျခံဳေရးဆိုင္ရာ update မ်ား သို႔မဟုတ္ သင့္ relay တစ္ခုခု မွားယြင္းေနရင္တဲ့ +ကိစၥရပ္မ်ား ရွိခဲ့ရင္ ဆက္သြယ္ဖို႔ အသံုးျပဳမွာပါ။ PGP သို႔မဟုတ္ GPG key ID +ႏွင့္ fingerprint တို႔ ပါရွိရပါမယ္။ +
    • +
    • Relay Port: သင့္ relay ေပၚရွိ ၎ port သည္ clients မ်ားဆီက သို႔မဟုတ္ +အျခား Tor relays မ်ားဆီက လမ္းေၾကာင္းမ်ားကို နားေထာင္ပါလိမ့္မည္။ +
    • +
    +
  9. + အကယ္၍ ကြန္ယက္ေပၚရွိ အျခားသူမ်ား အတြက္ relays မ်ား၏ mirror Tor's directory +ျပဳလုပ္လိုလွ်င္ Mirror the Relay Directory box ကို check လုပ္ပါ။ +အကယ္၍ bandwidth မ်ားမ်ားစားစား မရွိဘူးဆိုရင္ေတာ့ ၎boxကို uncheck လုပ္ပါ။ +အကယ္၍ relay directory ကို mirror ျပဳလုပ္ဖို႔ ဆံုးျဖတ္တယ္ဆိုရင္ သင္အထက္တြင္ +ထည့္ထားေသာ Relay port ႏွင့္ Directory Port တို႔ ကြဲျပားေနပါေစ။ +Bridge relay ေတြဟာ မျဖစ္မေန relay directory ကို mirror ျပဳလုပ္ဖို႔ +လိုပါတယ္။ +
  10. +
+ +
+

Bandwidth ကန္႔သတ္ခ်က္မ်ား

+

+Tor relay ကို run ျခင္းသည္ bandwidth ၏ ၾကီးမာေသာ ပမာဏကို ကုန္ေစပါသည္။ +ဘယ္လိုပဲျဖစ္ျဖစ္ Tor ဟာ သင္ Tor network ကို ပူးေပါင္းပါဝင္ခ်င္ေသာ +ဆႏၵရွိတဲ့အတြက္ သင့္ကို bandwidth ပမာဏကို ကန္႔သတ္ခြင့္ေပးပါသည္။ +သင့္ကိုယ္ပိုင္ အသံုးျပဳမႈအတြက္ အသံုးျပဳႏိုင္ေသာ ကြန္ယက္ဆက္သြယ္မႈကို +သိမ္းထားတုန္း အခ်ိန္မွာပဲ relay ကို run ႏိုင္ပါတယ္။ +

+

+သင္ ဆက္သြယ္မႈျမန္ႏႈန္းႏွင့္ လိုက္ဖက္မယ့္ dropdown box ထဲက option ကို +ေရြးခ်ယ္သင့္ပါတယ္။ အကယ္၍ ကိုယ္ပိုင္ဆိုတာကို ေရြးခ်ယ္ခဲ့လွ်င္ +သင့္ကိုယ္ပိုင္ ကန္႔သတ္ခ်က္မ်ား ကို သတ္မွတ္ရပါလိမ့္မယ္။ +

+

ကိုယ္ပိုင္ကန္႔သတ္ခ်က္မ်ား

+

+အျမင့္ဆံုးႏႈန္း သည္ bytes အစုေပါင္းျဖစ္ျပီး +သတ္မွတ္ထားေသာပ်မ္းမွ်ႏႈန္းထက္ ျမန္ဆန္ေသာ လမ္းေၾကာင္း ၏ ကာလတို +အေတာတြင္း ေတာင္းဆိုမႈမ်ားကို ျဖည့္ဆည္းေပးရန္ အတြက္ အသံုးျပဳသည္။ သို႔ေသာ္ +ကာလရွည္မ်ားတြင္ ပ်မ္းမွ်ႏႈန္းကို ျပဳျပင္ေနဆဲ ျဖစ္သည္။ အကယ္၍ ပ်မ္းမွ်သည္ +ေနာက္က်ျပီး မေရာက္ခဲ့ဘူးဆိုလွ်င္ peak times အေတာအတြင္း +လမ္းေၾကာင္းအမ်ားျပားကို ခြင့္ျပဳေနခ်ိန္မွာပဲ နိမ့္ေသာ ပ်မ္းမွ်ႏႈန္း ဒါေပမယ့္ +ျမင့္ေသာ အျမင့္ဆံုး ႏႈန္းေတြဟာ ေရရွည္ကာလ ပ်မ္းမွ်ႏႈန္း အတြက္ အတည္ျပဳေပးမွာ +ျဖစ္ပါသည္။ အကယ္၍ သင္၏ ပ်မ္းမွ်ႏႈန္းသည္ အျမင့္ဆံုးႏႈန္းႏွင့္ +တူညီေနလွ်င္ Tor သည္ သတ္မွတ္ထားေသာ ႏႈန္းထက္ ဘယ္ေတာ့မွ ပိုလြန္မွာ မဟုတ္ပါဘူး။ +သင္၏ အျမင့္ဆံုးႏႈန္း သည္ အျမဲတမ္း ပ်မ္းမွ်ႏႈန္း ထက္ +ၾကီးရင္ၾကီး သို႔မဟုတ္ တူညီေနရပါမယ္။ +

+

+ပ်မ္းမွ်ႏႈန္း သည္ အျမင့္ဆံုး ကာလရွည္ၾကာ ခြင့္ျပဳေသာ bandwidth +(kilobytes per second ျဖင့္) ျဖစ္သည္။ ဥပမာအားျဖင့္ 2 megabytes per second +(2048 KB/s), သို႔မဟုတ္ 50 kilobytes per second (cable ဆက္သြယ္မႈ၏ +ပုံမွန္ျမန္ႏႈန္း)ကို သင္ေရြးခ်ယ္လိုျခင္း ျဖစ္သည္။ Tor သည္ အနိမ့္ဆံုး relay +ကို run ရန္ 20 kilobytes per second လိုအပ္သည္။ +

+

+အေရးတၾကီး သတိရ ရမွာက Tor ဟာ bandwidth ေတြကို bytes နဲ႔တိုင္းတာပါတယ္။ +bits မဟုတ္ပါ။ Tor ဟာ ထြက္သြားတဲ့ bytes ေတြအစား ဝင္လာတဲ့ bytes ေတြကိုသာ +ၾကည့္ပါတယ္။ ဥပမာအားျဖင့္ အကယ္၍ သင့္ realy ဟာ directory mirror အျဖစ္ +ျပဳမူတယ္ဆိုရင္ ဝင္လာေသာ bytes မ်ားထက္ ပို၍ထြက္သြားေသာ bytes မ်ားကို +သင္ေပးပို႔မည္ ျဖစ္သည္။ အကယ္၍ ၎သည္ ျပႆနာ တစ္ခု ျဖစ္သည္ဟု သင္ရွာေဖြ႕ေတြ႕ရွိ +ခဲ့လွ်င္ ၊ သင့္ bandwidth ေပၚတြင္ အားစိုက္မႈမ်ား အလြန္အမင္း သြတ္သြင္း +ေနတယ္လို႔ ရွာေဖြေတြ႕ရွိခဲ့လွ်င္ Mirror the relay directory checkbox +ကို uncheck ျပဳလုပ္ရန္ သင္ဆံုးျဖတ္သင့္သည္။ +

+ +
+

ထြက္ပံုထြက္နည္းမ်ား

+

+ထြက္ပံုထြက္နည္းမ်ားသည္ အင္တာနက္ေပၚက မည္သည့္ အရင္းျမစ္အမ်ိဳးအစား ကို သင့္ Tor +relay မွ အျခားေသာ Tor အသံုးျပဳသူမ်ား ရယူခြင့္ျပဳရန္ သတ္မွတ္ေပးေသာ +နည္းလမ္းျဖစ္သည္။ Tor က အျခားေသာ ဝန္ေဆာင္မႈမ်ားကို ကန္႔သတ္ထားတဲ့ +ရွိေနျပီးသားမူဝါဒမ်ား စာရင္း မူရင္းကို အသံုးျပဳသည္။ ေမးလ္က spam မ်ားကို +ကာကြယ္ရန္ႏွင့္ အခ်ိဳ႕ေသာ မူရင္း ဖိုင္ေဝမွ်ျခင္း ports မ်ားသည္ Tor ကြန္ယက္ကို +ေႏွာင့္ယွက္ျခင္းကို ေလွ်ာ့ခ်ေပးသကဲ့သို႔ ျဖစ္သည္။ +

+

+checkbox ေတြရဲ႕ တစ္ခုခ်င္းစီဟာ သင့္ relay ကို ျဖတ္၍ access လုပ္တာကို Tor +အသံုးျပဳသူမ်ားအား သင္ခြင့္ျပဳႏိုင္တဲ့ အရင္းျမစ္အမ်ိဳးအစားကို +ကိုယ္စားျပဳပါတယ္။ အကယ္၍ အရင္းျမစ္အမ်ိဳးစား တစ္ခုခ်င္းစီအလိုက္ uncheck +လုပ္ခဲ့မယ္ဆိုရင္ သင့္ relay ကေန ၎အရင္းျမစ္မ်ားကို ရယူရန္ Tor +အသံုးျပဳသူမ်ားအား ခြင့္ျပဳလိမ့္မည္ မဟုတ္ေပ။ Misc +အျခားေသာဝန္ေဆာင္မႈမ်ား ဟု label တပ္ထားေသာ box ကို check +လုပ္ျပီးျပီးဆိုလွ်င္ အျခား checkboxes မ်ား အားျဖင့္ Tor အသံုးျပဳသူမ်ားဟာ +အျခားေသာ ဝန္ေဆာင္မႈမ်ား ကို ရယူႏိုင္ပါလိမ့္မည္။ သို႔မဟုတ္ Tor ၏ မူရင္း +ရွိေနျပီးသား မူဝါဒ။ +

+ +

+ပိုမိုျပည့္စံုရန္အတြက္ ရွိျပီးသား မူဝါဒ checkboxes မ်ား တစ္ခုခ်င္းစီကို +ေအာက္ေဖာ္ျပပါ သတ္မွတ္ထားေသာ port နံပါတ္မ်ား ဇယားကြက္ စားရင္းမ်ားက +ကိုယ္စားျပဳပါတယ္။ ေဖာ္ျပခ်က္ ေကာ္လံတြင္ အကယ္၍ ဆက္စပ္ေသာ box ကို check +လုပ္ခဲ့တယ္ဆိုလွ်င္ Tor clients မ်ား၏ အရင္းျမစ္မ်ားက သင့္ relay ကို ျဖတ္၍ +ရယူရန္ ခြင့္ျပဳတာကို ေဖာ္ျပေပးမည္ ျဖစ္သည္။ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CheckboxPortsေဖာ္ျပခ်က္
Websites80ပံုမွန္ encrypt မလုပ္ထားေသာ Web browsing
Secure Websites (SSL)443Web browsing ကို encrypt လုပ္ျခင္း
Retrieve Mail (POP, IMAP)110, 143, 993, 995Downloading email (အီးေမးလ္ေပးပို႔ျခင္းကို ခြင့္မျပဳ)
Instant Messaging (IM)703, 1863, 5050, 5190, 5222, 5223, 8300, 8888Instant messaging applications like MSN Messenger, AIM, ICQ, and Jabber
Internet Relay Chat (IRC)6660-6669, 6697, 7000-7001IRC clients and servers
Misc. အျခားေသာဝန္ေဆာင္မႈမ်ား*ျပီးခဲ့ေသာ checkboxes မ်ားသည္ အျခားေသာ applications မ်ားအားလံုးကို +မျခံဳငံုႏိုင္ပါ။
+ +

+အကယ္၍ သင့္ relay ကေန Tor အသံုးျပဳသူမ်ားက Tor ကြန္ယက္ ျပင္ပဆက္သြယ္မႈ +ျပဳလုပ္မည္ကို ခြင့္မျပဳဘူးဆိုလွ်င္ checkboxes ေတြအားလံုးကို uncheck +လုပ္ႏိုင္ပါတယ္။ သင္ checkboxes ကို uncheck လုပ္ခဲ့ရင္ေတာင္ သင့္ relay ဟာ Tor +ကြန္ယက္ကို အက်ိဳးျပဳေနအံုးမွာပါ။ သင့္ relayသည္ အျခားေသာ အသံုးျပဳသူမ်ားက Tor +ကြန္ယက္ကို ဆက္သြယ္ရန္ ခြင့္ျပဳလိမ့္မည္ ျဖစ္ျပီး အျခား Tor relays မ်ားအၾကား +relay လမ္းေၾကာင္းကိုလည္း ကူညီေပးလိမ့္မည္ ျဖစ္သည္။ +

+

+အကယ္၍ bridge relay ကို run ဖို႔ ေရြးခ်ယ္လိုက္တယ္ဆိုရင္၊bridge relays မ်ားသည္ +ရွိေနေသာ ဆက္သြယ္မႈမ်ားကို ခြင့္မျပဳဘူး ဆိုကတည္းက Exit Policies tab +သည္ မီးခိုးေရာင္ေျပာင္းသြားလိမ့္မည္။ Tor ကြန္ယက္ကို Tor clients မ်ား +ခ်ိတ္ဆက္မွသာ Bridges မ်ားကို အသံုးျပဳႏိုင္သည္။ +

+ + +
+

Port Forwarding

+

+မ်ားစြာေသာ အိမ္တြင္အသံုးျပဳသူမ်ားသည္ local ကြန္ယက္ေပၚရွိ ေျမာက္ျမားစြာေသာ +ကြန္ျပဴတာမ်ားကို တူညီေသာ အင္တာနက္ဆက္သြယ္မႈအား မွ်ေဝေပးရန္ +ခြင့္ျပဳေသာrouter မွတဆင့္ အင္တာနက္ကို ခ်ိတ္ဆက္ၾကသည္။ အခ်ိဳ႕ေသာ +အသံုးျပဳသူမ်ားသည္ အင္တာနက္ေပၚရွိ အျခားေသာ ကြန္ျပဴတာမ်ားမွ သင့္ကြန္ျပဴတာသို႔ +ဝင္ေရာက္လာသည့္ ဆက္သြယ္မႈမ်ားကို ပိတ္ဆို႔မည့္ firewall ၏ +အေနာက္တြင္လည္း ရွိေနတတ္သည္။ အကယ္၍ Tor relay ကို run ခ်င္တယ္ဆိုလွ်င္ အျခားေသာ +Tor clients မ်ားႏွင့္ relays မ်ားသည္ အိမ္သံုး router သို႔မဟုတ္ firewall +ကိုျဖတ္၍ သင္၏ relay ကို ခ်ိတ္ဆက္ရပါလိမ့္မယ္။ +

+ +

+သင့္ realy ကို အမ်ားက ဝင္ၾကည့္ႏိုင္ေအာင္ ျပဳလုပ္ရန္ port +forwardingကို ျပင္ဆင္ျခင္း အားျဖင့္ သင္၏ router သို႔မဟုတ္ firewall သည္ +သင့္ကြန္ျပဴတာကို ျဖတ္၍ မည္သည့္ ports မ်ားကို ခြင့္ျပဳရမယ္ဆိုတာ သိရွိရန္ +လိုအပ္ပါသည္။ Port forwarding ျပင္ဆင္ျခင္းသည္ သင္၏ router သို႔မဟုတ္ firewall +က ဆက္သြယ္မႈအားလံုးကို "forward" ျပဳလုပ္ရန္ သင္၏ router သို႔မဟုတ္ firewall က +ကြန္ျပဴတာေပၚရွိ local ports မ်ားကို ရရွိရန္ အတြက္ ျဖစ္သည္။ +

+ +

+port forwarding ျပဳလုပ္ရန္အလိုအေလ်ာက္ ျပင္ဆင္ရန္ ၾကိဳးစားျခင္း label +တပ္ထားေသာ box ကို check လုပ္ခဲ့လွ်င္ သင္၏ local ကြန္ယက္ ဆက္သြယ္မႈတြင္ +Vidalia သည္ အလိုအေလ်ာက္ port forwarding ျပဳလုပ္ရန္အတြက္ ျပင္ဆင္ဖို႔ ၾကိဳးစား +ေပးမွာ ျဖစ္ပါတယ္။ ထို႔ေၾကာင့္ တစ္ျခား Tor clients မ်ားဟာ သင့္ relay ကို +ဆက္သြယ္ႏုိင္မွာ ျဖစ္ပါတယ္။ routers အားလံုးကေတာ့ အလိုအေလ်ာက္ port forwarding +ျပဳလုပ္ျခင္းကို အေထာက္ကူေပးမွာ မဟုတ္ပါဘူး။Vidalia သည္ port forwarding ကို +အလိုအေလ်ာက္ set up ျပဳလုပ္ခဲ့လွ်င္ Test button ၏ ေဘးရွိ checkbox ကို +အသံုးျပဳႏိုင္ပါတယ္။ +

+ +

+Test butons သည္ port forwarding ကို set up ျပဳလုပ္ရန္အတြက္ Vidalia +သည္ unable ျဖစ္ေနသည္ကို ရွာေဖြေတြ႕ရွိခဲ့လွ်င္ router ရွိ ၎ feature ကုိ +enable လုပ္ျခင္း သို႔မဟုတ္ port forwarding ကို manual အားျဖင့္ set up +ျပဳလုပ္ဖို႔ လုိအပ္မွာ ျဖစ္ပါတယ္။ တစ္ခ်ိဳ႕ network ပစၥည္းမ်ားတြင္ +Universal Plug-and-Play (UPnP) လို႔ေခၚတဲ့ feature ရွိပါတယ္။ အကယ္၍ +router ၏ စီမံခန္႔ခြဲသူ မ်က္ႏွာစာကို သင္ ဝင္ၾကည့္ႏိုင္သည္ ဆိုလွ်င္ UPnP ကို +enable ျပဳလုပ္ရန္ option ကို ရွာေဖြသင့္ပါတယ္။ router အမ်ားစုအတြက္ +စီမံခန္႔ခြဲသူ မ်က္ႏွာစာကို Web browser တြင္ http://192.168.0.1 သို႔မဟုတ္ http://192.168.1.1 ကို ဖြင့္ျခင္းအားျဖင့္ +ဝင္ၾကည့္ႏိုင္ပါတယ္။ မ်ားစြာေသာ အခ်က္အလက္မ်ားအတြက္ သင့္ router ၏ +ညႊန္ၾကားခ်က္မ်ားကို manual အားျဖင့္ အၾကံဉာဏ္ယူသင့္ပါတယ္။ +

+ +

+port forwarding ကို manual အားျဖင့္ set up လုပ္ဖို႔ လိုအပ္ခဲ့လွ်င္ +portforward.com ဝက္ဘ္ဆိုက္တြင္ routers ႏွင့္ firewalls အမ်ိဳးစံုအတြက္ +port forwarding ကို မည္သို႔ set up ျပဳလုပ္ရမည္ဆိုေသာ လမ္းညႊန္ခ်က္မ်ား +ရွိပါတယ္။ အနိမ့္ဆံုးအေနႏွင့္ အျခားေသာ Windows ႏွင့္ 9001 operating systems +မ်ားတြင္ မူရင္းတန္ဖိုး port 443 ျဖစ္ေနေသာRelay Port ကို forward +ျပဳလုပ္ေပးဖို႔ လိုအပ္မွာ ျဖစ္ပါတယ္။ Mirror the relay directory label +တပ္ထားေသာ checkbox ကို check လုပ္ျပီးျပီ ဆိုလွ်င္ Directory +Portကိုလည္း forward ျပဳလုပ္ေပးဖို႔ လိုအပ္မွာ ျဖစ္ပါတယ္။ Directory +Port သည္ opreating systems မ်ားအားလံုးတြင္ မူရင္းတန္ဖိုး port 9030 အျဖစ္ +ရွိေနမွာပါ။ +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/services.html vidalia-0.2.15/src/vidalia/help/content/bms/services.html --- vidalia-0.2.10/src/vidalia/help/content/bms/services.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/services.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,144 @@ + + + + + + +

Hidden Services

+
+ +သတိျပဳရန္၊ Vidalia ရွိ Hidden service အတြက္ ေထာက္ပံ့မႈသည္ အသစ္ျဖစ္ပါသည္။ bug +မ်ားလည္းရွိေနႏိုင္ၿပီး သင္၏ hidden service configuration ကိုလည္း +အေႏွာင့္အယွက္ေပးႏိုင္သည္။ ထို႔ေၾကာင့္ ထိုတခုထဲကို ပံုေအာအားမကိုးပါႏွင့္။ bug +သို႔မဟုတ္ feature အသစ္အတြက္ မွတ္ခ်က္ရွိပါက အသိေပးပါ။ +

hidden service ဆိုတာဘာလဲ

+

+hidden service က သင့္ကို HTTP service သို႔မဟုတ္ IP လိပ္စာမေဖာ္ျပပဲလုပ္ရသည့္ +TCP အေျခခံ service အကုန္ ေထာက္ပံ့ေပးႏိုင္ပါသည္။ hidden service +ကိုေထာက္ပံ့ေပးမည့္ protocol ကို Tor က လံုၿခံဳေရးအတြက္အသံုးျပဳထားသည့္ +အခ်က္အလက္မ်ားရွိသည့္ circuit မ်ားတြင္ တည္ေဆာက္ထားပါသည္။ +

+ +

+hidden service အတြက္ အေသးစိတ္အခ်က္လက္မ်ားကို Tor's design paper +(doc/design-paper/tor-design.pdf) သို႔မဟုတ္ Rendezvous Specification +(doc/spec/rend-spec.txt)၏ က႑ ၅ တြင္ဖတ္ပါ။ +

+ +
+

hidden service ကိုဘယ္လို ေထာက္ပံ့ေပးရမလဲ

+

+hidden service ကိုေထာက္ပံ့ျခင္းတြင္ အနည္းဆံုးအဆင့္ ၂ ခုရွိပါသည္ +

    +
  1. web server ကိုသြင္းယူျခင္း (IRC ကဲ့သို႔ သင္ေထာက္ပံ့လိုေသာ မည္သည့္ service +မဆို၏ဆာဗာအတြက္) local request မ်ားကိုၾကည့္ပါ။
  2. +
  3. သင္၏ hidden service ကို configure လုပ္ပါ။ ထိုအခါမွ သင့္ local server ထဲကို +Tor user မ်ားထံမွ relay request မ်ားေရာက္ပါမည္။
  4. +
+Tor website (https://www.torproject.org/docs/tor-hidden-service.html)တြင္ +အေသးစိတ္ကို အဆင့္လိုက္ျပထားေသာ tutorial ေကာင္းမ်ားရွိပါသည္။ +

+ +
+

ဘယ္ေဒတာေတြကို ေထာက္ပံ့ေပးဖို႔လိုသလဲ။

+

+service table တြင္ configured hidden အေၾကာင္းပါဝင္ေသာ colum ၅ ခုပါရွိသည္။ +

    +
  • Onion လိပ္စာ (ေဖာ္ျပျပီး): Tor သည္ သင့္ဝန္ေဆာင္မႈကို ေရြးထုတ္ျခင္းအားျဖင့္ +ဝန္ေဆာင္မႈ (သို႔မဟုတ္ onion) လိပ္စာကို ေဖာ္ျပေပးပါသည္။ ဝန္ေဆာင္မႈကို +ရယူႏိုင္ေသာ သူေတြကို onion လိပ္စာကို ေပးပါ။ "Copy to clipboard" button ကို +typos အား ေရွာင္ၾကဥ္ရန္ အသံုးျပဳႏိုင္သည္။ အကယ္၍ ဝွက္ထားေသာ ဝန္ေဆာင္မႈကို +ဖန္တီးျပီးသြားခဲ့လွ်င္ "[Created by Tor]" လို႔ ေျပာလိမ့္မည္။ onion လိပ္စာ +အစစ္မွန္ကို ျပသရန္ အလို႔ငွာ သင့္ ျပင္ဆင္ခ်က္မ်ားကို သိမ္းထားရန္ လိုအပ္ျပီး +setting မ်ား၏ window ကို ျပန္ဖြင့္ရ လိုအပ္မည္ ျဖစ္သည္။
  • +
  • Virtual Port (လိုအပ္သည္): ၎သည္ သင့္ဝန္ေဆာင္မႈကို ရယူရန္ အလို႔ငွာ client က +သိရန္ လိုအပ္ေသာ TCP port ျဖစ္သည္။ ပံုမွန္အားျဖင့္ သတ္မွတ္ထားေသာ ဝန္ေဆာင္မႈ +port ကို အသံုးျပဳလိမ့္မည္။ ဥပမာ HTTP အတြက္ port 80 ။ virtual port သည္ +ပံုမွန္အားျဖင့္ firewall setting မ်ားႏွင့္ ျပဳလုပ္ရန္ မရွိပါ +အဘယ့္ေၾကာင့္ဆုိေသာ္ ၎သည္ Tor ကို internally သာ အသံုးျပဳေသာေၾကာင့္ ျဖစ္သည္။
  • +
  • Target (optional): "Virtual Port" ထဲရွိ သင္သတ္မွတ္ထားသည့္ တစ္ခုထက္ မတူညီေသာ +port ေပၚရွိ localhost ကို Tor ဆီမွ relay ဆက္သြယ္မႈ request +ပံုမွန္ျပဳလုပ္လိမ့္မည္။ ထို႔ေၾကာင့္ ဦးတည္ခ်က္ပါဝင္ေသာ physical လိပ္စာကို +သင္သတ္မွတ္ႏိုင္ျပီး port ဆီမွ သင့္ဝွက္ထားေသာ ဝန္ေဆာင္မႈဆီသို႔ redirect +ျပဳလုပ္ရန္ request လုပ္ႏိုင္သည္။ ဥပမာ localhost:5222 သို႔ (သို႔မဟုတ္ port +သည္ သင့္ဆာဗာကို မည္သို႔ listen ျပဳလုပ္သည္ျဖစ္ေစ)။ မည္သည့္ ဦးတည္ခ်က္ကိုမွ +သင္မသတ္မွတ္ ႏိုင္ခဲ့လွ်င္ localhost ထဲရွိ "Virtual Port" ထဲတြင္ port +သတ္မွတ္ရန္ Tor က request မ်ားကို redirect လုပ္လိမ့္မည္။
  • +
  • Service Directory (required): Tor သည္ သပ္သပ္စီ ခြဲထုတ္ထားေသာ directory +ထဲတြင္ အခ်ိဳ႕ ဝွက္ထားေသာ ဝန္ေဆာင္မႈ သတ္မွတ္ခ်က္ဖိုင္မ်ားကို သိမ္းထားရန္ +လိုအပ္သည္။ ဥပမာ- private key ႏွင့္ onion လိပ္စာ ပါဝင္ေသာ hostname ဖိုင္။ ၎ +directory သည္ ဝန္ေဆာင္မႈက ေထာက္ပံ့ေပးေသာ content မ်ားပါဝင္ေသာ directory +ႏွင့္ ကြဲျပားသင့္သည္။ ဝန္ေဆာင္မႈ directory အတြက္ အေကာင္းဆံုး ေနရာသည္ Tor ၏ +data directory ထဲတြင္ directory အခြဲတစ္ခုသာ ျဖစ္သင့္သည္။ run ေနေသာ +ဝန္ေဆာင္မႈ၏ directory ကို မေျပာင္းႏိုင္သည္ကို မွတ္ထားပါ။ (၎ကို ခြင့္ျပဳရန္ +မျဖစ္ႏိုင္ပါ အဘယ့္ေၾကာင့္ဆိုေသာ္ သင့္ hard disk ေပၚရွိ directory မ်ားကို +ဖယ္ထုတ္ရန္ အေထာက္ကူမေပးႏိုင္ပါ) အကယ္၍ အျခားေသာ directory သို႔ ဝွက္ထားေသာ +ဝန္ေဆာင္မႈကို ေရႊ႕ေျပာင္းခ်င္လွ်င္ ေက်းဇူးျပဳ၍ ေအာက္ပါအတိုင္း ျပဳလုပ္ပါ: +Vidalia ထဲရွိ ဝန္ေဆာင္မႈကို disable ျပဳလုပ္ရန္ စတင္ပါ။ ျပင္ဆင္ခ်က္မ်ားကို +သိမ္းပါ။ ထို႔ေနာက္ သင့္ hard disk ေပၚက directory ကို ေနရာအသစ္သို႔ ေရႊ႕ပါ။ +Vidalia ထဲရွိ directory ကို ေနရာ အသစ္သို႔ ေျပာင္းပါ။ ဝန္ေဆာင္မႈကို enable +လုပ္ပါ။ ျပင္ဆင္ခ်က္အသစ္ကို သိမ္းပါ။
  • +
  • Enabled: အကယ္၍ checkbox ကို disable လုပ္ထားလွ်င္ Vidalia သည္ Tor ထဲရွိ +ဝွက္ထားသည့္ ဝန္ေဆာင္မႈကို မျပင္ဆင္ႏိုင္ပါ။ ၎သည္ လက္ရွိအသံုးမလိုေသာ +ဝန္ေဆာင္မႈ၏ ျပင္ဆင္ခ်က္မ်ားကို သိမ္းထား ျခင္းအားျဖင့္ ေနာက္ပိုင္းအသံုးျပဳရန္ +အသံုးဝင္ႏိုင္သည္။ enable မလုပ္ထားေသာ ဝန္ေဆာင္မႈမ်ား အားလံုးကို သတ္မွတ္ထားေသာ +Vidalia ျပင္ဆင္ခ်က္ ဖိုင္ vidalia.conf ထဲတြင္ သိမ္းထားသည္။
  • +
+

+ +
+

button ငါးခုက ဘာအတြက္ အသံုးျပဳတာလဲ?

+

+

    +
  • ဝန္ေဆာင္မႈမ်ားကိုထပ္ေပါင္းျခင္း: ဝန္ေဆာင္မႈအသစ္ ျပင္ဆင္မႈမ်ားကို ဖန္တီးပါ။
  • +
  • ဝန္ေဆာင္မႈမ်ားကိုျဖဳတ္ျခင္း: ဝွက္ထားေသာ ဝန္ေဆာင္မႈ ျပင္ဆင္ျခင္းမ်ားကို ထာဝရ +ျဖဳတ္ပစ္သည္။ (အကယ္၍ ဝန္ေဆာင္မႈကို ယာယီျဖဳတ္ခ်င္လွ်င္ enable လုပ္ထားျပီးသား +checkbox ကို uncheck လုပ္ပါ။)
  • +
  • Copy to clipboard: clipboard သို႔ onion လိပ္စာကို ကူးပါ။ ထို႔ေၾကာင့္ +သင့္ဝန္ေဆာင္မႈကို မည္သူမဆို အသံုးျပဳရန္ ေျပာျပႏိုင္ပါသည္။
  • +
  • Browse: local ဝန္ေဆာင္မႈ directory ကို ရွာေဖြရန္ ခြင့္ျပဳသည္။
  • +
+

+ +
+

အဆင့္ျမင့္ ဝွက္ထားေသာ ဝန္ေဆာင္မႈ setting မ်ားကို ျပင္ဆင္ႏိုင္ပါသလား?

+

+Tor သည္ ဝွက္ထားေသာ ဝန္ေဆာင္မႈမ်ား အတြက္ သတ္မွတ္ထားေသာ setting မ်ားကို +ျပင္ဆင္ရန္ ခြင့္ျပဳပါသည္။ ဥပမာ မိတ္ဆက္ ပြိဳင့္မ်ား အျဖစ္ ေသခ်ာေသာ node +မ်ားကို အသံုးျပဳရန္ (သို႔မဟုတ္ ေရွာင္ၾကဥ္ရန္) သို႔မဟုတ္ တူညီေသာ +ဝန္ေဆာင္မႈအတြက္ မ်ားစြာေသာ virtual port မ်ားကို ေထာက္ပံ့ေပးရန္ တို႔ ျဖစ္သည္။ +

+ +

+ဘယ္လိုပဲျဖစ္ျဖစ္ ကၽြႏု္ပ္တို႔သည္ ဘံု setting မ်ားကိုသာ ေထာက္ပံ့ေပးရန္ ႏွင့္ +Vidalia ထဲရွိ အရာမ်ားကို သတ္မွတ္ရန္ ဆံုးျဖတ္ခဲ့ပါသည္။ အကယ္၍ အဆင့္ျမင့္ +setting မ်ားကို ျပင္ဆင္ခ်င္လွ်င္ Tor torrc ဖိုင္ထဲတြင္ ျပဳလုပ္ရန္ +လိုအပ္ပါသည္။ ဝွက္ထားေသာ ဝန္ေဆာင္မႈမ်ားကို တည္းျဖတ္ေနတဲ့ အခါမွာေတာင္ Vidalia +က ၎ setting မ်ားကို ဖယ္ထုတ္ လိမ့္မည္ မဟုတ္ပါ။ အကယ္၍ virtual port +တစ္ခုထက္ပို၍ သတ္မွတ္ခ်င္လွ်င္ ပထမဦးစြာ ေဖာ္ျပေပးလိမ့္မည္ ျဖစ္ျပီး +တည္းျဖတ္ႏိုင္ပါလိမ့္မည္။ +

+ +
+

အျခား ဝွက္ထားေသာ ဝန္ေဆာင္မႈမ်ားကို ရယူရန္ Vidalia က ဘယ္လိုလုပ္သလဲ?

+

+ထိုကဲ့သို႔ ျပဳလုပ္ရန္ မလိုအပ္ပါ။ အကယ္၍ အျခားေသာ ဝွက္ထားေသာ ဝန္ေဆာင္မႈကို +ရယူခ်င္လွ်င္ ဝန္ေဆာင္မႈ၏ onion လိပ္စာကို သင့္ browser ထဲတြင္ ရိုက္ထည့္ပါ။ +(သို႔မဟုတ္ web ဝန္ေဆာင္မႈ မဟုတ္လွ်င္ သင့္ေလွ်ာ္ေသာ client application +ကိုသံုးပါ)။ က်န္တာကို Tor က ျပဳလုပ္ေပးပါမည္။ အဲ့ဒိအတြက္ Tor ကို အေထြထူး +ျပင္ဆင္ရန္ မလိုအပ္ပါ။ +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/bms/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/bms/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/bms/troubleshooting.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/bms/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,165 @@ + + + + + + +

အကူအညီ

+
+ +ေအာက္ပါ စာရင္းမ်ားသည္ ဘံုျပႆနာမ်ား သို႔မဟုတ္ Tor ကို run ေနတဲ့အခ်ိန္မွာ +လူေတြ ေမးတတ္တဲ့ ေမးခြန္းမ်ား ျဖစ္သည္။ အကယ္၍ ျပႆနာအခ်က္အလက္မ်ား အေၾကာင္း +တစ္စံုတစ္ခုကို ရွာေဖြမေတြ႕ဘူးဆိုလွ်င္ အေထာက္ကူျပဳ အခ်က္အလက္မ်ား အတြက္ +www.vidalia-project.net ဆိုက္မွာ ရွာၾကည့္ပါ။
+

Tor ကို မစတင္ႏိုင္ပါ။

+

+Vidalia သည္ Tor ကို မစတင္ႏိုင္သည့္ အေၾကာင္းရင္းသည္ Tor installation +လမ္းေၾကာင္းအမွား ထဲကို သြားရွာေဖြေန၍ ျဖစ္သည္။ အေထြေထြျပင္ဆင္မႈ settingsထဲရွိ Tor +Executable option ကို update ျပဳလုပ္ျခင္းအားျဖင့္ Vidalia ကို Tor ရဲ႕ +တည္ေနရာအား ေျပာျပႏိုင္ပါတယ္။ +

+

+အျခားျဖစ္ႏိုင္ေျခရွိသည့္ အေၾကာင္းရင္းမွာ အျခား Tor process သည္ run +ႏွင့္ေနျပီး ျဖစ္၍ Tor မစတင္ႏိုင္ျခင္း ျဖစ္သည္။ အကယ္၍ သင္ရွာေဖြေတြ႕ခဲ့လွ်င္ +run ေနေသာ process မ်ားစာရင္း ကို စစ္ေဆးၾကည့္ျပီး အရင္ run ေနေသာ Tor process +ကို ရပ္တန္႔ပစ္ပါ။ ထို႔ေနာက္ ေနာက္တစ္ၾကိမ္ Tor ကို ျပန္ run ၾကည့္ပါ။ +

+

+အကယ္၍ ၎သည္ အကူညီမရဘူးဆိုလွ်င္ အကယ္၍ စတင္ရန္ ၾကိဳးစားတဲ့အခ်ိန္မွာ +ၾကံဳေတြ႕ရမယ့္ အမွားအယြင္းမ်ား ႏွင့္ သက္ဆုိင္ေသာ အခ်က္အလက္မ်ားကို Tor က +ျပသတာကို message log တြင္ျမင္ေတြ႕ရန္ check လုပ္ပါ။ +

+ + +

Tor ကို Vidalia ဆက္သြယ္၍ မရပါ။

+

+Tor ၏ ထိန္းခ်ဳပ္မႈ portမွတဆင့္ ဆက္သြယ္ျခင္းအားျဖင့္ Vidalia သည္ Tor +ကို ကြပ္ကဲႏိုင္သည္။ +

+

+အမ်ားအားျဖင့္ တူညီေသာ အေၾကာင္းရင္းမွာ Tor စတင္ေန၍ Vidalia သည္ Tor ကို +မခ်ိတ္ဆက္ႏိုင္ျခင္း ျဖစ္သည္။ သို႔ေသာ္ အမွားအယြင္း ၾကံဳျပီး ရုတ္တရက္ ထြက္သြား +လိမ့္မည္။ စတင္တဲ့အခ်ိန္မွာ Tor က အမွားယြင္းတစ္ခုခုကို တင္ျပခဲ့လွ်င္ message logကို ေတြ႕ျမင္ရန္ check လုပ္ပါ။ +

+

+အကယ္၍ Vidalia ေမွ်ာ္မွန္းတာထက္ Tor က မတူညီေသာ port ေတြေပၚမွာ နားေထာင္ေနလွ်င္ +Vidalia က Tor ဆက္သြယ္မႈကို ျဖတ္ခ်လိုက္မွာ ျဖစ္ပါတယ္။ ၎ setting ကို +ေျပာင္းလဲဖို႔ လိုအပ္မွာ ျဖစ္ပါတယ္။ ဒါေပမယ့္ အျခား ဝန္ေဆာင္မႈ တစ္ခုခုက +သင့္စက္ေပၚတြင္ run ေန၍ Tor ၏ ထိန္းခ်ဳပ္မႈ port ႏွင့္ ပဋိပကၡ ျဖစ္ေနခဲ့လွ်င္ +သင္အေနႏွင့္ မတူညီေသာ port တစ္ခုကို သတ္မွတ္ေပးဖို႔ လိုပါလိမ့္မယ္။ Vidalia ၏ +အဆင့္ျမင့္ ျပင္ဆင္ႏိုင္ေသာ settingsတြင္ +၎ကို ျပင္ဆင္ႏိုင္ပါသည္။ +

+ + +

Vidalia က "control password" အတြက္ ဘာလို႔ လာေမးေနတာလဲ?

+

+Vidalia သည္ Tor softwareကို Tor ၏ "control port" မွတဆင့္ +အျပန္အလွန္ဆက္သြယ္ပါတယ္။ control port က Vidalia ကို Tor ၏ ေနာက္ဆံုးရ +အခ်က္အလက္မ်ားကို ရရွိေစျခင္း၊ identity အသစ္ကို ေတာင္းဆိုေပးျခင္း၊ Tor ၏ +setting ကို ျပင္ဆင္ ေပးျခင္း စသည္တို႔ကို လုပ္ေဆာင္ေပးပါသည္။ Vidalia သည္ Tor +ကို စတင္လိုက္တိုင္းမွာ အျခား application မ်ားက ထိန္းခ်ဳပ္မႈ port ကို +ဆက္သြယ္ျခင္းမွ ကာကြယ္ရန္ Tor ၏ control port အတြက္ က်ပန္း password ကို +ထုတ္ေပးပါသည္။ ျပီးေနာက္ သင္မည္သူမွန္း မသိေအာင္ ေျခရာေဖ်ာက္ေပးပါသည္။ +

+ +

+ပံုမွန္အားျဖင့္ က်ပန္း password ထုတ္ေပးျခင္းႏွင့္ အသစ္ထုတ္ေပးျခင္းမ်ားသည္ +ေနာက္ကြယ္တြင္ ျဖစ္ေလ့ရွိပါတယ္။ Vidalia က သင့္ကို password ထုတ္ေပးမယ့္ +ေနရာတြင္ ဘံုတူညီေသာ အေျခအေန သံုးမ်ိဳးရွိပါတယ္။ : +

+ +
+ + + +

ရုတ္တရက္ Tor ထြက္သြားလွ်င္

+

+အကယ္၍ စတင္ျပီး မၾကာခင္မွာ ရုတ္တရက္ Tor ထြက္သြားလွ်င္ အျခား Tor process သည္ +run ႏွင့္ေနျပီး ျဖစ္ေသာေၾကာင့္ ျဖစ္သည္။ အဝါေရာင္ highlight ျပထားေသာ +စာရင္းထဲရွိ မည္သည့္ messages အနည္းငယ္ကို မဆို ျမင္ေတြ႕ရန္ message logကို စစ္ေဆးပါ။ ၎ႏွင့္ အလားသ႑ာန္တူ message +မ်ားမွာ ေအာက္ပါအတိုင္းျဖစ္သည္။ : +

+
+connection_create_listener(): 127.0.0.1:9050 ကိုမေပါင္းႏိုင္ပါ။: ဤလိပ္စာသည္အသံုးလွ်က္ရွိသည္။ 
+Tor သည္ run ႏွင့္ေနျပီလား?
+
+

+အကယ္၍ အထက္ပါကဲ့သို႔ အမွားယြင္း message ကိုေတြ႕လွ်င္ Vidalia ႏွင့္ Tor +process အသစ္တစ္ခု မစတင္ခင္မွာ အျခား Tor process ကို ရပ္တန္႔ပစ္ဖို႔ လိုပါတယ္။ +Windows မွာဆိုရင္ သင့္ရဲ႕ Task Manager ထဲက tor.exe ကို ရွာေဖြရပါမယ္။ +အျခား Opreating systems ေတြမွာဆိုရင္ေတာ့ ps command ဟာ အျခား Tor +process ကို ရွာေဖြဖို႔ ကူညီေပးပါလိမ့္မယ္။ +

+

+အကယ္၍ အခ်ိန္အနည္းငယ္(စကၠန္႔အနည္းငယ္)အတြင္း Tor သည္ေအာင္ျမင္စြာ run +ႏိုင္ခဲ့လွ်င္ သင္အေနႏွင့္ မထြက္ခင္ Tor ၏ အမွားအယြင္းမ်ားဆိုင္ရာ +အခ်က္အလက္အတြက္ message log ကို စစ္ေဆးၾကည့္သင့္သည္။ +

+ + +

Vidalia သည္ Tor ကို မရပ္တန္႔ႏိုင္ပါ။

+

+အကယ္၍ Vidalia သည္ Tor ကို မရပ္တန္႔ႏိုင္လွ်င္ ထြက္ေနတုန္း အမွားအယြင္း +တစ္ခုခုကို Tor တင္ျပတဲ့အခါျမင္ရန္ message log ကို +စစ္ေဆးသင့္ပါသည္။ +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/bridges.html vidalia-0.2.15/src/vidalia/help/content/cs/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/cs/bridges.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,71 @@ + + + + + + +

Bridge Relays

+
+ + +

What are bridge relays?

+

+Some Internet Service Providers (ISPs) attempt to prevent users from +accessing the Tor network by blocking connections to known Tor +relays. Bridge relays (or bridges for short) are relays that help +these censored users access the Tor network. Unlike other Tor relays, +bridges are not listed in the same public directories as normal +relays. Since there is no complete public list of them, even if your ISP is +filtering connections to all the known Tor relays, they probably won't be +able to block all the bridges. +

+ +
+

How do I find a bridge relay?

+

+There are two main ways to learn about a bridge address: +

    +
  1. Get some friends to run private bridges for you
  2. +
  3. Use some of the public bridges
  4. +
+

+ +

+To use private bridges, ask your friends to run Vidalia and Tor in an +uncensored area of the Internet, and then click on Help censored +users in Vidalia's Relay settings page. Then +they should privately send you the Bridge address line at the bottom +of their Relay page. Unlike running an exit relay, running a bridge relay +just passes data to and from the Tor network, so it shouldn't expose the +operator to any abuse complaints. +

+ +

+You can find public bridge addresses by visiting +https://bridges.torproject.org. The answers you get from that page +will change every few days, so check back periodically if you need more +bridge addresses. Another way to find public bridge addresses is to send +mail to bridges@torproject.org with the line get bridges by +itself in the body of the mail. However, so we can make it harder for an +attacker to learn lots of bridge addresses, you must send this request from +a Gmail account. +

+ +

+Configuring more than one bridge address will make your Tor connection more +stable, in case some of the bridges become unreachable. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/config.html vidalia-0.2.15/src/vidalia/help/content/cs/config.html --- vidalia-0.2.10/src/vidalia/help/content/cs/config.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,185 @@ + + + + + + +

Configuring Vidalia and Tor

+
+ +

+Vidalia allows you to configure some of the most commonly modified aspects +of Vidalia and Tor. It also lets you set up and manage a Tor relay so you can help the Tor network grow. +

+ + +

General Settings

+

+Settings on the General page are the most commonly modified settings. +

+
    +
  • Tor Executable: This is the Tor executable that Vidalia will run when +you select Start from the tray menu. If you have multiple versions of +Tor installed, you can tell Vidalia which version you would like to run by +clicking the Browse button and navigating to the particular Tor +installation you want. +
  • +
  • Startup Options: This setting allows you to have Vidalia +automatically start Tor when Vidalia starts. You can also configure Vidalia +to run when your system starts (Windows only). +
  • +
+ +
+

Network Settings

+

+The Network settings page lets you change how Tor connects to the Tor +network. +

+
+ + +

Relay Settings

+

+ See this help topic for detailed information +about setting up and managing a Tor relay. +

+ + +

Appearance Settings

+

+The settings on the Appearance page allow you to customize the look +and feel of Vidalia. +

+
    +
  • Language: Vidalia's interface has been translated into many languages +by helpful volunteers. When Vidalia is first run, it will try to guess which +language your computer is currently using. If Vidalia guesses incorrectly, +or if you prefer a different language, you can choose another language from +the dropdown box. You will need to restart Vidalia after changing the +displayed language for the changes to take effect. +
  • +
  • Style: In most cases, Vidalia will default to using your platform's +default interface style. If you dislike the default, you can choose +whichever interface style you prefer from the dropdown box. +
  • +
+ +
+

Advanced Settings

+

+The settings on the Advanced page should generally only be modified +by more experienced users. +

+
    +
  • Control Address & Port: The Control Port is the port which +Vidalia uses to talk to Tor. This doesn't need to be changed unless you +have a conflict with another service on your machine, or if you are using +Vidalia to control and monitor a Tor process running on another machine. +
  • +
  • Control Port Authentication: Control port authentication is used to +limit the applications on your machine that can connect to and reconfigure +your Tor installation. The available authentication methods are: +
      +
    • + None -- No authentication is required. Use of this option is +strongly discouraged. Any application or user on your computer can +reconfigure your Tor installation. +
    • +
    • + Password (Default) -- If this method is selected, you can +specify a password that Tor will require each time a user or application +connects to Tor's control port. If Vidalia starts Tor for you, you can have +Vidalia randomly generate a new password each time it starts Tor by checking +the Randomly Generate checkbox. +
    • +
    • + Cookie -- If cookie authentication is selected, Tor will write a file +(or, cookie) containing random bytes to its data directory when it +starts. Any user or application that tries to connect to Tor's control port +must be able to provide the contents of this cookie. +
    • +
    +
  • +
  • Tor Configuration File (optional): You can use this option to +have Vidalia start Tor using a specific torrc, Tor's configuration +file. If you leave this field blank, Tor will uses its own default torrc +location. +
  • +
  • Tor Data Directory (optional): You can specify the directory +in which Tor will store its saved data, such as cached Tor relay +information, Tor relay keys, and configuration files. If you leave this +field blank, Tor will use its own default data directory location. +
  • +
  • Permissions (optional, not available on Windows): If you enter +a value for Run as User, Tor will setuid to this user when it +starts. If you enter a value for Run as Group, Tor will +setgid to this group when it starts. +
  • +
+ +
+

Hidden Service Settings

+

+Hidden services allow you to provide any kind of TCP-based service, e.g. an +HTTP service, to others without revealing your IP address. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/index.html vidalia-0.2.15/src/vidalia/help/content/cs/index.html --- vidalia-0.2.10/src/vidalia/help/content/cs/index.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/index.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,41 @@ + + + + + + +

Vidalia Help

+
+ +

+Select a help topic from the tree on the left or click on the Search button +above the list of topics to search through all available help topics. +

+ +

+You can use the Find button on the toolbar above to search within a +particular help topic. +

+ +

+The Home button above will bring you back to this home page. +

+ +

+See the Helpful Links topic for some places you can +visit to find additional help and information about Vidalia and Tor. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/links.html vidalia-0.2.15/src/vidalia/help/content/cs/links.html --- vidalia-0.2.10/src/vidalia/help/content/cs/links.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/links.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,67 @@ + + + + + + +

Helpful Links

+
+ +

Vidalia

+ + + + + + + + + + + +
   Homepage + +https://www.torproject.org/vidalia/ +
   Wiki and Bugtracker + http://trac.torproject.org/ +
+ +

Tor

+ + + + + + + + + + + + + + + + +
   Homepage + https://www.torproject.org/ +
   FAQ + +https://www.torproject.org/docs/faq.html +
   Wiki and Bugtracker + https://trac.torproject.org/ +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/log.html vidalia-0.2.15/src/vidalia/help/content/cs/log.html --- vidalia-0.2.10/src/vidalia/help/content/cs/log.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,102 @@ + + + + + + +

Message Log

+
+ +The message log lets you see status information about a running Tor +process. Each message has a severity associated +with it, ranging from Error (most serious) to Debug (most +verbose). See the help section on message +severities for more information. +

Message Severities

+

+A message's severity tells you how important the message is. A higher +severity message usually indicates that something has gone wrong with +Tor. Lower severity messages appear frequently during normal Tor operations +and usually do not need to be logged. +

+ +

+The possible message severities, from most severe to least severe, are: +

+
    +
  • + Error: Messages that appear when something has gone very wrong and +Tor cannot proceed. These messages will be highlighted in red in the +message log. +
  • +
  • + Warning: Messages that only appear when something has gone wrong with +Tor, but are not fatal and Tor will continue running. These messages will be +highlighted in yellow. +
  • +
  • + Notice: Messages that appear infrequently during normal Tor operation +and are not considered errors, but you still may care about. +
  • +
  • + Info: Messages that appear frequently during normal Tor operation and +are not usually of interest to most users. +
  • +
  • + Debug: Extremely verbose messages that are primarily of interest to +developers. You should generally not log debug messages unless you know what +you are doing. +
  • +
+ +

+Most users should only log Error, Warning, and Notice +messages. +

+ +

+To select which message severities you would like to see, do the following: +

    +
  1. Open the message log from the Vidalia tray menu.
  2. +
  3. Click on Settings at the top of the message log window.
  4. +
  5. + Check message severities you would like to see from the Message Filter group +on the left and uncheck message severities you would like to hide. +
  6. +
  7. Click Save Settings to apply your new message filter.
  8. +
+

+ + +
+

Logging to a File

+

+Vidalia can also write log messages to a file, as well as logging them in +the message log window. To enable logging to a file, follow these steps: +

+ +
    +
  1. Open the message log from the Vidalia tray menu.
  2. +
  3. Click on Settings at the top of the message log window.
  4. +
  5. Check the box labeled Automatically save new log messages to a file.
  6. +
  7. + If you would like to change the file to which messages will be written, +either type the path and filename into the text box, or click Browse +to navigate to a location for your log file. +
  8. +
  9. Click Save Settings to save your log destination.
  10. +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/netview.html vidalia-0.2.15/src/vidalia/help/content/cs/netview.html --- vidalia-0.2.10/src/vidalia/help/content/cs/netview.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,174 @@ + + + + + + +

Network Viewer

+
+ +

+The network viewer lets you see relays in the Tor network and where your +traffic is going. +

+ + +
+

Overview

+

+When you want to communicate anonymously through Tor (say, connecting to a +website), Tor creates a tunnel, or circuit, of encrypted connections +through a series of relays on the network. Your application's traffic is +then sent as a stream through that circuit. For efficiency, multiple +streams may share the same circuit. +

+ +
+

Network Map

+

+The network map consists of a map of the world, with red pinpoints +indicating the geographic location of relays in the Tor network. Green lines +are drawn between relays to indicate the path of circuits that your Tor +client has created through the Tor network. +

+

+You can zoom in on locations in the map by clicking the Zoom In and +Zoom Out buttons in the toolbar. You can also scroll around on the +map by clicking on the map and then dragging it in whatever direction you +would like to move the map. +

+

+The geographic location of a Tor relay is determined by looking up the IP +address of the relay in a GeoIP database, created by MaxMind and located at +geoip.vidalia-project.net. +

+

+In the middle of the dialog, below the network map, you will see a list of +your current circuits, as well as any application traffic currently on those +circuits. When the network map first loads, you will probably see a +connection to geoip.vidalia-project.net, which occurs when Vidalia is +looking up geographic information for the list of Tor relays. It is +important to note that this request is done through Tor, so your location is +not revealed to the GeoIP relay. The results of the lookups will be cached +locally in order to reduce load on Vidalia's GeoIP relays. +

+ + +
+

Relay Status

+

+On the left side of the network view, you will see a list of relays in the +Tor network. Next to each relay is an icon indicating that relay's status. +The following table summarizes the possible relay status icons: +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ The relay is offline or simply not responding. +
+ The relay is hibernating, meaning it is online, but has used up as +much bandwidth as the operator is willing to allow for a given time period. +
+ The relay is online, but has shown only minimal throughput. +
+ The relay is online and has shown a throughput >= 20 KB/s. +
+ The relay is online and has shown a throughput >= 60 KB/s. +
+ The relay is online and has shown a throughput >= 400 KB/s. +
+

+

+All bandwidth values are estimates based on the minimum of either the +maximum bandwidth sustained input or output over any ten second period in +the past day. +

+ + +
+

Relay Details

+

+The relay details panel at the right side of the screen gives you details +about the relay or relays currently selected in the relay list. If you have selected a circuit or stream +in the list of your current circuits and streams, this panel will show you +details about each relay through which your traffic is currently being sent. +

+

+The fields that you may see in the panel are as follows (Note: not +all of these fields will always be present): +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
LocationThe geographic location of this Tor relay.
IP AddressIP address at which this Tor relay can be reached.
Platform + Operating system information and Tor version on which this relay is +currently running. +
Bandwidth + Estimated maximum amount of bandwidth that the directory relays have seen +this relay handle recently. +
Uptime + Length of time this relay has been available, which can be used to help +estimate this relay's stability. +
Last UpdatedDate this relay's information was last updated.
+

+ + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/running.html vidalia-0.2.15/src/vidalia/help/content/cs/running.html --- vidalia-0.2.10/src/vidalia/help/content/cs/running.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,105 @@ + + + + + + +

Running Tor

+
+ +

+Vidalia can help you control your Tor process by letting you start and stop +Tor, as well as monitoring Tor's status and letting you know if it exits +unexpectedly. +

+ + +

Starting and Stopping Tor

+

+To start Tor, +

    +
  1. Select Start from Vidalia's tray menu or press Ctrl+S
  2. . +
  3. + Vidalia's tray icon will change from an onion with a red X to a green onion +when Tor has started. +
  4. +
+If Vidalia is unable to start Tor, Vidalia will display an error message +telling you what went wrong. You can also look at your
message log to see if Tor printed any more information +about what went wrong. +

+ +

+To stop Tor, +

    +
  1. Select Stop from Vidalia's tray menu or press Ctrl+T
  2. . +
  3. + Vidalia's tray icon will change from a green onion to a gray onion with a +red X when Tor has stopped. +
  4. +
+If Vidalia was unable to stop Tor, Vidalia will display an error message +telling you what went wrong. You can also look at your message log to see if Tor printed any more information +about what went wrong. +

+ + +

Monitoring Tor's Status

+

+Vidalia tells you about the status of Tor by displaying an icon in your +system tray or dock area. The following table shows the different states +indicated by an icon in your system's notification area: +

+

+ + + + + + + + + + + + + + + + + +
+ Tor is stopped. Select Start from the Vidalia menu to start Tor. +
+ Tor is starting up. You can check the message log for +status information about Tor while it is starting. +
+ Tor is running. If you want to stop Tor, select Stop from the Vidalia +menu. Tor will print informational messages to the message log while it is running, if you want to see what +Tor is doing. +
Tor is in the process of shutting down.
+

+ +

+If Tor exits unexpectedly, Vidalia will change its icon to the dark onion +with a red X and display an error message letting you know what went +wrong. You can also check the message log for details +about any problems Tor encountered before it exited. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/server.html vidalia-0.2.15/src/vidalia/help/content/cs/server.html --- vidalia-0.2.10/src/vidalia/help/content/cs/server.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/server.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,238 @@ + + + + + + +

Setting Up a Tor Relay

+
+ +The Tor network is made up of volunteers all over the world who donate some +of their spare bandwidth by running a Tor relay. Vidalia helps you do your +part by making it easy to set up a relay of your own. +

Basic Settings

+

+If you decide you want to help the Tor network grow by running a relay, you +can follow these steps to get started: +

+
    +
  1. + Open the Configuration Dialog by selecting Settings from the +tray menu or Preferences from your system menubar on Macintosh +systems. +
  2. +
  3. Select the Relay configuration page.
  4. +
  5. + Decide whether you want to run a normal Tor relay or a bridge relay +(Tor 0.2.0.8-alpha or newer). Bridge relays help censored Tor users who are +blocked from accessing the Tor network directly. Check the box labeled +Relay traffic for the Tor network if you want to run a normal Tor +relay or Help censored users reach the Tor network if you want to run +a bridge relay. +
  6. +
  7. Enter the following information:
  8. +
      +
    • Nickname: The name which your relay will be known as on the Tor +network. An example of a relay nickname is "MyVidaliaRelay". +
    • +
    • Contact Info: Your e-mail address. This address will only be used to +contact you in case there is an important Tor security update or something +goes wrong with your relay. You might also include your PGP or GPG key ID +and fingerprint. +
    • +
    • Relay Port: The port on which your relay will listen for traffic from +clients or other Tor relays. +
    • +
    +
  9. + If you would like to mirror Tor's directory of relays for others on the +network you can check the box labeled Mirror the Relay Directory. If +you do not have much bandwidth, uncheck this box. If you do decide to mirror +the relay directory, make sure the Directory Port is different than +the Relay port you entered above. Bridge relays must mirror +the relay directory. +
  10. +
+ +
+

Bandwidth Limits

+

+Running a Tor relay can consume a large amount of bandwidth; however, Tor +allows you to limit the amount of bandwidth that you are willing to +contribute to the Tor network. You can run a relay, while still keeping your +network connection usable for your own use. +

+

+You should select the option in the dropdown box that best matches your +connection speed. If you select Custom, you will be able to specify +your own limits. +

+

Custom Limits

+

+The maximum rate is a pool of bytes used to fulfill requests during +short periods of traffic higher than your specified average rate, but +still maintains the average over a long period. A low average rate but a +high maximum rate enforces a long-term average while still allowing more +traffic during peak times if the average hasn't been reached lately. If your +average rate is the same as your maximum rate, then Tor will never +exceed the specified rate. Your maximum rate must always be greater +than or equal to your average rate. +

+

+The average rate is the maximum long-term average bandwidth allowed +(in kilobytes per second). For example, you might want to choose 2 megabytes +per second (2048 KB/s), or 50 kilobytes per second (a medium-speed cable +connection). Tor requires a minimum of 20 kilobytes per second to run a +relay. +

+

+It is important to remember that Tor measures bandwidth in bytes, not +bits. Also, Tor only looks at incoming bytes instead of outgoing bytes. For +example, if your relay acts as a directory mirror, you may be sending more +outgoing bytes than incoming. If you find this is the case and is putting +too much strain on your bandwidth, you should consider unchecking the +checkbox labeled Mirror the relay directory. +

+ +
+

Exit Policies

+

+Exit policies give you a way to specify what kinds of resources on the +Internet you are willing let other Tor users access from your Tor relay. +Tor uses a default list of exit policies that restrict some services, such +as mail to prevent spam and some default file sharing ports to reduce abuse +of the Tor network. +

+

+Each of the checkboxes represents a type of resource that you can allow Tor +users to access through your relay. If you uncheck the box next to a +particular type of resource, Tor users will not be allowed to access that +resource from your relay. If the box labeled Misc Other Services is +checked, Tor users will be able to access other services not covered by the +other checkboxes or Tor's default exit policy. +

+ +

+For completeness, the following table lists the specific port numbers +represented by each of the exit policy checkboxes. The Description +column describes the resources Tor clients will be allowed to access through +your relay, if the associated box is checked. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CheckboxPortsDescription
Websites80Normal, unencrypted Web browsing
Secure Websites (SSL)443Encrypted Web browsing
Retrieve Mail (POP, IMAP)110, 143, 993, 995Downloading email (does not permit sending email)
Instant Messaging (IM)703, 1863, 5050, 5190, 5222, 5223, 8300, 8888Instant messaging applications like MSN Messenger, AIM, ICQ, and Jabber
Internet Relay Chat (IRC)6660-6669, 6697, 7000-7001IRC clients and servers
Misc. Other Services*All other applications that aren't covered by the previous checkboxes
+ +

+If you do not want to let other Tor users make connections outside the Tor +network from your relay, you can uncheck all of the checkboxes. Even if you +uncheck all of the checkboxes, your relay is still useful to the Tor +network. Your relay will allow other Tor users to connect to the Tor +network and will help relay traffic between other Tor relays. +

+

+If you chose to run a bridge relay, the Exit Policies tab will be +grayed out, since bridge relays do not allow exit connections. Bridges are +only used by Tor clients to connect to the Tor network. +

+ + +
+

Port Forwarding

+

+Many home users connect to the Internet via a router, which allows +multiple computers on a local network to share the same Internet +connection. Some users may also be behind a firewall that blocks +incoming connections to your computer from other computers on the Internet. +If you want to run a Tor relay, however, other Tor clients and relays must +be able to connect to your relay through your home router or firewall. +

+ +

+To make your relay publicly accessible, your router or firewall needs to +know which ports to allow through to your computer by setting up what is +known as port forwarding. Port forwarding configures your router or +firewall to "forward" all connections to certain ports on your router or +firewall to local ports on your computer. +

+ +

+If you check the box labeled Attempt to automatically configure port +forwarding, Vidalia will attempt to automatically set up port forwarding +on your local network connection so that other Tor clients can connect to +your relay. Not all routers support automatic port forwarding, though. You +can use the Test button next to the checkbox to find out if Vidalia +is able to automatically set up port forwarding for you. +

+ +

+If the Test button finds that Vidalia is unable to set up port +forwarding for you, you may need to enable this feature on your router or +set up port forwarding manually. Some network devices have a feature called +Universal Plug-and-Play (UPnP). If you can access your router's +administrative interface, you should look for an option to enable UPnP. The +administrative interface for most routers can be accessed by opening http://192.168.0.1 or http://192.168.1.1 in your Web browser. You +should consult your router's instruction manual for more information. +

+ +

+If you need to set up port forwarding manually, the website +portforward.com has instructions for how to set up port forwarding for +many types of routers and firewalls. At a minimum, you will need to forward +your Relay Port, which defaults to port 443 on Windows and 9001 on +all other operating systems. If you also checked the checkbox labeled +Mirror the relay directory, then you will also need to forward your +Directory Port. The Directory Port is set to port 9030 by +default on all operating systems. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/services.html vidalia-0.2.15/src/vidalia/help/content/cs/services.html --- vidalia-0.2.10/src/vidalia/help/content/cs/services.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/services.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,138 @@ + + + + + + +

Hidden Services

+
+ +Remark: Support for hidden services is new in Vidalia. You should expect it +to have bugs, some of which possibly corrupting your hidden service +configuration. So, don't rely on it, or rather, don't blame us if something +goes wrong. If you find bugs or have comments on this new feature, please +let us know! We need your feedback. +

What is a hidden service?

+

+Hidden services allow you to provide any kind of TCP-based service, e.g. an +HTTP service, to others without revealing your IP address. The protocol to +provide a hidden service is built on top of the same circuits that Tor uses +for anonymous browsing and roughly has similar anonymity properties. +

+ +

+For more information on hidden service you may want to read section 5 of +Tor's design paper (doc/design-paper/tor-design.pdf) or the Rendezvous +Specification (doc/spec/rend-spec.txt). +

+ +
+

How do I provide a hidden service?

+

+Providing a hidden service consists of at least two steps: +

    +
  1. Install a web server locally (or a server for whatever service you want to +provide, e.g. IRC) to listen for local requests.
  2. +
  3. Configure your hidden service, so that Tor relays requests coming from Tor +users to your local server.
  4. +
+There is a fine tutorial on the Tor website +(https://www.torproject.org/docs/tor-hidden-service.html) that describes +these steps in more detail. +

+ +
+

What data do I need to provide?

+

+The services table contains five columns containing data about configured +hidden services: +

    +
  • Onion Address (generated): The service (or onion) address is generated by +Tor to uniquely identify your service. Give this onion address to the people +who shall be able to access your service. You may use the "Copy to +clipboard" button for that to avoid typos. If you have just created a hidden +service, the field says "[Created by Tor]"; in order to make it display the +real onion address, you need to save your configuration and re-open the +settings window.
  • +
  • Virtual Port (required): This is the TCP port that clients will need to know +in order to access your service. Typically, you will want to use the +service-specific port here, e.g. port 80 for HTTP. Note that the virtual +port usually has nothing to do with firewall settings, because it is only +used Tor-internally.
  • +
  • Target (optional): Usually you want Tor to relay connection requests to +localhost on a different port than the one you specified in "Virtual +Port". Therefore, you can specify a target consisting of physical address +and port to which requests to your hidden service are redirected, e.g. to +localhost:5222 (or on whatever port your server is listening). If you don't +specify any target, Tor will redirect requests to the port specified in +"Virtual Port" on localhost.
  • +
  • Service Directory (required): Tor needs to store some hidden-service +specific files in a separate directory, e.g. a private key and a hostname +file containing the onion address. This directory should be distinct from a +directory containing content that the service provides. A good place for a +service directory might be a sub directory in Tor's data directory. -- Note +that you cannot change the directory of a running service (it wouldn't make +much sense to allow it, because Vidalia is not supposed to move directories +on your hard disk!). If you want to move a hidden service to another +directory, please proceed as follows: Start by disabling the service in +Vidalia and save the configuration. Then move the directory on your hard +disk to the new place. Finally, change the directory in Vidalia to the new +location, enable the service again, and save the new configuration.
  • +
  • Enabled: If this checkbox is disabled, Vidalia will not configure the given +hidden service in Tor. This can be useful for keeping the configuration of a +currently unused service for later use. All non-enabled services are stored +in the Vidalia-specific configuration file vidalia.conf.
  • +
+

+ +
+

What are the five buttons used for?

+

+

    +
  • Add service: Creates a new empty service configuration.
  • +
  • Remove service: Permanently removes a hidden service configuration. (If you +want to temporarily remove a service, uncheck its Enabled checkbox.)
  • +
  • Copy to clipboard: Copies the onion address to the clipboard, so that you +can tell it to whoever shall be able to use your service.
  • +
  • Browse: Lets you browse to find a local hidden service directory.
  • +
+

+ +
+

How can I configure advanced hidden service settings?

+

+Tor allows configuration of more specific settings for hidden services, +e.g. forcing to use (or avoiding) certain nodes as introduction points, or +providing multiple virtual ports for the same service. +

+ +

+However, we decided to simplify things in Vidalia and provide only the most +common settings. If you want to configure advanced settings, you need to do +so in Tor's torrc file. Vidalia will not remove those settings even when you +are editing your hidden services. If you specify more than one virtual port, +only the first will be displayed and be editable. +

+ +
+

How does Vidalia help me to access other hidden services?

+

+Not at all. There is no need to do so. If you want to access another hidden +service, type the service's onion address in your browser (or appropriate +client application if it's not a web service), and Tor does the rest for +you. There is no need to specifically configure Tor for that. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/cs/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/cs/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/cs/troubleshooting.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/cs/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,155 @@ + + + + + + +

Troubleshooting

+
+ +Listed below are some of the common problems or questions people have while +running Tor. If you can't find anything about the particular problem you're +having, check out our website at www.vidalia-project.net for more +support and information.
+

I Can't Start Tor

+

+The most likely reason that Vidalia could not start Tor is because Vidalia +is looking for your Tor installation in the wrong directory. You can tell +Vidalia where Tor is located by updating the Tor Executable option in +the general configuration settings. +

+

+Another possible reason that Tor cannot start is because there is already +another Tor process running. Check your list of running process and stop the +previous Tor process, if you find one. Then, try running Tor again. +

+

+If that did not help, check your message log to see +if Tor printed any information about errors it encountered while trying to +start. +

+ + +

Vidalia Can't Connect to Tor

+

+Vidalia manages Tor by communicating with it via Tor's control port. +

+

+The most common reason that Vidalia cannot connect to Tor is because Tor +started, but encountered an error and exited immediately. You should check +your message log to see if Tor reported any errors +while it started. +

+

+If Tor is listening on a different port than Vidalia expects, Vidalia will +be unable to connect to Tor. You rarely need to change this setting, but if +there is another service running on your machine that conflicts with Tor's +control port, you will need to specify a different port. You can change this +setting in Vidalia's advanced configuration +settings. +

+ + +

Why is Vidalia asking me for a "control password"?

+

+Vidalia interacts with the Tor software via Tor's "control port". The +control port lets Vidalia receive status updates from Tor, request a new +identity, configure Tor's settings, etc. Each time Vidalia starts Tor, +Vidalia sets a random password for Tor's control port to prevent other +applications from also connecting to the control port and potentially +compromising your anonymity. +

+ +

+Usually this process of generating and setting a random control password +happens in the background. There are three common situations, though, where +Vidalia may prompt you for a password: +

+ +
+ + + +

Tor Exited Unexpectedly

+

+If Tor exits immediately after trying to start, you most likely have another +Tor process already running. Check the message log to +see if any of the last few messages in the list are highlighted in yellow +and contain a message similar to the following: +

+
+connection_create_listener(): Could not bind to 127.0.0.1:9050: Address already in use. 
+Is Tor already running?
+
+

+If you find an error message like the one above, you will need to stop the +other Tor process before starting a new one with Vidalia. On Windows, you +would need to look for tor.exe in your Task Manager. On most other +operating systems, the ps command can help you find the other Tor +process. +

+

+If Tor had been running successfully for awhile (that is, longer than a few +seconds), then you should check the message log for +information about any errors Tor experienced before it exited. Such errors +will be highlighted in either red or yellow. +

+ + +

Vidalia Can't Stop Tor

+

+If Vidalia cannot stop Tor, you should check your message +log to see if Tor reported any errors while trying to exit. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/de/config.html vidalia-0.2.15/src/vidalia/help/content/de/config.html --- vidalia-0.2.10/src/vidalia/help/content/de/config.html 2008-03-01 17:58:23.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/de/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/de/contents.xml vidalia-0.2.15/src/vidalia/help/content/de/contents.xml --- vidalia-0.2.10/src/vidalia/help/content/de/contents.xml 2008-03-01 17:58:23.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/de/contents.xml 2011-10-07 19:16:56.000000000 +0000 @@ -1,5 +1,5 @@ - @@ -17,19 +18,19 @@

-Wählen Sie ein Hilfe-Thema aus der Liste von der linken Seite -oder klicken Sie auf Suche über der Liste um eine Suche durch -alle verfügbaren Hilfe-Themen durchzuführen. +Wählen Sie ein Hilfe-Thema aus der Liste von der linken Seite oder +klicken Sie auf Suche über der Liste um eine Suche durch alle +verfügbaren Hilfe-Themen durchzuführen.

-Sie können oben die Schaltfläche Suchen benutzen, -um innerhalb eines bestimmten Hilfe-Themas zu suchen. +Sie können oben die Schaltfläche Suchen benutzen, um +innerhalb eines bestimmten Hilfe-Themas zu suchen.

-Die Schaltfläche Startseite wird Sie zu dieser Seite -zurück führen. +Die Schaltfläche Startseite wird Sie zu dieser Seite zurück +führen.

diff -Nru vidalia-0.2.10/src/vidalia/help/content/de/links.html vidalia-0.2.15/src/vidalia/help/content/de/links.html --- vidalia-0.2.10/src/vidalia/help/content/de/links.html 2008-06-10 14:51:55.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/de/links.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,15 +1,16 @@ + + - @@ -21,9 +22,9 @@     Homepage - - - http://www.vidalia-project.net/ + + +https://www.torproject.org/vidalia/ @@ -31,7 +32,7 @@ Wiki - http://trac.vidalia-project.net/wiki +http://trac.vidalia-project.net/wiki @@ -39,7 +40,7 @@ Fehlerdatenbank - http://trac.vidalia-project.net/report +http://trac.vidalia-project.net/report @@ -49,7 +50,7 @@     Homepage - + https://www.torproject.org/ @@ -58,7 +59,7 @@ FAQ (Häufig gestellte Fragen) - https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ +https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ @@ -66,7 +67,7 @@ Wiki - https://wiki.torproject.org/noreply/TheOnionRouter +https://wiki.torproject.org/noreply/TheOnionRouter @@ -74,8 +75,9 @@ Fehlerdatenbank - https://bugs.torproject.org/flyspray +https://bugs.torproject.org/flyspray + diff -Nru vidalia-0.2.10/src/vidalia/help/content/de/log.html vidalia-0.2.15/src/vidalia/help/content/de/log.html --- vidalia-0.2.10/src/vidalia/help/content/de/log.html 2008-03-01 17:58:23.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/de/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/de/netview.html vidalia-0.2.15/src/vidalia/help/content/de/netview.html --- vidalia-0.2.10/src/vidalia/help/content/de/netview.html 2008-03-01 17:58:23.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/de/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,15 +1,16 @@ + + - @@ -17,36 +18,37 @@


-Der Netzwerk-Betrachter zeigt die Server im Tor-Netzwerk und den -Weg des Datenverkehrs an. +Der Netzwerk-Betrachter zeigt die Server im Tor-Netzwerk und den Weg des +Datenverkehrs an.

- +

Überblick

-Wenn Sie anonym mit Hilfe von Tor kommunizieren wollen (bspw. eine Verbindung -zu einer Webseite herstellen), erstellt Tor einen Tunnel oder Kanal von -verschlüsselten Verbindungen über verschiedene Server im Netzwerk. -Der von ihrem Programm erzeugte Netzwerkverkehr wird dann als Datenstrom -durch einen solchen Kanal geleitet. Aus Effizienzgründen werden mehrere -Datenströme über den selben Kanal geleitet. +Wenn Sie anonym mit Hilfe von Tor kommunizieren wollen (bspw. eine +Verbindung zu einer Webseite herstellen), erstellt Tor einen Tunnel oder +Kanal von verschlüsselten Verbindungen über verschiedene +Server im Netzwerk. Der von ihrem Programm erzeugte Netzwerkverkehr wird +dann als Datenstrom durch einen solchen Kanal geleitet. Aus +Effizienzgründen werden mehrere Datenströme über den selben +Kanal geleitet.

-
+

Netzwerk-Karte

-Die Netzwerk-Karte besteht aus einer Weltkarte, auf der durch rote Punkte die -geographischen Standorte der Server im Tor-Netzwerk gekennzeichnet sind. Anhand -der grünen Linien zwischen den Servern werden die von Ihrem Tor-Client -hergestellten Verbindungen im Tor-Netzwerk gekennzeichnet. +Die Netzwerk-Karte besteht aus einer Weltkarte, auf der durch rote Punkte +die geographischen Standorte der Server im Tor-Netzwerk gekennzeichnet +sind. Anhand der grünen Linien zwischen den Servern werden die von +Ihrem Tor-Client hergestellten Verbindungen im Tor-Netzwerk gekennzeichnet.

Durch einen Klick auf Vergrößern oder Verkleinern können Sie die Standorte auf der Karte betrachten. Um sich einen anderen Kartenausschnitt anzeigen zu lassen, klicken auf die Karte und -bewegen Sie den Mauszeiger bei gedrückter Maustaste in die gewünschte -Richtung. +bewegen Sie den Mauszeiger bei gedrückter Maustaste in die +gewünschte Richtung.

Der geographische Standort eines Tor-Servers wird mit Hilfe der IP-Adresse @@ -56,23 +58,23 @@

In der Mitte unterhalb der Netzwerk-Karte finden Sie eine Liste mit Ihren momentanen Verbindungen und den darübr laufenden Netzwerkverkehr. Beim -ersten Start der Netzwerk-Karte wird Ihnen möglicherweise eine Verbindung -zu geoip.vidalia-project.net auffallen. Diese Verbindung erscheint, wenn -Vidalia den geographischen Standort für die Liste der Tor-Server ermittelt. -Diese Verbindung wird ebenfalls über Tor hergestellt, so dass ihr -Standort gegenüber dem GeoIP-Server nicht bekannt gegeben wird. Die -Ergebnisse dieser Anfragen werden lokal zwischen gespeichert, um Vidalias -GeoIP-Server zu entlasten. +ersten Start der Netzwerk-Karte wird Ihnen möglicherweise eine +Verbindung zu geoip.vidalia-project.net auffallen. Diese Verbindung +erscheint, wenn Vidalia den geographischen Standort für die Liste der +Tor-Server ermittelt. Diese Verbindung wird ebenfalls über Tor +hergestellt, so dass ihr Standort gegenüber dem GeoIP-Server nicht +bekannt gegeben wird. Die Ergebnisse dieser Anfragen werden lokal zwischen +gespeichert, um Vidalias GeoIP-Server zu entlasten.

-
+

Server-Status

Auf der linken Seite des Netzwerk-Betrachters befindet sich eine Liste von Servern im Tor-Netzwerk. Neben jeden Server befindet sich ein Symbol, dass -den Server-Status anzeigt. Die folgende Tabelle beschreibt die möglichen -Symbole: +den Server-Status anzeigt. Die folgende Tabelle beschreibt die +"möglichen Symbole:

@@ -86,61 +88,60 @@
Der Server ist im Ruhezustand, d.h. er ist online, hat aber bereits - alle ihm vom Serverbetreiber zugestandene Bandbreite während eines - bestimmten Zeitraums verbraucht. +alle ihm vom Serverbetreiber zugestandene Bandbreite während eines +bestimmten Zeitraums verbraucht.
- Der Server ist online, hat aber nur einen minimalen - Datendurchsatz. + Der Server ist online, hat aber nur einen minimalen Datendurchsatz.
- Der Server ist online und hat einen ermittelten Datendurchsatz - von >= 20 KB/s. + Der Server ist online und hat einen ermittelten Datendurchsatz von >= 20 +KB/s.
- Der Server ist online und hat einen ermittelten Datendurchsatz - von >= 60 KB/s. + Der Server ist online und hat einen ermittelten Datendurchsatz von >= 60 +KB/s.
- Der Server ist online und hat einen ermittelten Datendurchsatz - von >= 400 KB/s. + Der Server ist online und hat einen ermittelten Datendurchsatz von >= 400 +KB/s.

-Alle Bandbreitenangaben sind Schätzungen, die auf dem kleinsten -Wert der maximalen Bandbreite des eingehenden oder ausgehenden Datenverkehrs +Alle Bandbreitenangaben sind Schätzungen, die auf dem kleinsten Wert +der maximalen Bandbreite des eingehenden oder ausgehenden Datenverkehrs basieren. Dieser Wert wurde innerhalb eines beliebigen zehn Sekunden langen Intervalls am vergangenen Tag gemessen.

-
+

Server-Details

Die Server-Details auf der rechten Seite des Fensters zeigen weitere -Informationen zu den Servern an, die momentan in der -Server-Liste ausgewählt wurden. Wenn Sie -einen Kanal oder einen Datenstrom aus der entsprechenden Liste ausgewählt -haben, werden Ihnen in detailierte Informationen über jeden Server angezeigt, -der Ihren Datenverkehr weiter leitet. +Informationen zu den Servern an, die momentan in der Server-Liste ausgewählt wurden. Wenn Sie einen +Kanal oder einen Datenstrom aus der entsprechenden Liste ausgewählt +haben, werden Ihnen in detailierte Informationen über jeden Server +angezeigt, der Ihren Datenverkehr weiter leitet.

-Folgende Informationen werden in den Server-Details angezeigt (Hinweis: -nicht immer sind alle Informationen verfügbar): +Folgende Informationen werden in den Server-Details angezeigt +(Hinweis: nicht immer sind alle Informationen verfügbar):

@@ -155,22 +156,22 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/de/running.html vidalia-0.2.15/src/vidalia/help/content/de/running.html --- vidalia-0.2.10/src/vidalia/help/content/de/running.html 2008-03-01 17:58:23.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/de/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,15 +1,16 @@ + + - @@ -22,45 +23,46 @@ benachrichtigt Sie, falls Tor unerwartet beendet wurde.

- +

Tor starten und beenden

Um Tor zu starten,

    -
  1. wählen Sie Start aus Vidalias Traymenü oder drücken Sie Strg+S
  2. . +
  3. wählen Sie Start aus Vidalias Traymenü oder drücken +Sie Strg+S
  4. .
  5. Vidalias Traysymbol wird sich von einer Zwiebel mit einem roten X hin zu - einer grünen Zwiebel verändern, sobald Tor gestartet wurde. +einer grünen Zwiebel verändern, sobald Tor gestartet wurde.
-Falls Vidalia Tor nicht starten konnte, wird Ihnen eine Fehlermeldung -mit entsprechenden Hinweisen angezeigt. Sie können außerdem -im
Nachrichtenprotokoll nachschauen, ob Tor weitere +Falls Vidalia Tor nicht starten konnte, wird Ihnen eine Fehlermeldung mit +entsprechenden Hinweisen angezeigt. Sie können außerdem im Nachrichtenprotokoll nachschauen, ob Tor weitere Informationen ausgegeben hat.

Um Tor zu stoppen, -

    -
  1. wählen Sie Stop aus Vidalias Traymenü oder drücken Sie Strg+T
  2. . +
      +
    1. wählen Sie Stop aus Vidalias Traymenü oder drücken Sie +Strg+T
    2. .
    3. - Vidalias Traysymbol wird sich von einer grünen Zwiebel hin zu - einer grauen Zwiebel mit einem roten X verändern, sobald Tor - beendet wurde. + Vidalias Traysymbol wird sich von einer grünen Zwiebel hin zu einer +grauen Zwiebel mit einem roten X verändern, sobald Tor beendet wurde.
    -Falls Vidalia Tor nicht beenden konnte, wird Ihnen eine Fehlermeldung -mit entsprechenden Hinweisen angezeigt. Sie können außerdem -im Nachrichtenprotokoll nachschauen, ob Tor weitere +Falls Vidalia Tor nicht beenden konnte, wird Ihnen eine Fehlermeldung mit +entsprechenden Hinweisen angezeigt. Sie können außerdem im Nachrichtenprotokoll nachschauen, ob Tor weitere Informationen ausgegeben hat.

    - +

    Tors Status überwachen

    Vidalia informiert Sie über den Status von Tor durch die Anzeige eines -Symbols im Systemtray oder Dock. Die folgende Tabelle zeigt die verschiedenen -Zustände dieses Symbols: +Symbols im Systemtray oder Dock. Die folgende Tabelle zeigt die +verschiedenen Zustände dieses Symbols:

Plattform - Gibt an, mit welchen Betriebssystem und welcher Tor-Version dieser - Server betrieben wird. + Gibt an, mit welchen Betriebssystem und welcher Tor-Version dieser Server +betrieben wird.
Bandbreite - Geschätzte maximal Bandbreite, die der Verzeichnis-Server - für diesen Server in letzter Zeit beobachtet hat. + Geschätzte maximal Bandbreite, die der Verzeichnis-Server für +diesen Server in letzter Zeit beobachtet hat.
Läuft seit Gibt an, seit wann der Server bereits läft. Dadurch kann die - Stabilität des Servers abgeschätzt werden. +Stabilität des Servers abgeschätzt werden.
@@ -68,23 +70,24 @@ @@ -95,11 +98,11 @@

-Falls Tor unerwartet beendet wird, verändert sich das Vidalia-Symbol zu einer -dunklen Zwiebel mit einem roten X und eine entsprechende Fehlermeldung wird -angezeigt. Sie können außerdem das Nachrichtenprotokoll -auf weitere Details zu Problemen untersuchen, die zur Beendigung von Tor geführt -haben. +Falls Tor unerwartet beendet wird, verändert sich das Vidalia-Symbol zu +einer dunklen Zwiebel mit einem roten X und eine entsprechende Fehlermeldung +wird angezeigt. Sie können außerdem das Nachrichtenprotokoll auf weitere Details zu Problemen +untersuchen, die zur Beendigung von Tor geführt haben.

diff -Nru vidalia-0.2.10/src/vidalia/help/content/de/server.html vidalia-0.2.15/src/vidalia/help/content/de/server.html --- vidalia-0.2.10/src/vidalia/help/content/de/server.html 2008-03-04 05:38:56.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/de/server.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@  diff -Nru vidalia-0.2.10/src/vidalia/help/content/de/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/de/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/de/troubleshooting.html 2008-03-01 17:58:23.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/de/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/bridges.html vidalia-0.2.15/src/vidalia/help/content/en/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/en/bridges.html 2008-08-22 00:12:08.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/config.html vidalia-0.2.15/src/vidalia/help/content/en/config.html --- vidalia-0.2.10/src/vidalia/help/content/en/config.html 2010-06-26 15:46:44.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/contents.xml vidalia-0.2.15/src/vidalia/help/content/en/contents.xml --- vidalia-0.2.10/src/vidalia/help/content/en/contents.xml 2008-09-25 04:58:06.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/contents.xml 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/index.html vidalia-0.2.15/src/vidalia/help/content/en/index.html --- vidalia-0.2.10/src/vidalia/help/content/en/index.html 2008-03-01 17:58:23.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/index.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/links.html vidalia-0.2.15/src/vidalia/help/content/en/links.html --- vidalia-0.2.10/src/vidalia/help/content/en/links.html 2010-06-26 15:46:44.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/links.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ @@ -28,18 +28,10 @@ - + - - - - -
Tor wurde gestoppt. Wählen Sie Start aus dem Vidalia-Menü - um Tor zu starten. +um Tor zu starten.
- Tor wird gestartet. Sie können im Nachrichtenprotokoll - Statusinformationen abrufen, während Tor startet. + Tor wird gestartet. Sie können im Nachrichtenprotokoll Statusinformationen abrufen, +während Tor startet.
- Tor wird ausgeführt. Falls Sie Tor stoppen wollen, wählen - Sie Stop aus dem Vidalia-Menü. Tor speichert während des - Betriebs Informationen im Nachrichtenprotokoll. - Um weitere Informationen zu erfahren, können Sie dort nachschauen. + Tor wird ausgeführt. Falls Sie Tor stoppen wollen, wählen Sie +Stop aus dem Vidalia-Menü. Tor speichert während des +Betriebs Informationen im Nachrichtenprotokoll. Um +weitere Informationen zu erfahren, können Sie dort nachschauen.
   WikiWiki and Bugtracker - - http://trac.vidalia-project.net/wiki -
   Bugtracker - - http://trac.vidalia-project.net/report + + http://trac.torproject.org/
@@ -57,24 +49,16 @@     FAQ - - https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ - - - -     - Wiki - - - https://wiki.torproject.org/noreply/TheOnionRouter + + https://www.torproject.org/docs/faq.html     - Bugtracker + Wiki and Bugtracker - - https://bugs.torproject.org/flyspray + + https://trac.torproject.org/ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/log.html vidalia-0.2.15/src/vidalia/help/content/en/log.html --- vidalia-0.2.10/src/vidalia/help/content/en/log.html 2010-06-26 15:46:44.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/netview.html vidalia-0.2.15/src/vidalia/help/content/en/netview.html --- vidalia-0.2.10/src/vidalia/help/content/en/netview.html 2008-03-01 17:58:23.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/running.html vidalia-0.2.15/src/vidalia/help/content/en/running.html --- vidalia-0.2.10/src/vidalia/help/content/en/running.html 2008-03-01 17:58:23.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/server.html vidalia-0.2.15/src/vidalia/help/content/en/server.html --- vidalia-0.2.10/src/vidalia/help/content/en/server.html 2010-06-26 15:46:44.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/server.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/en/services.html vidalia-0.2.15/src/vidalia/help/content/en/services.html --- vidalia-0.2.10/src/vidalia/help/content/en/services.html 2008-04-12 18:23:28.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/services.html 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/help/content/en/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/en/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/en/troubleshooting.html 2010-08-03 18:21:39.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/en/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@ diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/bridges.html vidalia-0.2.15/src/vidalia/help/content/eo/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/eo/bridges.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,71 @@ + + + + + + +

Bridge Relays

+
+ + +

What are bridge relays?

+

+Some Internet Service Providers (ISPs) attempt to prevent users from +accessing the Tor network by blocking connections to known Tor +relays. Bridge relays (or bridges for short) are relays that help +these censored users access the Tor network. Unlike other Tor relays, +bridges are not listed in the same public directories as normal +relays. Since there is no complete public list of them, even if your ISP is +filtering connections to all the known Tor relays, they probably won't be +able to block all the bridges. +

+ +
+

How do I find a bridge relay?

+

+There are two main ways to learn about a bridge address: +

    +
  1. Get some friends to run private bridges for you
  2. +
  3. Use some of the public bridges
  4. +
+

+ +

+To use private bridges, ask your friends to run Vidalia and Tor in an +uncensored area of the Internet, and then click on Help censored +users in Vidalia's Relay settings page. Then +they should privately send you the Bridge address line at the bottom +of their Relay page. Unlike running an exit relay, running a bridge relay +just passes data to and from the Tor network, so it shouldn't expose the +operator to any abuse complaints. +

+ +

+You can find public bridge addresses by visiting +https://bridges.torproject.org. The answers you get from that page +will change every few days, so check back periodically if you need more +bridge addresses. Another way to find public bridge addresses is to send +mail to bridges@torproject.org with the line get bridges by +itself in the body of the mail. However, so we can make it harder for an +attacker to learn lots of bridge addresses, you must send this request from +a Gmail account. +

+ +

+Configuring more than one bridge address will make your Tor connection more +stable, in case some of the bridges become unreachable. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/config.html vidalia-0.2.15/src/vidalia/help/content/eo/config.html --- vidalia-0.2.10/src/vidalia/help/content/eo/config.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,185 @@ + + + + + + +

Configuring Vidalia and Tor

+
+ +

+Vidalia allows you to configure some of the most commonly modified aspects +of Vidalia and Tor. It also lets you set up and manage a Tor relay so you can help the Tor network grow. +

+ + +

General Settings

+

+Settings on the General page are the most commonly modified settings. +

+
    +
  • Tor Executable: This is the Tor executable that Vidalia will run when +you select Start from the tray menu. If you have multiple versions of +Tor installed, you can tell Vidalia which version you would like to run by +clicking the Browse button and navigating to the particular Tor +installation you want. +
  • +
  • Startup Options: This setting allows you to have Vidalia +automatically start Tor when Vidalia starts. You can also configure Vidalia +to run when your system starts (Windows only). +
  • +
+ +
+

Network Settings

+

+The Network settings page lets you change how Tor connects to the Tor +network. +

+
+ + +

Relay Settings

+

+ See this help topic for detailed information +about setting up and managing a Tor relay. +

+ + +

Appearance Settings

+

+The settings on the Appearance page allow you to customize the look +and feel of Vidalia. +

+
    +
  • Language: Vidalia's interface has been translated into many languages +by helpful volunteers. When Vidalia is first run, it will try to guess which +language your computer is currently using. If Vidalia guesses incorrectly, +or if you prefer a different language, you can choose another language from +the dropdown box. You will need to restart Vidalia after changing the +displayed language for the changes to take effect. +
  • +
  • Style: In most cases, Vidalia will default to using your platform's +default interface style. If you dislike the default, you can choose +whichever interface style you prefer from the dropdown box. +
  • +
+ +
+

Advanced Settings

+

+The settings on the Advanced page should generally only be modified +by more experienced users. +

+
    +
  • Control Address & Port: The Control Port is the port which +Vidalia uses to talk to Tor. This doesn't need to be changed unless you +have a conflict with another service on your machine, or if you are using +Vidalia to control and monitor a Tor process running on another machine. +
  • +
  • Control Port Authentication: Control port authentication is used to +limit the applications on your machine that can connect to and reconfigure +your Tor installation. The available authentication methods are: +
      +
    • + None -- No authentication is required. Use of this option is +strongly discouraged. Any application or user on your computer can +reconfigure your Tor installation. +
    • +
    • + Password (Default) -- If this method is selected, you can +specify a password that Tor will require each time a user or application +connects to Tor's control port. If Vidalia starts Tor for you, you can have +Vidalia randomly generate a new password each time it starts Tor by checking +the Randomly Generate checkbox. +
    • +
    • + Cookie -- If cookie authentication is selected, Tor will write a file +(or, cookie) containing random bytes to its data directory when it +starts. Any user or application that tries to connect to Tor's control port +must be able to provide the contents of this cookie. +
    • +
    +
  • +
  • Tor Configuration File (optional): You can use this option to +have Vidalia start Tor using a specific torrc, Tor's configuration +file. If you leave this field blank, Tor will uses its own default torrc +location. +
  • +
  • Tor Data Directory (optional): You can specify the directory +in which Tor will store its saved data, such as cached Tor relay +information, Tor relay keys, and configuration files. If you leave this +field blank, Tor will use its own default data directory location. +
  • +
  • Permissions (optional, not available on Windows): If you enter +a value for Run as User, Tor will setuid to this user when it +starts. If you enter a value for Run as Group, Tor will +setgid to this group when it starts. +
  • +
+ +
+

Hidden Service Settings

+

+Hidden services allow you to provide any kind of TCP-based service, e.g. an +HTTP service, to others without revealing your IP address. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/index.html vidalia-0.2.15/src/vidalia/help/content/eo/index.html --- vidalia-0.2.10/src/vidalia/help/content/eo/index.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/index.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,41 @@ + + + + + + +

Vidalia Help

+
+ +

+Select a help topic from the tree on the left or click on the Search button +above the list of topics to search through all available help topics. +

+ +

+You can use the Find button on the toolbar above to search within a +particular help topic. +

+ +

+The Home button above will bring you back to this home page. +

+ +

+See the Helpful Links topic for some places you can +visit to find additional help and information about Vidalia and Tor. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/links.html vidalia-0.2.15/src/vidalia/help/content/eo/links.html --- vidalia-0.2.10/src/vidalia/help/content/eo/links.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/links.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,67 @@ + + + + + + +

Helpful Links

+
+ +

Vidalia

+ + + + + + + + + + + +
   Homepage + +https://www.torproject.org/vidalia/ +
   Wiki and Bugtracker + http://trac.torproject.org/ +
+ +

Tor

+ + + + + + + + + + + + + + + + +
   Homepage + https://www.torproject.org/ +
   FAQ + +https://www.torproject.org/docs/faq.html +
   Wiki and Bugtracker + https://trac.torproject.org/ +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/log.html vidalia-0.2.15/src/vidalia/help/content/eo/log.html --- vidalia-0.2.10/src/vidalia/help/content/eo/log.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,102 @@ + + + + + + +

Message Log

+
+ +The message log lets you see status information about a running Tor +process. Each message has a severity associated +with it, ranging from Error (most serious) to Debug (most +verbose). See the help section on message +severities for more information. +

Message Severities

+

+A message's severity tells you how important the message is. A higher +severity message usually indicates that something has gone wrong with +Tor. Lower severity messages appear frequently during normal Tor operations +and usually do not need to be logged. +

+ +

+The possible message severities, from most severe to least severe, are: +

+
    +
  • + Error: Messages that appear when something has gone very wrong and +Tor cannot proceed. These messages will be highlighted in red in the +message log. +
  • +
  • + Warning: Messages that only appear when something has gone wrong with +Tor, but are not fatal and Tor will continue running. These messages will be +highlighted in yellow. +
  • +
  • + Notice: Messages that appear infrequently during normal Tor operation +and are not considered errors, but you still may care about. +
  • +
  • + Info: Messages that appear frequently during normal Tor operation and +are not usually of interest to most users. +
  • +
  • + Debug: Extremely verbose messages that are primarily of interest to +developers. You should generally not log debug messages unless you know what +you are doing. +
  • +
+ +

+Most users should only log Error, Warning, and Notice +messages. +

+ +

+To select which message severities you would like to see, do the following: +

    +
  1. Open the message log from the Vidalia tray menu.
  2. +
  3. Click on Settings at the top of the message log window.
  4. +
  5. + Check message severities you would like to see from the Message Filter group +on the left and uncheck message severities you would like to hide. +
  6. +
  7. Click Save Settings to apply your new message filter.
  8. +
+

+ + +
+

Logging to a File

+

+Vidalia can also write log messages to a file, as well as logging them in +the message log window. To enable logging to a file, follow these steps: +

+ +
    +
  1. Open the message log from the Vidalia tray menu.
  2. +
  3. Click on Settings at the top of the message log window.
  4. +
  5. Check the box labeled Automatically save new log messages to a file.
  6. +
  7. + If you would like to change the file to which messages will be written, +either type the path and filename into the text box, or click Browse +to navigate to a location for your log file. +
  8. +
  9. Click Save Settings to save your log destination.
  10. +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/netview.html vidalia-0.2.15/src/vidalia/help/content/eo/netview.html --- vidalia-0.2.10/src/vidalia/help/content/eo/netview.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,174 @@ + + + + + + +

Network Viewer

+
+ +

+The network viewer lets you see relays in the Tor network and where your +traffic is going. +

+ + +
+

Overview

+

+When you want to communicate anonymously through Tor (say, connecting to a +website), Tor creates a tunnel, or circuit, of encrypted connections +through a series of relays on the network. Your application's traffic is +then sent as a stream through that circuit. For efficiency, multiple +streams may share the same circuit. +

+ +
+

Network Map

+

+The network map consists of a map of the world, with red pinpoints +indicating the geographic location of relays in the Tor network. Green lines +are drawn between relays to indicate the path of circuits that your Tor +client has created through the Tor network. +

+

+You can zoom in on locations in the map by clicking the Zoom In and +Zoom Out buttons in the toolbar. You can also scroll around on the +map by clicking on the map and then dragging it in whatever direction you +would like to move the map. +

+

+The geographic location of a Tor relay is determined by looking up the IP +address of the relay in a GeoIP database, created by MaxMind and located at +geoip.vidalia-project.net. +

+

+In the middle of the dialog, below the network map, you will see a list of +your current circuits, as well as any application traffic currently on those +circuits. When the network map first loads, you will probably see a +connection to geoip.vidalia-project.net, which occurs when Vidalia is +looking up geographic information for the list of Tor relays. It is +important to note that this request is done through Tor, so your location is +not revealed to the GeoIP relay. The results of the lookups will be cached +locally in order to reduce load on Vidalia's GeoIP relays. +

+ + +
+

Relay Status

+

+On the left side of the network view, you will see a list of relays in the +Tor network. Next to each relay is an icon indicating that relay's status. +The following table summarizes the possible relay status icons: +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ The relay is offline or simply not responding. +
+ The relay is hibernating, meaning it is online, but has used up as +much bandwidth as the operator is willing to allow for a given time period. +
+ The relay is online, but has shown only minimal throughput. +
+ The relay is online and has shown a throughput >= 20 KB/s. +
+ The relay is online and has shown a throughput >= 60 KB/s. +
+ The relay is online and has shown a throughput >= 400 KB/s. +
+

+

+All bandwidth values are estimates based on the minimum of either the +maximum bandwidth sustained input or output over any ten second period in +the past day. +

+ + +
+

Relay Details

+

+The relay details panel at the right side of the screen gives you details +about the relay or relays currently selected in the relay list. If you have selected a circuit or stream +in the list of your current circuits and streams, this panel will show you +details about each relay through which your traffic is currently being sent. +

+

+The fields that you may see in the panel are as follows (Note: not +all of these fields will always be present): +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
LocationThe geographic location of this Tor relay.
IP AddressIP address at which this Tor relay can be reached.
Platform + Operating system information and Tor version on which this relay is +currently running. +
Bandwidth + Estimated maximum amount of bandwidth that the directory relays have seen +this relay handle recently. +
Uptime + Length of time this relay has been available, which can be used to help +estimate this relay's stability. +
Last UpdatedDate this relay's information was last updated.
+

+ + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/running.html vidalia-0.2.15/src/vidalia/help/content/eo/running.html --- vidalia-0.2.10/src/vidalia/help/content/eo/running.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,105 @@ + + + + + + +

Running Tor

+
+ +

+Vidalia can help you control your Tor process by letting you start and stop +Tor, as well as monitoring Tor's status and letting you know if it exits +unexpectedly. +

+ + +

Starting and Stopping Tor

+

+To start Tor, +

    +
  1. Select Start from Vidalia's tray menu or press Ctrl+S
  2. . +
  3. + Vidalia's tray icon will change from an onion with a red X to a green onion +when Tor has started. +
  4. +
+If Vidalia is unable to start Tor, Vidalia will display an error message +telling you what went wrong. You can also look at your
message log to see if Tor printed any more information +about what went wrong. +

+ +

+To stop Tor, +

    +
  1. Select Stop from Vidalia's tray menu or press Ctrl+T
  2. . +
  3. + Vidalia's tray icon will change from a green onion to a gray onion with a +red X when Tor has stopped. +
  4. +
+If Vidalia was unable to stop Tor, Vidalia will display an error message +telling you what went wrong. You can also look at your message log to see if Tor printed any more information +about what went wrong. +

+ + +

Monitoring Tor's Status

+

+Vidalia tells you about the status of Tor by displaying an icon in your +system tray or dock area. The following table shows the different states +indicated by an icon in your system's notification area: +

+

+ + + + + + + + + + + + + + + + + +
+ Tor is stopped. Select Start from the Vidalia menu to start Tor. +
+ Tor is starting up. You can check the message log for +status information about Tor while it is starting. +
+ Tor is running. If you want to stop Tor, select Stop from the Vidalia +menu. Tor will print informational messages to the message log while it is running, if you want to see what +Tor is doing. +
Tor is in the process of shutting down.
+

+ +

+If Tor exits unexpectedly, Vidalia will change its icon to the dark onion +with a red X and display an error message letting you know what went +wrong. You can also check the message log for details +about any problems Tor encountered before it exited. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/server.html vidalia-0.2.15/src/vidalia/help/content/eo/server.html --- vidalia-0.2.10/src/vidalia/help/content/eo/server.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/server.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,238 @@ + + + + + + +

Setting Up a Tor Relay

+
+ +The Tor network is made up of volunteers all over the world who donate some +of their spare bandwidth by running a Tor relay. Vidalia helps you do your +part by making it easy to set up a relay of your own. +

Basic Settings

+

+If you decide you want to help the Tor network grow by running a relay, you +can follow these steps to get started: +

+
    +
  1. + Open the Configuration Dialog by selecting Settings from the +tray menu or Preferences from your system menubar on Macintosh +systems. +
  2. +
  3. Select the Relay configuration page.
  4. +
  5. + Decide whether you want to run a normal Tor relay or a bridge relay +(Tor 0.2.0.8-alpha or newer). Bridge relays help censored Tor users who are +blocked from accessing the Tor network directly. Check the box labeled +Relay traffic for the Tor network if you want to run a normal Tor +relay or Help censored users reach the Tor network if you want to run +a bridge relay. +
  6. +
  7. Enter the following information:
  8. +
      +
    • Nickname: The name which your relay will be known as on the Tor +network. An example of a relay nickname is "MyVidaliaRelay". +
    • +
    • Contact Info: Your e-mail address. This address will only be used to +contact you in case there is an important Tor security update or something +goes wrong with your relay. You might also include your PGP or GPG key ID +and fingerprint. +
    • +
    • Relay Port: The port on which your relay will listen for traffic from +clients or other Tor relays. +
    • +
    +
  9. + If you would like to mirror Tor's directory of relays for others on the +network you can check the box labeled Mirror the Relay Directory. If +you do not have much bandwidth, uncheck this box. If you do decide to mirror +the relay directory, make sure the Directory Port is different than +the Relay port you entered above. Bridge relays must mirror +the relay directory. +
  10. +
+ +
+

Bandwidth Limits

+

+Running a Tor relay can consume a large amount of bandwidth; however, Tor +allows you to limit the amount of bandwidth that you are willing to +contribute to the Tor network. You can run a relay, while still keeping your +network connection usable for your own use. +

+

+You should select the option in the dropdown box that best matches your +connection speed. If you select Custom, you will be able to specify +your own limits. +

+

Custom Limits

+

+The maximum rate is a pool of bytes used to fulfill requests during +short periods of traffic higher than your specified average rate, but +still maintains the average over a long period. A low average rate but a +high maximum rate enforces a long-term average while still allowing more +traffic during peak times if the average hasn't been reached lately. If your +average rate is the same as your maximum rate, then Tor will never +exceed the specified rate. Your maximum rate must always be greater +than or equal to your average rate. +

+

+The average rate is the maximum long-term average bandwidth allowed +(in kilobytes per second). For example, you might want to choose 2 megabytes +per second (2048 KB/s), or 50 kilobytes per second (a medium-speed cable +connection). Tor requires a minimum of 20 kilobytes per second to run a +relay. +

+

+It is important to remember that Tor measures bandwidth in bytes, not +bits. Also, Tor only looks at incoming bytes instead of outgoing bytes. For +example, if your relay acts as a directory mirror, you may be sending more +outgoing bytes than incoming. If you find this is the case and is putting +too much strain on your bandwidth, you should consider unchecking the +checkbox labeled Mirror the relay directory. +

+ +
+

Exit Policies

+

+Exit policies give you a way to specify what kinds of resources on the +Internet you are willing let other Tor users access from your Tor relay. +Tor uses a default list of exit policies that restrict some services, such +as mail to prevent spam and some default file sharing ports to reduce abuse +of the Tor network. +

+

+Each of the checkboxes represents a type of resource that you can allow Tor +users to access through your relay. If you uncheck the box next to a +particular type of resource, Tor users will not be allowed to access that +resource from your relay. If the box labeled Misc Other Services is +checked, Tor users will be able to access other services not covered by the +other checkboxes or Tor's default exit policy. +

+ +

+For completeness, the following table lists the specific port numbers +represented by each of the exit policy checkboxes. The Description +column describes the resources Tor clients will be allowed to access through +your relay, if the associated box is checked. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CheckboxPortsDescription
Websites80Normal, unencrypted Web browsing
Secure Websites (SSL)443Encrypted Web browsing
Retrieve Mail (POP, IMAP)110, 143, 993, 995Downloading email (does not permit sending email)
Instant Messaging (IM)703, 1863, 5050, 5190, 5222, 5223, 8300, 8888Instant messaging applications like MSN Messenger, AIM, ICQ, and Jabber
Internet Relay Chat (IRC)6660-6669, 6697, 7000-7001IRC clients and servers
Misc. Other Services*All other applications that aren't covered by the previous checkboxes
+ +

+If you do not want to let other Tor users make connections outside the Tor +network from your relay, you can uncheck all of the checkboxes. Even if you +uncheck all of the checkboxes, your relay is still useful to the Tor +network. Your relay will allow other Tor users to connect to the Tor +network and will help relay traffic between other Tor relays. +

+

+If you chose to run a bridge relay, the Exit Policies tab will be +grayed out, since bridge relays do not allow exit connections. Bridges are +only used by Tor clients to connect to the Tor network. +

+ + +
+

Port Forwarding

+

+Many home users connect to the Internet via a router, which allows +multiple computers on a local network to share the same Internet +connection. Some users may also be behind a firewall that blocks +incoming connections to your computer from other computers on the Internet. +If you want to run a Tor relay, however, other Tor clients and relays must +be able to connect to your relay through your home router or firewall. +

+ +

+To make your relay publicly accessible, your router or firewall needs to +know which ports to allow through to your computer by setting up what is +known as port forwarding. Port forwarding configures your router or +firewall to "forward" all connections to certain ports on your router or +firewall to local ports on your computer. +

+ +

+If you check the box labeled Attempt to automatically configure port +forwarding, Vidalia will attempt to automatically set up port forwarding +on your local network connection so that other Tor clients can connect to +your relay. Not all routers support automatic port forwarding, though. You +can use the Test button next to the checkbox to find out if Vidalia +is able to automatically set up port forwarding for you. +

+ +

+If the Test button finds that Vidalia is unable to set up port +forwarding for you, you may need to enable this feature on your router or +set up port forwarding manually. Some network devices have a feature called +Universal Plug-and-Play (UPnP). If you can access your router's +administrative interface, you should look for an option to enable UPnP. The +administrative interface for most routers can be accessed by opening http://192.168.0.1 or http://192.168.1.1 in your Web browser. You +should consult your router's instruction manual for more information. +

+ +

+If you need to set up port forwarding manually, the website +portforward.com has instructions for how to set up port forwarding for +many types of routers and firewalls. At a minimum, you will need to forward +your Relay Port, which defaults to port 443 on Windows and 9001 on +all other operating systems. If you also checked the checkbox labeled +Mirror the relay directory, then you will also need to forward your +Directory Port. The Directory Port is set to port 9030 by +default on all operating systems. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/services.html vidalia-0.2.15/src/vidalia/help/content/eo/services.html --- vidalia-0.2.10/src/vidalia/help/content/eo/services.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/services.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,138 @@ + + + + + + +

Hidden Services

+
+ +Remark: Support for hidden services is new in Vidalia. You should expect it +to have bugs, some of which possibly corrupting your hidden service +configuration. So, don't rely on it, or rather, don't blame us if something +goes wrong. If you find bugs or have comments on this new feature, please +let us know! We need your feedback. +

What is a hidden service?

+

+Hidden services allow you to provide any kind of TCP-based service, e.g. an +HTTP service, to others without revealing your IP address. The protocol to +provide a hidden service is built on top of the same circuits that Tor uses +for anonymous browsing and roughly has similar anonymity properties. +

+ +

+For more information on hidden service you may want to read section 5 of +Tor's design paper (doc/design-paper/tor-design.pdf) or the Rendezvous +Specification (doc/spec/rend-spec.txt). +

+ +
+

How do I provide a hidden service?

+

+Providing a hidden service consists of at least two steps: +

    +
  1. Install a web server locally (or a server for whatever service you want to +provide, e.g. IRC) to listen for local requests.
  2. +
  3. Configure your hidden service, so that Tor relays requests coming from Tor +users to your local server.
  4. +
+There is a fine tutorial on the Tor website +(https://www.torproject.org/docs/tor-hidden-service.html) that describes +these steps in more detail. +

+ +
+

What data do I need to provide?

+

+The services table contains five columns containing data about configured +hidden services: +

    +
  • Onion Address (generated): The service (or onion) address is generated by +Tor to uniquely identify your service. Give this onion address to the people +who shall be able to access your service. You may use the "Copy to +clipboard" button for that to avoid typos. If you have just created a hidden +service, the field says "[Created by Tor]"; in order to make it display the +real onion address, you need to save your configuration and re-open the +settings window.
  • +
  • Virtual Port (required): This is the TCP port that clients will need to know +in order to access your service. Typically, you will want to use the +service-specific port here, e.g. port 80 for HTTP. Note that the virtual +port usually has nothing to do with firewall settings, because it is only +used Tor-internally.
  • +
  • Target (optional): Usually you want Tor to relay connection requests to +localhost on a different port than the one you specified in "Virtual +Port". Therefore, you can specify a target consisting of physical address +and port to which requests to your hidden service are redirected, e.g. to +localhost:5222 (or on whatever port your server is listening). If you don't +specify any target, Tor will redirect requests to the port specified in +"Virtual Port" on localhost.
  • +
  • Service Directory (required): Tor needs to store some hidden-service +specific files in a separate directory, e.g. a private key and a hostname +file containing the onion address. This directory should be distinct from a +directory containing content that the service provides. A good place for a +service directory might be a sub directory in Tor's data directory. -- Note +that you cannot change the directory of a running service (it wouldn't make +much sense to allow it, because Vidalia is not supposed to move directories +on your hard disk!). If you want to move a hidden service to another +directory, please proceed as follows: Start by disabling the service in +Vidalia and save the configuration. Then move the directory on your hard +disk to the new place. Finally, change the directory in Vidalia to the new +location, enable the service again, and save the new configuration.
  • +
  • Enabled: If this checkbox is disabled, Vidalia will not configure the given +hidden service in Tor. This can be useful for keeping the configuration of a +currently unused service for later use. All non-enabled services are stored +in the Vidalia-specific configuration file vidalia.conf.
  • +
+

+ +
+

What are the five buttons used for?

+

+

    +
  • Add service: Creates a new empty service configuration.
  • +
  • Remove service: Permanently removes a hidden service configuration. (If you +want to temporarily remove a service, uncheck its Enabled checkbox.)
  • +
  • Copy to clipboard: Copies the onion address to the clipboard, so that you +can tell it to whoever shall be able to use your service.
  • +
  • Browse: Lets you browse to find a local hidden service directory.
  • +
+

+ +
+

How can I configure advanced hidden service settings?

+

+Tor allows configuration of more specific settings for hidden services, +e.g. forcing to use (or avoiding) certain nodes as introduction points, or +providing multiple virtual ports for the same service. +

+ +

+However, we decided to simplify things in Vidalia and provide only the most +common settings. If you want to configure advanced settings, you need to do +so in Tor's torrc file. Vidalia will not remove those settings even when you +are editing your hidden services. If you specify more than one virtual port, +only the first will be displayed and be editable. +

+ +
+

How does Vidalia help me to access other hidden services?

+

+Not at all. There is no need to do so. If you want to access another hidden +service, type the service's onion address in your browser (or appropriate +client application if it's not a web service), and Tor does the rest for +you. There is no need to specifically configure Tor for that. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eo/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/eo/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/eo/troubleshooting.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eo/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,155 @@ + + + + + + +

Troubleshooting

+
+ +Listed below are some of the common problems or questions people have while +running Tor. If you can't find anything about the particular problem you're +having, check out our website at www.vidalia-project.net for more +support and information.
+

I Can't Start Tor

+

+The most likely reason that Vidalia could not start Tor is because Vidalia +is looking for your Tor installation in the wrong directory. You can tell +Vidalia where Tor is located by updating the Tor Executable option in +the general configuration settings. +

+

+Another possible reason that Tor cannot start is because there is already +another Tor process running. Check your list of running process and stop the +previous Tor process, if you find one. Then, try running Tor again. +

+

+If that did not help, check your message log to see +if Tor printed any information about errors it encountered while trying to +start. +

+ + +

Vidalia Can't Connect to Tor

+

+Vidalia manages Tor by communicating with it via Tor's control port. +

+

+The most common reason that Vidalia cannot connect to Tor is because Tor +started, but encountered an error and exited immediately. You should check +your message log to see if Tor reported any errors +while it started. +

+

+If Tor is listening on a different port than Vidalia expects, Vidalia will +be unable to connect to Tor. You rarely need to change this setting, but if +there is another service running on your machine that conflicts with Tor's +control port, you will need to specify a different port. You can change this +setting in Vidalia's advanced configuration +settings. +

+ + +

Why is Vidalia asking me for a "control password"?

+

+Vidalia interacts with the Tor software via Tor's "control port". The +control port lets Vidalia receive status updates from Tor, request a new +identity, configure Tor's settings, etc. Each time Vidalia starts Tor, +Vidalia sets a random password for Tor's control port to prevent other +applications from also connecting to the control port and potentially +compromising your anonymity. +

+ +

+Usually this process of generating and setting a random control password +happens in the background. There are three common situations, though, where +Vidalia may prompt you for a password: +

+ +
+ + + +

Tor Exited Unexpectedly

+

+If Tor exits immediately after trying to start, you most likely have another +Tor process already running. Check the message log to +see if any of the last few messages in the list are highlighted in yellow +and contain a message similar to the following: +

+
+connection_create_listener(): Could not bind to 127.0.0.1:9050: Address already in use. 
+Is Tor already running?
+
+

+If you find an error message like the one above, you will need to stop the +other Tor process before starting a new one with Vidalia. On Windows, you +would need to look for tor.exe in your Task Manager. On most other +operating systems, the ps command can help you find the other Tor +process. +

+

+If Tor had been running successfully for awhile (that is, longer than a few +seconds), then you should check the message log for +information about any errors Tor experienced before it exited. Such errors +will be highlighted in either red or yellow. +

+ + +

Vidalia Can't Stop Tor

+

+If Vidalia cannot stop Tor, you should check your message +log to see if Tor reported any errors while trying to exit. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/es/bridges.html vidalia-0.2.15/src/vidalia/help/content/es/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/es/bridges.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/es/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,74 @@ + + + + + + +

Relevos de Puente

+
+ + +

¿Qué es un relevo de puente?

+

+Algunos proveedores de servicios de Internet intentan prevenir que usuarios +tengan aceso a la red Tor, bloqueando connexiones con conocidos relevos de +Tor. Relevos de puente (o 'puentes') son relevos que apoyan a éstes +usuarios censurados para que tengan aceso a la red Tor. En cambio con otros +relevos, los puentes no se encuentran en los mismos directorios que los +releovs ordinarios. Como no hay lista publica de ellos, aunque el ISP esté +filtrando connexiones a todos los conocidos relevos de Tor, es muy probable +que no puedan bloquear todos los puentes. +

+ + +

¿Cómo se puede encontrar un relevo de puente?

+

+Hay dos maneras mas comunes de conocer la dirección de un puente. +

    +
  1. Convencen a algunos amigos que mantengan puentes privadas para tí
  2. +
  3. Utilizan algunos de los puentes públicos.
  4. +
+

+ +

+Para utilizar puentes privados, pide a tus amigos que ejecuten Vidalia y Tor +en una parte del internet sin censura, y luego haz clic en Ayudar +usuarios censurados en la página de 'Opciones de +relevos' de Vidalia.. Luego ellos deberían mandarte de manera privada +la linea con la dirección de puente al fondo de su página de relevo. +En cambio con el ejecutar de un relevo de salida, el ejecutar de un relevo +de puente sólo pasa datos a y de la red Tor por eso no debe exponer el +operador a quejas de abuso. +

+ +

+Puedes encontrar direcciones de puentes públicos al visitar +https://bridges.torproject.org. . Las respuestas que encuentras en +ésta página se cambiará después de unos cuantos días, entonces visita de +nuevo a menudo si quieres más direcciones de puentes. La otra manera de +encontrar direcciones de puentes públicos es mandar un correo a +bridges@torproject.com con la linea get bridges sólo en el +cuerpo el correo. Sin embargo, para que podamos hacerle más dificil para un +hacker aprender muchas direcciones de puentes, debes mandarnos éste pedida +desde una cuenta Gmail. +

+ +

+Configurando más que una direccion de puente asegura que tu connexión de +Tor sea mas estabile, por si acaso que algunos de los puentes sean fuera del +alcance. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/bridges.html vidalia-0.2.15/src/vidalia/help/content/eu/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/eu/bridges.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,71 @@ + + + + + + +

Bridge Relays

+
+ + +

What are bridge relays?

+

+Some Internet Service Providers (ISPs) attempt to prevent users from +accessing the Tor network by blocking connections to known Tor +relays. Bridge relays (or bridges for short) are relays that help +these censored users access the Tor network. Unlike other Tor relays, +bridges are not listed in the same public directories as normal +relays. Since there is no complete public list of them, even if your ISP is +filtering connections to all the known Tor relays, they probably won't be +able to block all the bridges. +

+ +
+

How do I find a bridge relay?

+

+There are two main ways to learn about a bridge address: +

    +
  1. Get some friends to run private bridges for you
  2. +
  3. Use some of the public bridges
  4. +
+

+ +

+To use private bridges, ask your friends to run Vidalia and Tor in an +uncensored area of the Internet, and then click on Help censored +users in Vidalia's Relay settings page. Then +they should privately send you the Bridge address line at the bottom +of their Relay page. Unlike running an exit relay, running a bridge relay +just passes data to and from the Tor network, so it shouldn't expose the +operator to any abuse complaints. +

+ +

+You can find public bridge addresses by visiting +https://bridges.torproject.org. The answers you get from that page +will change every few days, so check back periodically if you need more +bridge addresses. Another way to find public bridge addresses is to send +mail to bridges@torproject.org with the line get bridges by +itself in the body of the mail. However, so we can make it harder for an +attacker to learn lots of bridge addresses, you must send this request from +a Gmail account. +

+ +

+Configuring more than one bridge address will make your Tor connection more +stable, in case some of the bridges become unreachable. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/config.html vidalia-0.2.15/src/vidalia/help/content/eu/config.html --- vidalia-0.2.10/src/vidalia/help/content/eu/config.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,185 @@ + + + + + + +

Configuring Vidalia and Tor

+
+ +

+Vidalia allows you to configure some of the most commonly modified aspects +of Vidalia and Tor. It also lets you set up and manage a Tor relay so you can help the Tor network grow. +

+ + +

General Settings

+

+Settings on the General page are the most commonly modified settings. +

+
    +
  • Tor Executable: This is the Tor executable that Vidalia will run when +you select Start from the tray menu. If you have multiple versions of +Tor installed, you can tell Vidalia which version you would like to run by +clicking the Browse button and navigating to the particular Tor +installation you want. +
  • +
  • Startup Options: This setting allows you to have Vidalia +automatically start Tor when Vidalia starts. You can also configure Vidalia +to run when your system starts (Windows only). +
  • +
+ +
+

Network Settings

+

+The Network settings page lets you change how Tor connects to the Tor +network. +

+
+ + +

Relay Settings

+

+ See this help topic for detailed information +about setting up and managing a Tor relay. +

+ + +

Appearance Settings

+

+The settings on the Appearance page allow you to customize the look +and feel of Vidalia. +

+
    +
  • Language: Vidalia's interface has been translated into many languages +by helpful volunteers. When Vidalia is first run, it will try to guess which +language your computer is currently using. If Vidalia guesses incorrectly, +or if you prefer a different language, you can choose another language from +the dropdown box. You will need to restart Vidalia after changing the +displayed language for the changes to take effect. +
  • +
  • Style: In most cases, Vidalia will default to using your platform's +default interface style. If you dislike the default, you can choose +whichever interface style you prefer from the dropdown box. +
  • +
+ +
+

Advanced Settings

+

+The settings on the Advanced page should generally only be modified +by more experienced users. +

+
    +
  • Control Address & Port: The Control Port is the port which +Vidalia uses to talk to Tor. This doesn't need to be changed unless you +have a conflict with another service on your machine, or if you are using +Vidalia to control and monitor a Tor process running on another machine. +
  • +
  • Control Port Authentication: Control port authentication is used to +limit the applications on your machine that can connect to and reconfigure +your Tor installation. The available authentication methods are: +
      +
    • + None -- No authentication is required. Use of this option is +strongly discouraged. Any application or user on your computer can +reconfigure your Tor installation. +
    • +
    • + Password (Default) -- If this method is selected, you can +specify a password that Tor will require each time a user or application +connects to Tor's control port. If Vidalia starts Tor for you, you can have +Vidalia randomly generate a new password each time it starts Tor by checking +the Randomly Generate checkbox. +
    • +
    • + Cookie -- If cookie authentication is selected, Tor will write a file +(or, cookie) containing random bytes to its data directory when it +starts. Any user or application that tries to connect to Tor's control port +must be able to provide the contents of this cookie. +
    • +
    +
  • +
  • Tor Configuration File (optional): You can use this option to +have Vidalia start Tor using a specific torrc, Tor's configuration +file. If you leave this field blank, Tor will uses its own default torrc +location. +
  • +
  • Tor Data Directory (optional): You can specify the directory +in which Tor will store its saved data, such as cached Tor relay +information, Tor relay keys, and configuration files. If you leave this +field blank, Tor will use its own default data directory location. +
  • +
  • Permissions (optional, not available on Windows): If you enter +a value for Run as User, Tor will setuid to this user when it +starts. If you enter a value for Run as Group, Tor will +setgid to this group when it starts. +
  • +
+ +
+

Hidden Service Settings

+

+Hidden services allow you to provide any kind of TCP-based service, e.g. an +HTTP service, to others without revealing your IP address. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/index.html vidalia-0.2.15/src/vidalia/help/content/eu/index.html --- vidalia-0.2.10/src/vidalia/help/content/eu/index.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/index.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,41 @@ + + + + + + +

Vidalia Help

+
+ +

+Select a help topic from the tree on the left or click on the Search button +above the list of topics to search through all available help topics. +

+ +

+You can use the Find button on the toolbar above to search within a +particular help topic. +

+ +

+The Home button above will bring you back to this home page. +

+ +

+See the Helpful Links topic for some places you can +visit to find additional help and information about Vidalia and Tor. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/links.html vidalia-0.2.15/src/vidalia/help/content/eu/links.html --- vidalia-0.2.10/src/vidalia/help/content/eu/links.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/links.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,67 @@ + + + + + + +

Helpful Links

+
+ +

Vidalia

+ + + + + + + + + + + +
   Homepage + +https://www.torproject.org/vidalia/ +
   Wiki and Bugtracker + http://trac.torproject.org/ +
+ +

Tor

+ + + + + + + + + + + + + + + + +
   Homepage + https://www.torproject.org/ +
   FAQ + +https://www.torproject.org/docs/faq.html +
   Wiki and Bugtracker + https://trac.torproject.org/ +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/log.html vidalia-0.2.15/src/vidalia/help/content/eu/log.html --- vidalia-0.2.10/src/vidalia/help/content/eu/log.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,102 @@ + + + + + + +

Message Log

+
+ +The message log lets you see status information about a running Tor +process. Each message has a severity associated +with it, ranging from Error (most serious) to Debug (most +verbose). See the help section on message +severities for more information. +

Message Severities

+

+A message's severity tells you how important the message is. A higher +severity message usually indicates that something has gone wrong with +Tor. Lower severity messages appear frequently during normal Tor operations +and usually do not need to be logged. +

+ +

+The possible message severities, from most severe to least severe, are: +

+
    +
  • + Error: Messages that appear when something has gone very wrong and +Tor cannot proceed. These messages will be highlighted in red in the +message log. +
  • +
  • + Warning: Messages that only appear when something has gone wrong with +Tor, but are not fatal and Tor will continue running. These messages will be +highlighted in yellow. +
  • +
  • + Notice: Messages that appear infrequently during normal Tor operation +and are not considered errors, but you still may care about. +
  • +
  • + Info: Messages that appear frequently during normal Tor operation and +are not usually of interest to most users. +
  • +
  • + Debug: Extremely verbose messages that are primarily of interest to +developers. You should generally not log debug messages unless you know what +you are doing. +
  • +
+ +

+Most users should only log Error, Warning, and Notice +messages. +

+ +

+To select which message severities you would like to see, do the following: +

    +
  1. Open the message log from the Vidalia tray menu.
  2. +
  3. Click on Settings at the top of the message log window.
  4. +
  5. + Check message severities you would like to see from the Message Filter group +on the left and uncheck message severities you would like to hide. +
  6. +
  7. Click Save Settings to apply your new message filter.
  8. +
+

+ + +
+

Logging to a File

+

+Vidalia can also write log messages to a file, as well as logging them in +the message log window. To enable logging to a file, follow these steps: +

+ +
    +
  1. Open the message log from the Vidalia tray menu.
  2. +
  3. Click on Settings at the top of the message log window.
  4. +
  5. Check the box labeled Automatically save new log messages to a file.
  6. +
  7. + If you would like to change the file to which messages will be written, +either type the path and filename into the text box, or click Browse +to navigate to a location for your log file. +
  8. +
  9. Click Save Settings to save your log destination.
  10. +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/netview.html vidalia-0.2.15/src/vidalia/help/content/eu/netview.html --- vidalia-0.2.10/src/vidalia/help/content/eu/netview.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,174 @@ + + + + + + +

Network Viewer

+
+ +

+The network viewer lets you see relays in the Tor network and where your +traffic is going. +

+ + +
+

Overview

+

+When you want to communicate anonymously through Tor (say, connecting to a +website), Tor creates a tunnel, or circuit, of encrypted connections +through a series of relays on the network. Your application's traffic is +then sent as a stream through that circuit. For efficiency, multiple +streams may share the same circuit. +

+ +
+

Network Map

+

+The network map consists of a map of the world, with red pinpoints +indicating the geographic location of relays in the Tor network. Green lines +are drawn between relays to indicate the path of circuits that your Tor +client has created through the Tor network. +

+

+You can zoom in on locations in the map by clicking the Zoom In and +Zoom Out buttons in the toolbar. You can also scroll around on the +map by clicking on the map and then dragging it in whatever direction you +would like to move the map. +

+

+The geographic location of a Tor relay is determined by looking up the IP +address of the relay in a GeoIP database, created by MaxMind and located at +geoip.vidalia-project.net. +

+

+In the middle of the dialog, below the network map, you will see a list of +your current circuits, as well as any application traffic currently on those +circuits. When the network map first loads, you will probably see a +connection to geoip.vidalia-project.net, which occurs when Vidalia is +looking up geographic information for the list of Tor relays. It is +important to note that this request is done through Tor, so your location is +not revealed to the GeoIP relay. The results of the lookups will be cached +locally in order to reduce load on Vidalia's GeoIP relays. +

+ + +
+

Relay Status

+

+On the left side of the network view, you will see a list of relays in the +Tor network. Next to each relay is an icon indicating that relay's status. +The following table summarizes the possible relay status icons: +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ The relay is offline or simply not responding. +
+ The relay is hibernating, meaning it is online, but has used up as +much bandwidth as the operator is willing to allow for a given time period. +
+ The relay is online, but has shown only minimal throughput. +
+ The relay is online and has shown a throughput >= 20 KB/s. +
+ The relay is online and has shown a throughput >= 60 KB/s. +
+ The relay is online and has shown a throughput >= 400 KB/s. +
+

+

+All bandwidth values are estimates based on the minimum of either the +maximum bandwidth sustained input or output over any ten second period in +the past day. +

+ + +
+

Relay Details

+

+The relay details panel at the right side of the screen gives you details +about the relay or relays currently selected in the relay list. If you have selected a circuit or stream +in the list of your current circuits and streams, this panel will show you +details about each relay through which your traffic is currently being sent. +

+

+The fields that you may see in the panel are as follows (Note: not +all of these fields will always be present): +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
LocationThe geographic location of this Tor relay.
IP AddressIP address at which this Tor relay can be reached.
Platform + Operating system information and Tor version on which this relay is +currently running. +
Bandwidth + Estimated maximum amount of bandwidth that the directory relays have seen +this relay handle recently. +
Uptime + Length of time this relay has been available, which can be used to help +estimate this relay's stability. +
Last UpdatedDate this relay's information was last updated.
+

+ + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/running.html vidalia-0.2.15/src/vidalia/help/content/eu/running.html --- vidalia-0.2.10/src/vidalia/help/content/eu/running.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,105 @@ + + + + + + +

Running Tor

+
+ +

+Vidalia can help you control your Tor process by letting you start and stop +Tor, as well as monitoring Tor's status and letting you know if it exits +unexpectedly. +

+ + +

Starting and Stopping Tor

+

+To start Tor, +

    +
  1. Select Start from Vidalia's tray menu or press Ctrl+S
  2. . +
  3. + Vidalia's tray icon will change from an onion with a red X to a green onion +when Tor has started. +
  4. +
+If Vidalia is unable to start Tor, Vidalia will display an error message +telling you what went wrong. You can also look at your
message log to see if Tor printed any more information +about what went wrong. +

+ +

+To stop Tor, +

    +
  1. Select Stop from Vidalia's tray menu or press Ctrl+T
  2. . +
  3. + Vidalia's tray icon will change from a green onion to a gray onion with a +red X when Tor has stopped. +
  4. +
+If Vidalia was unable to stop Tor, Vidalia will display an error message +telling you what went wrong. You can also look at your message log to see if Tor printed any more information +about what went wrong. +

+ + +

Monitoring Tor's Status

+

+Vidalia tells you about the status of Tor by displaying an icon in your +system tray or dock area. The following table shows the different states +indicated by an icon in your system's notification area: +

+

+ + + + + + + + + + + + + + + + + +
+ Tor is stopped. Select Start from the Vidalia menu to start Tor. +
+ Tor is starting up. You can check the message log for +status information about Tor while it is starting. +
+ Tor is running. If you want to stop Tor, select Stop from the Vidalia +menu. Tor will print informational messages to the message log while it is running, if you want to see what +Tor is doing. +
Tor is in the process of shutting down.
+

+ +

+If Tor exits unexpectedly, Vidalia will change its icon to the dark onion +with a red X and display an error message letting you know what went +wrong. You can also check the message log for details +about any problems Tor encountered before it exited. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/server.html vidalia-0.2.15/src/vidalia/help/content/eu/server.html --- vidalia-0.2.10/src/vidalia/help/content/eu/server.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/server.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,238 @@ + + + + + + +

Setting Up a Tor Relay

+
+ +The Tor network is made up of volunteers all over the world who donate some +of their spare bandwidth by running a Tor relay. Vidalia helps you do your +part by making it easy to set up a relay of your own. +

Basic Settings

+

+If you decide you want to help the Tor network grow by running a relay, you +can follow these steps to get started: +

+
    +
  1. + Open the Configuration Dialog by selecting Settings from the +tray menu or Preferences from your system menubar on Macintosh +systems. +
  2. +
  3. Select the Relay configuration page.
  4. +
  5. + Decide whether you want to run a normal Tor relay or a bridge relay +(Tor 0.2.0.8-alpha or newer). Bridge relays help censored Tor users who are +blocked from accessing the Tor network directly. Check the box labeled +Relay traffic for the Tor network if you want to run a normal Tor +relay or Help censored users reach the Tor network if you want to run +a bridge relay. +
  6. +
  7. Enter the following information:
  8. +
      +
    • Nickname: The name which your relay will be known as on the Tor +network. An example of a relay nickname is "MyVidaliaRelay". +
    • +
    • Contact Info: Your e-mail address. This address will only be used to +contact you in case there is an important Tor security update or something +goes wrong with your relay. You might also include your PGP or GPG key ID +and fingerprint. +
    • +
    • Relay Port: The port on which your relay will listen for traffic from +clients or other Tor relays. +
    • +
    +
  9. + If you would like to mirror Tor's directory of relays for others on the +network you can check the box labeled Mirror the Relay Directory. If +you do not have much bandwidth, uncheck this box. If you do decide to mirror +the relay directory, make sure the Directory Port is different than +the Relay port you entered above. Bridge relays must mirror +the relay directory. +
  10. +
+ +
+

Bandwidth Limits

+

+Running a Tor relay can consume a large amount of bandwidth; however, Tor +allows you to limit the amount of bandwidth that you are willing to +contribute to the Tor network. You can run a relay, while still keeping your +network connection usable for your own use. +

+

+You should select the option in the dropdown box that best matches your +connection speed. If you select Custom, you will be able to specify +your own limits. +

+

Custom Limits

+

+The maximum rate is a pool of bytes used to fulfill requests during +short periods of traffic higher than your specified average rate, but +still maintains the average over a long period. A low average rate but a +high maximum rate enforces a long-term average while still allowing more +traffic during peak times if the average hasn't been reached lately. If your +average rate is the same as your maximum rate, then Tor will never +exceed the specified rate. Your maximum rate must always be greater +than or equal to your average rate. +

+

+The average rate is the maximum long-term average bandwidth allowed +(in kilobytes per second). For example, you might want to choose 2 megabytes +per second (2048 KB/s), or 50 kilobytes per second (a medium-speed cable +connection). Tor requires a minimum of 20 kilobytes per second to run a +relay. +

+

+It is important to remember that Tor measures bandwidth in bytes, not +bits. Also, Tor only looks at incoming bytes instead of outgoing bytes. For +example, if your relay acts as a directory mirror, you may be sending more +outgoing bytes than incoming. If you find this is the case and is putting +too much strain on your bandwidth, you should consider unchecking the +checkbox labeled Mirror the relay directory. +

+ +
+

Exit Policies

+

+Exit policies give you a way to specify what kinds of resources on the +Internet you are willing let other Tor users access from your Tor relay. +Tor uses a default list of exit policies that restrict some services, such +as mail to prevent spam and some default file sharing ports to reduce abuse +of the Tor network. +

+

+Each of the checkboxes represents a type of resource that you can allow Tor +users to access through your relay. If you uncheck the box next to a +particular type of resource, Tor users will not be allowed to access that +resource from your relay. If the box labeled Misc Other Services is +checked, Tor users will be able to access other services not covered by the +other checkboxes or Tor's default exit policy. +

+ +

+For completeness, the following table lists the specific port numbers +represented by each of the exit policy checkboxes. The Description +column describes the resources Tor clients will be allowed to access through +your relay, if the associated box is checked. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CheckboxPortsDescription
Websites80Normal, unencrypted Web browsing
Secure Websites (SSL)443Encrypted Web browsing
Retrieve Mail (POP, IMAP)110, 143, 993, 995Downloading email (does not permit sending email)
Instant Messaging (IM)703, 1863, 5050, 5190, 5222, 5223, 8300, 8888Instant messaging applications like MSN Messenger, AIM, ICQ, and Jabber
Internet Relay Chat (IRC)6660-6669, 6697, 7000-7001IRC clients and servers
Misc. Other Services*All other applications that aren't covered by the previous checkboxes
+ +

+If you do not want to let other Tor users make connections outside the Tor +network from your relay, you can uncheck all of the checkboxes. Even if you +uncheck all of the checkboxes, your relay is still useful to the Tor +network. Your relay will allow other Tor users to connect to the Tor +network and will help relay traffic between other Tor relays. +

+

+If you chose to run a bridge relay, the Exit Policies tab will be +grayed out, since bridge relays do not allow exit connections. Bridges are +only used by Tor clients to connect to the Tor network. +

+ + +
+

Port Forwarding

+

+Many home users connect to the Internet via a router, which allows +multiple computers on a local network to share the same Internet +connection. Some users may also be behind a firewall that blocks +incoming connections to your computer from other computers on the Internet. +If you want to run a Tor relay, however, other Tor clients and relays must +be able to connect to your relay through your home router or firewall. +

+ +

+To make your relay publicly accessible, your router or firewall needs to +know which ports to allow through to your computer by setting up what is +known as port forwarding. Port forwarding configures your router or +firewall to "forward" all connections to certain ports on your router or +firewall to local ports on your computer. +

+ +

+If you check the box labeled Attempt to automatically configure port +forwarding, Vidalia will attempt to automatically set up port forwarding +on your local network connection so that other Tor clients can connect to +your relay. Not all routers support automatic port forwarding, though. You +can use the Test button next to the checkbox to find out if Vidalia +is able to automatically set up port forwarding for you. +

+ +

+If the Test button finds that Vidalia is unable to set up port +forwarding for you, you may need to enable this feature on your router or +set up port forwarding manually. Some network devices have a feature called +Universal Plug-and-Play (UPnP). If you can access your router's +administrative interface, you should look for an option to enable UPnP. The +administrative interface for most routers can be accessed by opening http://192.168.0.1 or http://192.168.1.1 in your Web browser. You +should consult your router's instruction manual for more information. +

+ +

+If you need to set up port forwarding manually, the website +portforward.com has instructions for how to set up port forwarding for +many types of routers and firewalls. At a minimum, you will need to forward +your Relay Port, which defaults to port 443 on Windows and 9001 on +all other operating systems. If you also checked the checkbox labeled +Mirror the relay directory, then you will also need to forward your +Directory Port. The Directory Port is set to port 9030 by +default on all operating systems. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/services.html vidalia-0.2.15/src/vidalia/help/content/eu/services.html --- vidalia-0.2.10/src/vidalia/help/content/eu/services.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/services.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,138 @@ + + + + + + +

Hidden Services

+
+ +Remark: Support for hidden services is new in Vidalia. You should expect it +to have bugs, some of which possibly corrupting your hidden service +configuration. So, don't rely on it, or rather, don't blame us if something +goes wrong. If you find bugs or have comments on this new feature, please +let us know! We need your feedback. +

What is a hidden service?

+

+Hidden services allow you to provide any kind of TCP-based service, e.g. an +HTTP service, to others without revealing your IP address. The protocol to +provide a hidden service is built on top of the same circuits that Tor uses +for anonymous browsing and roughly has similar anonymity properties. +

+ +

+For more information on hidden service you may want to read section 5 of +Tor's design paper (doc/design-paper/tor-design.pdf) or the Rendezvous +Specification (doc/spec/rend-spec.txt). +

+ +
+

How do I provide a hidden service?

+

+Providing a hidden service consists of at least two steps: +

    +
  1. Install a web server locally (or a server for whatever service you want to +provide, e.g. IRC) to listen for local requests.
  2. +
  3. Configure your hidden service, so that Tor relays requests coming from Tor +users to your local server.
  4. +
+There is a fine tutorial on the Tor website +(https://www.torproject.org/docs/tor-hidden-service.html) that describes +these steps in more detail. +

+ +
+

What data do I need to provide?

+

+The services table contains five columns containing data about configured +hidden services: +

    +
  • Onion Address (generated): The service (or onion) address is generated by +Tor to uniquely identify your service. Give this onion address to the people +who shall be able to access your service. You may use the "Copy to +clipboard" button for that to avoid typos. If you have just created a hidden +service, the field says "[Created by Tor]"; in order to make it display the +real onion address, you need to save your configuration and re-open the +settings window.
  • +
  • Virtual Port (required): This is the TCP port that clients will need to know +in order to access your service. Typically, you will want to use the +service-specific port here, e.g. port 80 for HTTP. Note that the virtual +port usually has nothing to do with firewall settings, because it is only +used Tor-internally.
  • +
  • Target (optional): Usually you want Tor to relay connection requests to +localhost on a different port than the one you specified in "Virtual +Port". Therefore, you can specify a target consisting of physical address +and port to which requests to your hidden service are redirected, e.g. to +localhost:5222 (or on whatever port your server is listening). If you don't +specify any target, Tor will redirect requests to the port specified in +"Virtual Port" on localhost.
  • +
  • Service Directory (required): Tor needs to store some hidden-service +specific files in a separate directory, e.g. a private key and a hostname +file containing the onion address. This directory should be distinct from a +directory containing content that the service provides. A good place for a +service directory might be a sub directory in Tor's data directory. -- Note +that you cannot change the directory of a running service (it wouldn't make +much sense to allow it, because Vidalia is not supposed to move directories +on your hard disk!). If you want to move a hidden service to another +directory, please proceed as follows: Start by disabling the service in +Vidalia and save the configuration. Then move the directory on your hard +disk to the new place. Finally, change the directory in Vidalia to the new +location, enable the service again, and save the new configuration.
  • +
  • Enabled: If this checkbox is disabled, Vidalia will not configure the given +hidden service in Tor. This can be useful for keeping the configuration of a +currently unused service for later use. All non-enabled services are stored +in the Vidalia-specific configuration file vidalia.conf.
  • +
+

+ +
+

What are the five buttons used for?

+

+

    +
  • Add service: Creates a new empty service configuration.
  • +
  • Remove service: Permanently removes a hidden service configuration. (If you +want to temporarily remove a service, uncheck its Enabled checkbox.)
  • +
  • Copy to clipboard: Copies the onion address to the clipboard, so that you +can tell it to whoever shall be able to use your service.
  • +
  • Browse: Lets you browse to find a local hidden service directory.
  • +
+

+ +
+

How can I configure advanced hidden service settings?

+

+Tor allows configuration of more specific settings for hidden services, +e.g. forcing to use (or avoiding) certain nodes as introduction points, or +providing multiple virtual ports for the same service. +

+ +

+However, we decided to simplify things in Vidalia and provide only the most +common settings. If you want to configure advanced settings, you need to do +so in Tor's torrc file. Vidalia will not remove those settings even when you +are editing your hidden services. If you specify more than one virtual port, +only the first will be displayed and be editable. +

+ +
+

How does Vidalia help me to access other hidden services?

+

+Not at all. There is no need to do so. If you want to access another hidden +service, type the service's onion address in your browser (or appropriate +client application if it's not a web service), and Tor does the rest for +you. There is no need to specifically configure Tor for that. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/eu/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/eu/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/eu/troubleshooting.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/eu/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,155 @@ + + + + + + +

Troubleshooting

+
+ +Listed below are some of the common problems or questions people have while +running Tor. If you can't find anything about the particular problem you're +having, check out our website at www.vidalia-project.net for more +support and information.
+

I Can't Start Tor

+

+The most likely reason that Vidalia could not start Tor is because Vidalia +is looking for your Tor installation in the wrong directory. You can tell +Vidalia where Tor is located by updating the Tor Executable option in +the general configuration settings. +

+

+Another possible reason that Tor cannot start is because there is already +another Tor process running. Check your list of running process and stop the +previous Tor process, if you find one. Then, try running Tor again. +

+

+If that did not help, check your message log to see +if Tor printed any information about errors it encountered while trying to +start. +

+ + +

Vidalia Can't Connect to Tor

+

+Vidalia manages Tor by communicating with it via Tor's control port. +

+

+The most common reason that Vidalia cannot connect to Tor is because Tor +started, but encountered an error and exited immediately. You should check +your message log to see if Tor reported any errors +while it started. +

+

+If Tor is listening on a different port than Vidalia expects, Vidalia will +be unable to connect to Tor. You rarely need to change this setting, but if +there is another service running on your machine that conflicts with Tor's +control port, you will need to specify a different port. You can change this +setting in Vidalia's advanced configuration +settings. +

+ + +

Why is Vidalia asking me for a "control password"?

+

+Vidalia interacts with the Tor software via Tor's "control port". The +control port lets Vidalia receive status updates from Tor, request a new +identity, configure Tor's settings, etc. Each time Vidalia starts Tor, +Vidalia sets a random password for Tor's control port to prevent other +applications from also connecting to the control port and potentially +compromising your anonymity. +

+ +

+Usually this process of generating and setting a random control password +happens in the background. There are three common situations, though, where +Vidalia may prompt you for a password: +

+ +
+ + + +

Tor Exited Unexpectedly

+

+If Tor exits immediately after trying to start, you most likely have another +Tor process already running. Check the message log to +see if any of the last few messages in the list are highlighted in yellow +and contain a message similar to the following: +

+
+connection_create_listener(): Could not bind to 127.0.0.1:9050: Address already in use. 
+Is Tor already running?
+
+

+If you find an error message like the one above, you will need to stop the +other Tor process before starting a new one with Vidalia. On Windows, you +would need to look for tor.exe in your Task Manager. On most other +operating systems, the ps command can help you find the other Tor +process. +

+

+If Tor had been running successfully for awhile (that is, longer than a few +seconds), then you should check the message log for +information about any errors Tor experienced before it exited. Such errors +will be highlighted in either red or yellow. +

+ + +

Vidalia Can't Stop Tor

+

+If Vidalia cannot stop Tor, you should check your message +log to see if Tor reported any errors while trying to exit. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/bridges.html vidalia-0.2.15/src/vidalia/help/content/fa/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/fa/bridges.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,70 @@ + + + + + + +

پل های انتقالی

+
+ +یک نام = درباره +

پل های انتقالی چه هستند؟

+

+بعضی از سرویس دهندگان اینترنتی (ISPs) با مسدود کردن ارتباط با انتقال-دهنده +های Tor اقدام به منع دسترسی کاربران به شبکه Tor می کنند. پل های انتقالی (و +یا صورت کوتاه شده آن، "پل ها") انتقال دهنده هایی هستند که به کاربران سانسور +شده کمک می کند به شبکه Tor دسترسی یابند. برخلاف دیگر انتقال دهنده های Tor، +پل ها در فهرست عمومی انتقال دهنده های معمولی وارد نشده اند. از آنجایی که هیچ +فهرست عمومی کاملی از این پل ها موجود نیست، حتی از ISP شما دسترسی به تمام +انتقال دهنده های شناخته شده ی Tor را فیلتر می کند، به احتمال زیاد قادر +نخواهد بود تمامی پل ها را مسدود کند. +

+ +یک نام = یافتن +

چگونه یک پل انتقالی بیابم؟

+

+دو راه اصلی برای پیدا کردن آدرس یک پل موجود است. +

    +
  1. از چند دوست خود بخواهید که پل های خصوصی را برای شما فعال کنند.
  2. +
  3. از برخی پل های عمومی استفاده کنید
  4. +
+

+ +

+برای استفاده از پل های خصوصی از دوستانتان بخواهید Vidlia و Tor را در فضای +سانسور نشده اینترنت نصب فعال کنند و سپس روی Help censored users در +صفحه تنظیمات انتقال دهنده درVidalia کلیک کنند. حالا +می توانند به طور خصوصی جمله Bridge address در پایین صفحه انتقال دهنده +خود را برای شما ارسال کنند. فعال سازی پل انتقال دهنده، برخلاف فعال سازی +انتقال دهنده خروج، تنها آمار را از شبکه Tor به مقصد و بالعکس منتقل می کند و +قاعدتن نمی بایست باعث شکایت از عامل به دلیل نقض مقررات بشود. +

+ +

+آدرس پل های عمومی را می توانید در صفحه https://bridges.torproject.org +بیابید. جواب هایی که در این صفحه می یابید هر چند روز عوض می شوند. اگر نیاز +به آدرس پل های بیشتری دارید بهتر است به طور مرتب این صفحه را چک کنید. راه +دیگر برای یافتن پل های عمومی ارسال ایمیل به bridges@torproject.org است. این +عبارت را(get bridges) به تنهایی در بدنه ایمیل قرار دهید. اگر درخواست خود را +از طریق جیمیل ارسال کنید، به ما کمک کرده اید از اقدام هکرها برای آموختن آدرس +پل های بیشتر جلوگیری کنیم. +

+ +

+برای مواقعی که بعضی از پل ها در دسترس نیستند، فعال کردن آدرس بیش از یک پل، +ارتباط Tor شما را تقویت می کند. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/config.html vidalia-0.2.15/src/vidalia/help/content/fa/config.html --- vidalia-0.2.10/src/vidalia/help/content/fa/config.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,180 @@ + + + + + + +

راه اندازی Vidalia و Tor

+
+ +

+Vidalia به شما امکان می دهد که رایج ترین ویژگی های تعدیل شده Vidalia و Tor +را فعال کنید. همچنین به شما امکان می دهد بازپخش Tor که به رشد شبکه Tor کمک +می کند را مدیریت کنید. +

+ +<یک نام= "عمومی"/> +

تنظیمات عمومی

+

+تنظیمات صفحه همگانی بیشتر از تمام تنظیمات دیگر به طور عمومی تعدیل یافته اند. +

+
    +
  • قابل اجرا به وسیله Tor: هنگامی که گزینه Start را می زنید، Vidalia از لیست +منو موارد قابل اجرا به وسیله Tor را فعال می کند. اگر ورژن های چندگانه Tor +نصب کرده اید، می توانید به Vidalia بگویید با کلیک کردن روی دکمه Brows و +پیمایش بر روی Tor موردنظر، کدام ورژن Tor را می خواهید فعال کنید. +
  • +
  • گزینه های آغازین (Startup): این تنظیمات به شما امکان می دهد که Vidalia را +وادارید به طور اتوماتیک Tor را همزمان با استارت Vidalia فعال کند. همچنین می +توانید Vidalia تنظیم کنید تا همزمان با استارت سیستم شما، فعال شود (تنها در +ویندوز ممکن است). +
  • +
+ +<یک اسم="شبکه"/> +

تنظیمات شبکه

+

+تنظیمات صفحه شبکه به شما امکان می دهد چگونگی ارتباط Tor با شبکه Tor را +تغییر دهید. +

+
    +
  • من با فیلترشکن به اینترنت دسترسی می یابم: اگر ارتباط اینترنتی شما به +فیلترشکن HTTP نیاز دارد، می توانید Tor را تنظیم کنید تا تمام نیازهای فهرست +راهنما (Directory) و بازپخش های Tor را از طریق فیلترشکن شما بفرستد. در این +صورت می بایست نام و آدرس سرویس دهنده فیلترشکن خود را و نیز درگاهی را که +فیلترشکن شما از آنجا گوش به زنگ ارتباط ها می شود را مشخص کنید. اگر فیلترشکن +شما نیاز به تایید دارد، می توانید نام کاربری و کلمه ورود که برای وصل شدن به +فیلترشکن استفاده می کنید را وارد کنید، در غیر این صورت می توانید این جاها را +خالی بگذارید. +
  • +
  • فایروال من فقط امکان وصل شدن به درگاه های مشخصی را می دهد: اگر شما پشت +فایروال یا فیلترشکن مانعی قرار گرفته اید که اتصال شما به درگاه های در دسترس +را محدود می کند، می توانید Tor را تنظیم کنید تا مستقیمن فقط به بازپخش های +درگاه شما وصل شود و در درگاه هایی که از طریق فایروال یا فیلترشکن شما مجاز +هستند، شنود کند. کافی است لیستی از درگاه هایی که از طریق فایروال یا فیلترشکن +شما مجاز هستند را وارد کنید. نام ها را با کاما از هم جدا کنید. (مثال: 80، +443، 880،) +
  • +
  • ISP من مانع اتصال به شبکه Tor می شود: اگر ISP شما (سرویس دهنده اینترنت) +اتصال به شبکه Tor را مسدود می کند، Tor می تواند فیلتر را با پنهان کردن فهرست +اتصال خود دور بزند و از راه بازپخش هایی که "پل" نامیده می شود، وصل شود (فقط +Tor 0.2.0.3-alpha و یا ورژن جدیدتر). می توانید پل های بازپخش را با تعیین +آدرس و شماره درگاه، و یا آدرس، شماره درگاه، و انگشت نگار، اضافه کنید.
    + + در زیر، نمونه های فرمت معتبر آدرس پل را می یابید. +
      +
    • + 128.213.48.13:8080 +
    • +
    • + 128.213.48.13:8080 1054 13B1 DBDA F867 B226 74D2 52DF 3D9F A367 1F73 +
    • +
    • + 128.213.48.13:8080105413B1DBDAF867B22674D252DF3D9FA3671F73 +
    • +
    + حتی اگر آدرس هیچ پل بازپخشی را ندارید، مراجعه به این چک-باکس می تواند سودمند +باشد. Tor با پنهان کردن درخواست فهرست خود برای گرفتن اطلاعات درباره دیگر +بازپخش ها، اقدام مکانیسمی که باعث مسدود شدن درخواست Tor می شود را خنثی می +کند. +
  • +
+ +<یک نام="بازپخش"> +

تنظیمات بازپخش

+

+از عبارت کمکی برای دریافت اطلاعات دقیق درباره راه +اندازی و مدیریت بازپخش Tor استفاده کنید. +

+ +<یک نام="ظاهر"/> +

تنظیمات ظاهر

+

+تنظیمات صفحه "ظاهر" به شما امکان میدهد که شمایل Vidalia را به سلیقه ی خود +تغییر دهید. +

+
    +
  • زبان: خط اتصال Vidalia به وسیله مترجمانی مفید و کارآ، به چندین زبان ترجمه +شده. اولین بار که Vidalia فعال می شود تلاش می کند زبان مورد استفاده کامپیوتر +شما را حدس بزند. اگر حدس Vidalia نادرست باشد، و یا اگر شما زبان دیگری را +ترجیح بدهید، می توانید زبان دیگری را از فهرست منوی باز شونده(dropdown menu)، +انتخاب کنید. پس از تغییر زبان، می بایست سیستم را restart کنید تا زبان +انتخابی شما فعال شود. +
  • +
  • Style : در بیشتر موارد Validia از شمایل پیش فرض رابط کاربری شما استفاده می +کند. اگر شما از شمایل پیش فرض ناراضی هستید می توانید هر شمایلی برای رابط +کاربری خود که مایل هستید را از لیست باز شونده انتخاب کنید. +
  • +
+ +<یک نام="پیشرفته"> +

تنظیمات پیشرفته

+

+تنظیمات صفحه <پیشرفته> معمولن فقط برای کاربران با تجربه تر، تعدیل می شود. +

+
    +
  • Control Address & Port: درگاه کنترل درگاهی است که Vidalia برای +گفتگو با Tor استفاده می کند. نیازی نیست که آن را تغییر دهید مگر آن که با +سرویس دیگری روی دستگاه شما در تضاد باشد، و یا آن که شما در حال استفاده از +Vidalia برای کنترل و نظارت بر کار یک Tor فعال بر روی دستگاهی دیگر باشید. +
  • +
  • تایید درگاه کنترل: تایید درگاه کنترل برای محدود کردن اپلیکیشن های روی سیستم +شماست که می تواند مرتبط شود و نصب Tor شما را بازتنظمیم کند. متدهای تایید در +دسترس اینها هستند: +
      +
    • + هیچ: هیچ تاییدی مورد لزوم نیست. استفاده از این گزینه "شدیدن" منع می شود. هر +اپلیکیشن و یا کاربر روی سیستم شما می تواند نصب Tor را بازتنظیم کند. +
    • +
    • + کلیدواژه: (پیشفرض) -- اگر این گزینه انتخاب شده باشد، می توانید کلیدواژه ای +را مشخص کنید که Tor در هر بار که کاربر و یا اپلیکیشنی به درگاه کنترل Tor +مرتبط بشود، مطالبه کند. اگر Vidalia برایتان Tor را آغاز کند، می توانید +Vidalia را تنظیم کنید تا هر بارکه Tor را آغاز می کند، با چک کردن جعبه +"تولید تصادفی"، کلیدواژه تازه ای تولید کند. +
    • +
    • + کوکی -- اگر گزینه تایید کوکی انتخاب شده باشد، Tor فایلی (یا "کوکی") را خواهد +نوشت که شامل شمار تصادفی بایت های اطلاعات فهرست در زمان فعال شدنش می +شود. هر کاربر و یا اپلیکیشنی که سعی در اتصال به درگاه کنترل Tor را داشته +باشد، می بایست بتواند محتویات این کوکی را ارائه بدهد. +
    • +
    +
  • +
  • فایل تنظیم Tor (اختیاری): می توانید این گزینه را برای آغاز کردن Tor توسط +Validia با استفاده از یک مشخص، فایل تایید Tor، استفاده کنید. +
  • +
  • Tor Data Directory (optional): فهرست اطلاعات Tor (اختیاری): +شما می توانید فهرستی را که Tor در لیست اطلاعات خود سیو می کند را معین کنید، +نظیر اطلاعات ذخیره-سازی شده باز پخش Tor، کلیدهای بازپخش Tor، فایل های +تنظیمات. اگر این بخش را سفید بگذارید، Tor اطلاعات پیشفرض محل فهرست خود را به +جای آن استفاده خواهد کرد. +
  • +
  • مجوزها (اختیاری، روی ویندوز در دسترس نیست): اگر عبارت ارزشی +را روی به عنوان کاربر بکار بینداز پیاده کنید، Tor در زمان استارت آن +را setuid خواهد کرد (با آی دی کاربر فعال خواهد کرد). و اگر عبارت ارزشی به +عنوان گروه بکار بینداز، در آن صورت Tor آن را setgid خواهد کرد، یعنی در +موقع استارت با آی دی گروه فعال خواهد کرد. +
  • +
+ +<یک اسم="سرویس ها"/> +

محیط سرویس های مخفی

+

+سرویس مخفی به شما امکان می دهد که هر نوعی از سرویس TCP، نظیر HTTP را بدون +آشکار کردن آدرس آی پی خود ارائه دهید. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/index.html vidalia-0.2.15/src/vidalia/help/content/fa/index.html --- vidalia-0.2.10/src/vidalia/help/content/fa/index.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/index.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,43 @@ + + + + + + +

پشتیبانی Vidaial

+
+ +

+از لیست سمت چپ یکی از سرفصل های مربوط به پشتیبانی را انتخاب کنید و یا کلید +جستجو در بالای لیست سرفصل ها را بزنید تا تمام موضوعات مربوط به پشتیبانی را +مشاهده کنید. +

+ +

+می توانید از کلید Find (پیدا کن) در نوار ابزار (toolbar) بالا استفاده +کنید تا سرفصل های یک موضوع مشخص از پشتیبانی را مشاهده کنید. +

+ +

+کلید Home (خانه) در بالای صفحه شما را به صفحه نخست بازمی گرداند. +

+ +

+به سرفصل Helpful Links (لینک های مفید) مراجعه کنید +تا در میان صفحه های ارائه شده اطلاعات و پشتیبانی بیشتر در Vidalia و Tor به +دست آورید. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/links.html vidalia-0.2.15/src/vidalia/help/content/fa/links.html --- vidalia-0.2.10/src/vidalia/help/content/fa/links.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/links.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,85 @@ + + + + + + +

لينكهاي مفيد

+
+ +

ويداليا(Vidalia)

+ + + + + + + + + + + + + + + + +
   صفحه اصلي + +https://www.torproject.org/vidalia/ +
   ويكي(Wiki) + +http://trac.vidalia-project.net/wiki +
   گزارش خطاهاي برنامه + +http://trac.vidalia-project.net/report +
+ +

تُر(Tor)

+ + + + + + + + + + + + + + + + + + + + + +
   صفحه اصلي + https://www.torproject.org/ +
   سوالات متداول(fAQ) + +https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ +
   ويكي(Wiki) + +https://wiki.torproject.org/noreply/TheOnionRouter +
   گزارش خطاهاي برنامه + +https://bugs.torproject.org/flyspray +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/log.html vidalia-0.2.15/src/vidalia/help/content/fa/log.html --- vidalia-0.2.10/src/vidalia/help/content/fa/log.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,104 @@ + + + + + + +

عبارت ورود به سیستم

+
+ +عبارت ورود به سیستم به شما امکان می دهد که اطلاعات استاتوس درباره پروسه یک +Tor فعال را مشاهده کنید. هر عبارتی یک جدیت همراه دارد از (جدی ترین +هشدار)خطا تا اشکال زدایی (وقتگیرترین پروسه). برای اطلاعات +بیشتر به بخش کمک در خصوص جدیت عبارت مراجعه کنید. +

جدیت پیام

+

+جدیت یک پیام نشان می دهد که هشدار تا چه اندازه جدی است. پیام های با درجه +جدیت بالاتر نشان از بروز خطا در Tor دارند. عبارتهای با درجه جدیت پایین تر +عمومن در طول فعالیت Tor دیده می شوند و نیاز به پاکسازی ندارند. +

+ +

+پیام های هشدار معمول، با درجه جدیت حداکثر تا حداقل، از این قرارند: +

+
    +
  • + Error (خطا): پیام هایی هستند که وقتی خطای بزرگی رخ می دهد که Tor قادر +به ادامه نیست، ظاهر می شوند. این پیام ها red با قرمز در ورودی پیام ها +مشخص می شوند. +
  • +
  • + Warning (هشدار): پیام هایی هستند که تنها هنگامی که Tor دچار اشکال شود +ظاهر می شوند، اما خطرناک نیستند و Tor به کار خود ادامه خواهد داد. این پیام +ها با yellow زرد مشخص می شوند. +
  • +
  • + Notice (توجه): پیام هایی هستند که به ندرت هنگام فعالیت معمول Tor ظاهر +می شوند و خطا به شمار نمی آیند، با وجود این بهتر است توجه لازم را نشان +دهید. +
  • +
  • + Info(اطلاعات): پیام هایی هستند که مکرر در طول فعالیت معمول Tor ظاهر +می شوند و غالبن نیز موفق به جلب توجه کاربران نمی شوند. +
  • +
  • + Debug (اشکال زدایی): پیام های بسیار طویل که اساسن مورد توجه سازندگان +نرم افزارند. اگر اطلاع کافی ندارید بهتر است پیام را حذف نکنید. +
  • +
+ +

+برای بیشتر کاربران، مناسب تر است که فقط پیام های خطا، هشدار، و توجه را حذف +کنند. +

+ +

+برای انتخاب جدیت پیامی که مایلید مشاهده کنید، مراحل زیر را انجام دهید: +

    +
  1. ورودی پیام ها را از روی منوی Vidalia باز نمایید.
  2. +
  3. روی Settings در بالای پنجره ورودی پیام کلید کنید.
  4. +
  5. + جدیت پیامی را که مایلید ببینید را از روی گروه پالایش پیام در سمت چپ چک کنید +و سپس چک-باکس جدیت پیامی را که انتخاب کرده اید، تیک نزنید. +
  6. +
  7. روی Save Settings کلیک کنید تا پیام پالایش جدید شما سیو شود.
  8. +
+

+ + +<یک اسم="/> +

ورود به یک فایل

+

+Vidalia همچنین می تواند پیام ورود به فایل بنویسد، و نیز می تواند آنها را به +پنجره ورودی پیام ها وارد کند. برای فعال کردن ورود به فایل، این مراحل را +دنبال کنید: +

+ +
    +
  1. ورودی پیام ها را از روی منوی Vidalia باز نمایید.
  2. +
  3. روی Settings در بالای پنجره ورودی پیام کلید کنید.
  4. +
  5. چک-باکسی که عنوان پیام ورود جدید را به طور اتوماتیک در فایل سیو کن +دارد را تیک بزنید.
  6. +
  7. + اگر مایلید محل فایلی که پیام های شما آنجا نوشته می شود را تغییر دهید، یا +آدرس فایل و اسم فایل را در تکست-باکس بنویسید و یا روی Browse (مرور) +کلیک کنید و بگردید تا محلی که مایلید پیام ها در آنجا ذخیره شود را انتخاب +کنید. +
  8. +
  9. برای سیو کردن محل مخزن پیام، روی Save Settings کلیک کنید.
  10. +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/netview.html vidalia-0.2.15/src/vidalia/help/content/fa/netview.html --- vidalia-0.2.10/src/vidalia/help/content/fa/netview.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,172 @@ + + + + + + +

ناظر شبکه

+
+ +

+ناظر شبکه به شما امکان می دهد بازپخش های شبکه Tor و مسیر ترافیک خود را +مشاهده کنید. +

+ + +<یک اسم=نظارت"/> +

نظارت

+

+اگر بخواهید به طور ناشناس از طریق Tor ارتباط برقرار کنید (مثلن با یک وبسایت +ارتباط برقرار کنید)، Tor از اتصال های رمزبندی شده از طریق شماری از بازپخش ها +در شبکه یک تونل ایجاد می کند و یا یک circuit (مدار). ترافیک اپلیکیشن +شما در این زمان به عنوان stream (جریان) از مسیر مدار ارسال می +شود. برای تاثیر بیشتر، چندین جریان می توانند از یک مدار واحد عبور کنند. +

+ +<یک اسم="نقشه ی نت"/> +

نقشه ی شبکه

+

+نقشه شبکه شامل نقشه ای از جهان است با علامت های قرمز که محل بازپخش های شبکه +Tor را معین می کنند. در فاصله بازپخش ها خط های سبز مسیر مداری که کاربر Tor +شما از طریق شبکه Tor ایجاد کرده را مشخص می کنند. +

+

+برای درشت نمایی محلی از نقشه روی Zoom In و Zoom Out در toolbar +کلیک کنید. همچنین می توانید با کلیک کردن روی نقشه و کشاندن آن به هر سمتی که +مایلید، دورتادور نقشه را تماشا کنید. +

+

+ منطقه جغرافیایی یک بازپخش Tor با پیدا کردن آدرس آی پی آن بازپخش در بخش +اطلاعات GeoIP که توسط MaxMind ایجاد شده و در geoip.vidalia-project.net قرار +داده شده، تعیین می شود. +

+

+در وسط دیالوگ، زیر نقشه شبکه، لیستی از مدارهای موجود خود و نیز تمام آمد و شد +اپلیکشن هایی که در همان موقع در آن مدارها جریان دارند را مشاهده می +کنید. وقتی که نقشه شبکه برای بار اول باز می شود، احتمالن اتصال به +geoip.vidalia-project.net را می بینید، که معمولن وقتی که Vidalia در حال +یافتن اطلاعات جغرافیایی برای لیست بازپخش های Tor است، قابل مشاهده است. در +نظر داشته باشید که این درخواست از طریق Tor صورت می گیرد، و به همین خاطر محل +جغرافیایی شما از سوی بازپخش GeoIP آشکار نخواهد شد. نتایج جستجو، در محل ذخیره +می شود تا بار بازپخش های GeoIP متعلق به Vidalia را کاهش دهد. +

+ + +<یک اسم="لیست بازپخش"/> +

موقعیت بازپخش

+

+در سمت چپ نمای (view) شبکه لیستی ز بازپخش شبکه Tor را می بینید. کنار هر +بازپخش ایکونی هست که موقعیت بازپخش را نشان می دهد. جدول زیر خلاصه ای از +موقعیت های ممکن ایکون ها را نشان می دهد: +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ با پخش در موقعیت برون-خط است و یا این که پاسخ نمی دهد. +
+ بازپخش در موقعیت hibernating (در خواب) است، یعنی آنلاین است اما +حداکثر پهنای نواری که اپراتور در این مقطع مجاز نموده را مصرف است. +
+ بازپخش آنلاین است اما حداقل توان کار را نشان می دهد. +
+ بازپخش آنلاین است و توان کاری >= 20 KB/s را نشان می دهد. +
+ بازپخش آنلاین است و توان کاری >= 60 KB/s را نشان می دهد. +
+ بازپخش آنلاین است و توان کاری >= 400 KB/s را نشان می دهد. +
+

+

+تمام ارزشگذاری پهنای نوار از روی مقیاسی بر اساس حداقل پهنای نواری که در +ظرفیت حداکثری خود در ده ثانیه در روز پیش، ورودی و یا خروجی داشته است، محاسبه +می شود. +

+ + +<یک اسم="/> +

جرئیات بازپخش

+

+تابلو شرح جزئیات بازپخش در سمت راست صفحه جزئیات مربوط به بازپخش و یا بازپخشی +که در حال حاضر در href="#relaylist">relay list گزینش شده است را در +اختیار شما قرار می دهد. اگر یک مدار و یا یک جریان را در لیست مدارها و یا +جریان ها موجود فعلی خود انتخاب کرده اید، این تابلو به شما جزئیات مربوط هر +بازپخشی که همین حالا از مسیر ترافیک شما ارسال می شود را نشان می دهد. +

+

+زمینه هایی که در تابلو ممکن است دیده شوند از این قرارند: (Note توجه: +همه زمینه ها همیشه دیده نمی شوند): +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
محلمحل جغرافیایی این بازپخش Tor.
آدرس آی پیآدرس آی پی دسترسی به این بازپخش Tor
بستر نرم افزاری + سیستم عامل اطلاعاتی و نمونه ای از Tor که این بازپخش در حال حاضر بر روی آن +فعال است. +
پهنای نوار + حداکثر پهنای نواری که بنا به تخمین فهرست اطلاعاتی بازپخش ها این بازپخش اخیرن +قادر بوده بکار بگیرد. +
بر خط + مدت زمانی که این بازپخش در دسترس بوده و بر اساس آن می توان درجه ی تثبیت آن +را تخمین زد. +
آخرین به روز رسانیآخرین تاریخ به روزرسانی اطلاعات این بازپخش.
+

+ + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/running.html vidalia-0.2.15/src/vidalia/help/content/fa/running.html --- vidalia-0.2.10/src/vidalia/help/content/fa/running.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,105 @@ + + + + + + +

Tor فعال

+
+ +

+Vidalia می تواند برای کنترل پروسه Tor، با ایجاد امکان راه اندازی و متوقف +سازی Tor و همینطور کنترل وضعیت Tor و آگاه سازی از خروج ناگهانی Tor به شما +کمک کند. +

+ +<یک اسم="/> +

راه اندازی و متوقف سازی Tor

+

+به سوی استارت سرویس Tor +

    +
  1. از منوی Vidalia استارت را انتخاب کنید و یا روی Ctrl+S کلیک کنید.
  2. . +
  3. + وقتی که Tor راه اندازی می شود، ایکون منوی Vidalia از پیاز با x قرمز به پیاز +سبز تغییر می کند. +
  4. +
+اگر Vidalia قادر به استارت Tor نباشد، Vidalia سپس پیام خطایی را نشان می دهد +که به شما اشکال ایجاد شده را اطلاع می دهد. شما همچنین می توانید به مخزن پیام +خود در message log مراجعه کنید و ببینید آیا Tor +اطلاعات بیشتری در مورد اشکالی که ایجاد شده ارسال کرده است یا نه. +

+ +

+برای stop (توقف)سرویس Tor +

    +
  1. از منوی ویدالیا Stop را انتخاب کنید و یا Ctrl+T را کلیک کنید.
  2. . +
  3. + وقتی Tor متوقف می شود، ایکون منوی Vidalia از پیاز سبز به پیاز خاکستری با x +قرمز تبدیل می شود. +
  4. +
+اگر Vidalia قادر به توقف Tor نباشد پیام خطایی را منعکس می کند و اشکال ایجاد +شده را توضیح می دهد. همچنین می توانید به message log +مراجعه کنید و ببینید آیا Tor هیچ پیامی در مورد اشکالی که ایجاد شده ارسال +کرده است یا نه. +

+ +<یک اسم="نظارت"/> +

نظارت بر وضعیت Tor

+

+Vidaila وضعیت Tor را با نمایش ایکونی در منوی سیستم و منطقه بارگیری مشخص می +کند. جدول زیر وضعیت های گوناگون را با ایکونی که در تابلوی اعلانات سیستم شما +نمایش داده می شود، نشان می دهد: +

+

+ + + + + + + + + + + + + + + + + +
+ Tor متوقف شد. برای استارت Tor از منوی Vidalia Start انتخاب کنید. +
+ Tor در حال استارت است. برای اطلاع از وضعیت Tor در مرحله استارت به message log مراجعه کنید. +
+ Tor فعال شده است. اگر مایلید Tor را متوقف کنید، از منوی Vidalia Stop +را انتخاب کنید. اگر میخواهید بدانید مشغول به چه کاری است، Tor همزمان با +فعالیت خود، اطلاعاتی را در مخزن پیام در message log +منتشر می کند. +
Tor در حال بسته شدن است
+

+ +

+اگر Tor ناگهانی خارج شود، Vidalia ایکون خود رابه پیاز تیره با x قرمز تغییر +می دهد و با نمایش یک پیام خطا اشکال ایجاد شده را به شما اطلاع می دهد. همچنین +می توانید مخزن پیام ها را در message log برای اطلاع +از جزئیات مشکلی که Tor پیش از خروج با آن روبرو شده است، چک کنید. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/server.html vidalia-0.2.15/src/vidalia/help/content/fa/server.html --- vidalia-0.2.10/src/vidalia/help/content/fa/server.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/server.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,235 @@ + + + + + + +

راه اندازی بازپخش Tor

+
+ +این شبکه با همکاری داوطلبانه افرادی در سراسر جهان، که بخشی از پهنای نوار خود +را، با فعال سازی بازپخش Tor اهدا می کنند، تشکیل شده است. Vidalia با آسان +نمودن مراحل راه اندازی، امکان می دهد که شما هم سهم خود را ادا کنید. +

تنظیمات پایه

+

+اگر مایلید شما نیز با راه اندازی یک بازپخش به رشد و گسترش شبکه Tor یاری +کنید، برای شروع این مراحل را گام به گام اجرا کنید. +

+
    +
  1. + تنظیمات گفتگو را با انتخاب تنظیمات از لیست منیو و یا از +گزینه ها از نوار منیو در سیستم مکینتاش، باز کنید. +
  2. +
  3. بازپخش را در صفحه تنظیمات انتخاب کنید.
  4. +
  5. + تصمیم بگیرید که مایلید بازپخش Tor معمولی را فعال کنید یا بازپخش پل، +یعنی Tor معمولی یا ورژن جدیدتر آن. بازپخش های پل به کاربرهای سانسورشده Tor +که راه دسترسشان به شبکه Tor مستقیمن مسدود شده کمک می کنند. اگر مایلید که Tor +معمولی را فعال کنید، مربع مارک ترافیک بازپخش برای شبکه تَر را تیک +بزنید. اگر مایل هستید بازپخش معمولی Tor را فعال کنید و اگر می خواهید که یک +بازپخش پل فعال کنید کمک به کاربرها برای دسترسی به شبکه تُر را انتخاب +کنید. +
  6. +
  7. اطلاعات زیر را وارد کنید:
  8. +
      +
    • اسم مستعار: نامی است که بازپخش شما در شبکه Tor به آن نام شناخته می +شود. نمونه ای از نام مستعار بازپخش، "بازپخش ویدالیای من" ("MyVidaliaRelay"). +
    • +
    • اطلاعات تماس: آدرس ایمیل شما. این آدرس فقط برای تماس با شما در صورتی +که یک بروزرسانی امنیتی ضرورت پیدا کند و یا بازپخش شما دچار اشکال شود، +استفاده می شود. همچنین می توانید رمز شناسایی و انگشت نگاری PGP و یا GPG را +وارد کنید. +
    • +
    • درگاه بازپخش: درگاهی که از آن بازپخش شما به ترافیک کاربران و یا +بازپخش های دیگر Tor گوش می دهد. +
    • +
    +
  9. + اگر مایلید فهرست بازپخش های Tor را برای دیگران بر روی شبکه منعکس کنید می +توانید مربع مجاور فهرست بازپخش را منعکس کن را تیک بزنید. اگر پهنای +نوار شما کافی نیست، این مربع را خالی بگذارید. اگر تصمیم گرفتید که فهرست +بازپخش را منعکس کنید، مطمئن شوید که درگاه فهرست از درگاه +بازپخش که در بالا وارد کردید، متفاوت است. پل های بازپخش می بایست +فهرست بازپخش را منعکس کنند. +
  10. +
+ +<یک نام="پهنای نوار"/> +

حد پهنای نوار

+

+فعال سازی بازپخش Tor بخش عظیمی از پهنای نوار را اشغال می کند، با این وجود، +Tor این امکان را ایجاد می کند که شما مقدار پهنای نواری که مایلید به شبکه Tor +اهدا کنید را محدود کنید. می توانید همزمان که یک بازپخش را فعال می کنید، +ارتباط با شبکه را برای استفاده خصوصی خود حفظ کنید. +

+

+می بایست گزینه ای که بیش از همه با سرعت اتصال شما هماهنگ است را در منوی +کرکره ای (dropdown menu) تیک بزنید. اگر سلیقه را انتخاب کرده اید، می +توانید خودتان تعیین کنید که چه حدی به کار شما می آید. +

+

محدودیت های خودساخته

+

+نرخ حداکثری مخزنی از بایت است که در دوره های کوتاه ترافیک بالا که بیش +از ظرفتی است که درنرخ متوسط تعیین کرده اید، به عنوان نیروی کمکی عمل +می کند، اما در دراز مدت همچنان متوسط می ماند. یک نرخ متوسط نازل، همراه با +نرخ حداکثری بالا، در دراز مدت نرخ متوسط را تقویت می کند و همزمان در ساعات +شلوغ، امکان ترافیک شدیدتر را، در صورتی که ظرفیت متوسط به طور کامل مصرف نشده +باشد، ایجاد می کند. اگر نرخ متوسط شما بانرخ حداکثری شما یکسان است، در +این صورت Tor هیچ وقت از نرخی که تعیین کرده اید، تجاوز نمی کند. نرخ +حداکثری شما می بایست از نرخ متوسط بیشتر یا همسان باشد. +

+

+نرخ متوسط حداکثر پهنای نواری با نرخ متوسط است که برای مصرف دراز مدت +(کیلوبایت در ثانیه) مجاز است. برای نمونه، ممکن است گزینه 2 مگابایت در ثانیه +(2048 KB/s) و یا 50 کیلوبایت در ثانیه (اتصال کیبلی سرعت متوسط) را انتخاب +کنید. Tor به 20 کیلوبایت در ثانیه نیاز دارد تا بازپخش را فعال کند. +

+

+نکته با اهمیتی که باید به خاطر داشت آن است که Tor پهنای نوار را بایت +اندازه می گیرد نه با بیت (bits). همچنین، Tor تنها به بایت های ورودی توجه می +کند نه بایت های خروجی. برای مثال اگر بازپخش شما به عنوان منعکس کننده فهرست +عمل می کنند، امکان دارد بایت های خروجی شما بیشتر از بایت های ورودی شما +باشد. اگر اینطور باشد و فشار زیادی بر پهنای نوار شما وارد کند، بهتر است چک +باکس فهرست را منعکس کن تیک نزنید. +

+ +<یک اسم="مقررات خروج"/> +

مقررات خروج

+

+مقررات خروج به شما امکان می دهد تعیین کنید دیگر کاربران Tor از کدام منابع +اینترنتی شما مجازند استفاده کنند. Tor یک لیست پیشفرض از مقررات خروج، که +استفاده بعضی از سرویس ها نظیر ایمیل، برای جلوگیری از ارسال هرزنامه، و چند +درگاه اشتراک فایل پیشفرض شده، برای جلوگیری از سوء استفاده خلاف از شبکه Tor +را مسدود می کند. +

+

+هر چک باکس مربوط به یک نوع از منابعی است که شما می توانید به کاربران Tor +اجازه بدهید از طریق آن به بازپخش شما دسترسی پیدا کنند. اگر چک باکس کنار یک +منبع را تیک نزنید، کاربران Tor مجاز به دسترسی به آن منبع از طریق بازپخش شما +نخواهند بود. اگر باکس Misc Other Services تیک شده باشد، کاربران Tor +قادر خواهند بود به دیگر سرویس هایی که شامل چک باکس های دیگر و یا مقررات خروج +پیشفرض شده Tor نمی شوند، دسترس داشته باشند. +

+ +

+برای تکمیل، جدول زیر، لیستی از شماره درگاه های معین با چک باکس مربوط به آن +درگاه به دست می دهد. ستونشرح منابعی را معین می کند که کاربران Tor +مجاز خواهند بود از طریق بازپخش شما به آن دسترسی یابند، اگر باکس مربوط تیک +خورده باشد. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
چک باکسدرگاه هاشرح
وبسایت ها80مرور وب نرمال و رمزبندی نشده
وبسایت های امن (SSL)443مرور وب رمزبندی شده
بازیابی ارسالات (POP , IMAP)995, 993, 143, 110بارگیری ایمیل (اجازه ارسال ایمیل نمی دهد)
ارسال فوری پیام703،1863،5050،5190،5222،5223،8300،8888برنامه های ارسال فوری پیام نظیر ام اس ان مسنجر، ای آی ام، آی سی کیو، و جابر
چت بازپخش اینترنتی (IRC)6660-6669, 6697, 7000-7001کاربران و سرویسدهندگان آی آر سی
دیگر سرویس های متفرقه*تمامی دیگر برنامه های کاربردی که شامل چک باکس های پیشین نمی شوند.
+ +

+اگر مایل نیستید دیگر کاربران Tor از طریق بازپخش شما با خارج از شبکه Tor در +ارتباط باشند، هیچکدام از چک باکس ها را تیک نزنید. حتی اگر هیچ کدام از چک +باکس ها را تیک نزنید، بازپخش شما همچنان برای شبکه Tor سودمند خواهد +بود. بازپخش شما به دیگر کاربران Tor امکان می دهد که به شبکه Tor متصل شوند و +نیز به بازپخش ترافیک میان دیگر بازپخش های Tor کمک می کند. +

+

+اگر تصمیم گرفتید یک پل بازپخش فعال کنید، کلید مقررات خروج خاکستری می +شود، و پل های بازپخش اجازه ارتباطات خروجی را نمی دهند. پل ها تنها توسط +مشتریان Tor برای اتصال به شبکه Tor استفاده می شود. +

+ + + +

ارسال درگاه

+

+بسیاری از کاربران خانگی از طریق router به اینترنت وصل می شوند که به +همزمان به چندین کامپیوتر اجازه میدهد که از یک اتصال اینترنتی واحد استفاده +کنند. بعضی از کاربران ممکن است توسط firewall که اتصال ورودی به +کامپیوتر شما از طریق دیگر کامپیوترهای آنلاین را مسدود می کند. اگر می خواهید +بازپخش Tor را فعال کنید دیگر کارکنان و مشتریان Tor و بازپخش ها می بایست +مجاز باشند از طریق router خانگی و یا firewall به بازپخش شما متصل شوند +

+ +

+اگر بخواهید بازپخش خود را در دسترس عموم قرار دهید می بایست port +forwarding(ارسال درگاه) را راه اندازی کنید تا router یا firewall شما +بداند کدام درگاه ها مجاز به ورود از طریق کامپیوتر شما هستند. ارسال +درگاهrouter یا firewall تنظیم می کند تا تمامی اتصال درگاه های معین router و +یا firewall را به درگاه های محلی کامپیوتر شما "ارسال" کند. +

+ +

+ اگر باکس اقدام به تنظیم اتوماتیک ارسال درگاه را تیک بزنید، Vidalia +اقدام به راه اندازی اتوماتیک ارسال پورت بر روی شبکه اتصال محلی شما می کند تا +دیگر کاربران Tor بتوانند به بازپخش شما متصل شوند. می توانید دکمه Test +کنار چک باکس را بزنید تا ببینید آیا Vidalia می تواند به طور اتوماتیک برای +شما ارسال درگاه را راه اندازی کند یا نه. +

+ +

+اگر دکمه Test دریابد که Vidalia قادر نیست برای شما ارسال درگاه را راه +اندازی کند، شاید لازم شود این گزینه را روی router فعال کنید و یا ارسال درگاه +را خودتان عملن فعال کنید. بعضی از دستگاه های مورد استفاده شبکه گزینه ای +دارند به نام Universal Plug-and-Play (UPnP). اگر به بخش تنظیمات +اجرایی router خود دسترسی دارید، باید دنبال گزینه ای بگرددید که UPnP را فعال +کند. بخش تنظیمات اجرایی بیشتر rounterها با باز کردن http://192.168.0.1، و یا http://192.168.1.1 در مرورگر وب، قابل دسترسی +است. برای اطلاعات بیشتر به راهنمای استفاده از rounter خود مراجعه کنید. +

+ +

+اگر می خواهید ارسال درگاه را به صورت دستی فعال کنید، راهنمای راه اندازی +ارسال درگاه بسیاری از routerها و firewallها در این وبسایت موجود است: +portforward.com. دست کم، می بایستRelay Port (درگاه بازپخش) خود را +ارسال کنید که بر روی درگاه 443 در ویندوز و 9001 در دیگر سیستم های عامل، +پیشفرض شده است. و نیز، اگر باکس Mirror the relay directory را تیک زده +اید، می بایست Directory Port خود را نیز ارسال کنید. در تمام سیستم های +عامل،Directory Port بر 9030 پیشفرض شده است. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/services.html vidalia-0.2.15/src/vidalia/help/content/fa/services.html --- vidalia-0.2.10/src/vidalia/help/content/fa/services.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/services.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,140 @@ + + + + + + +

سرویس های مخفی

+
+ +توجه: سرویس پشتیبانی از سرویس های مخفی در Vidalia تازه است. در نظر داشته +باشید که این سرویس ممکن است باگ (نارسایی) داشته باشد و برخی از این باگ ها +تنظیم سرویس های مخفی شما را دچار اشکال کنند. به این سرویس نباید اطمینان کامل +داشت، و نیز، اگر اشکالی پیش آمد ما را شماتت نکنید. اگر با اشکال مواجه شدید و +یا پیشنهادی در مورد این برنامه جدید داشتید، خواهشمندیم با ما در میان +بگذارید. منتظر دریافت نظرات شما هستیم. +

سرویس مخفی چیست؟

+

+سرویس مخفی به شما امکان می دهد هر نوع سرویس TCPمثل سرویس HTTP را در اختیار +دیگران بگذارید بدون این که آدرس آی پی خود شما آشکار شود. پیشنویس قرارداد +ارائه سرویس مخفی بر روی همان مداری که کار شده است که Tor برای مرورگری مخفی +استفاده می کند و تقریبن از ویژگی های مشابه برای استتار هویت برخوردار است. +

+ +

+برای اطلاعات بیشتر در مورد سرویس مخفی می توانید بخش 5 از مقاله ساختار Tor در +(doc/design-paper/tor-design.pdf) و یا شاخصه ی میعادگاه را +(doc/spec/rend-spec.txt) را بخوانید. +

+ +<یک اسم="ارائه"/> +

چگونه سرویس مخفی ارائه کنم؟

+

+ارائه سرویس مخفی شامل دست کم دو مرحله می شود: +

    +
  1. نصب یک سرویس دهنده وب بر سیستم (و یا هر سرویس دهنده ای که سرویسی که مایل به +ارائه هستید را ارائه کند، نظیر IRC) برای شنود مطالبات محلی.
  2. +
  3. سرویس مخفی خود را تنظیم کنید تا مطالبات بازپخش Tor از طرف کاربران Tor به +سرویس دهنده محلی شما برسد.
  4. +
+آموختاری بسیار عالی در وبسایت Tor +(https://www.torproject.org/docs/tor-hidden-service.html) موجود است که تمام +این مراحل را با جزئیات بیشتر شرح می دهد. +

+ +<یک اسم="اطلاعات"/> +

چه اطلاعاتی را می بایست ارائه کنم؟

+

+جدول سرویس، دارای پنج ستون حاوی اطلاعات در سرویس های مخفی تنظیم شده است. +

    +
  • آدرس روترهای پیازی (مولد): آدرس سرویس (یا پیاز) به وسیله Tor تولید شده تا به +گونه ای منحصر به فرد سرویس شما را شناسایی کند. این آدرس پیازی را به کسانی که +قرار است به سرویس شما دسترسی داشته باشند بدهید. می توانید از کلید (کپی کن +روی کلیپبورد) تا اشتباه تایپی جلوگیری کنید. اگر درجا یک سرویس مخفی ایجاد +کرده اید، محیط اینگونه خوانده خواهد شد "[Created by Tor]؛ برای این که آدرس +پیازی واقعی را نشان دهد، می بایست تنظیمات خود را سیو کنید و پنجره تنظیمات +محیط را بازگشایی کنید.
  • +
  • درگاه مجازی (ضروری): برای دسترسی به سرویس شما کاربران به شناسایی درگاه TCP +نیاز دارند. قاعدتن، شما مایل خواهید بود که درگاه ویژه سرویسدهی را در اینجا +استفاده کنید، نظیر درگاه 80 برای HTTP. در نظر داشته باشید که درگاه مجازی +معمولن ربطی به محیط firewall ندارد، زیرا تنها در موارد درونTorی استفاده شده +است.
  • +
  • هدف (اختیاری): معمولن شما می خواهید که Tor مطالبات اتصال به هاست-محلی را در +درگاهی متفاوت از آنچه شما در "درگاه مجازی" معین کرده اید، بازپخش کند. در +نتیجه، شما می توانید هدفی متشکل از آدرس فیزیکی و درگاهی که درخواستهای مربوط +به سرویس مخفی به آن باز-ارسال شده، معین کنید نظیر به هاست-محلی: 5222 (و یا +بر روی هرکدام از درگاه هایی که سرویسدهنده ی شما شنود می کند) تعیین کنید. اگر +هیچ هدفی را معین نکنید، Tor مطالبات را به درگاه تعیین شده برای "درگاه مجازی" +در هاست-محلی باز-ارسال خواهد کرد.
  • +
  • فهرست خدمات (ضروری): Tor می بایست برخی فایل های معین سرویس مخفی را در یک +فهرست مجزا ذخیره کند، نظیر یک کلید خصوصی و فایل نام سرویس دهنده حاوی آدرس +های پیازی. این فهرست می بایست از فهرستی که حاوی اطلاعات ارائه شده توسط +سرویسدهنده است مجزا باشد. محل مناسب برای قراردادن فهرست سرویس، ایجاد شاخه +فرعی در لیست اصلی اطلاعات Tor است. --- توجه داشته باشید که نمی توانید لیست +یک سرویس را هنگامی که در حال کار است، تغییر دهید( به دلیل آن که جابجایی +لیست های روی سخت افزار شما جزو وظایف Vidalia نیست، مجاز داشتن Vidalia به +تغییر لیست، بی معنا است!). اگر مایلید یک سرویس مخفی را به لیست دیگری منتقل +کنید، لطفن به این ترتیب عمل کنید: اول سرویس را در Vidalia غیرفعال کنید و +تنظیمات را سیو کنید. سپس لیست روی سخت افزار خود را به محل جدید منتقل +کنید. دست آخر، لیست Vidalia را به محل جدید منتقل کنید، سرویس را دوباره فعال +کنید، و تنظیمات جدید را سیو کنید.
  • +
  • فعال-شده: اگر این چک-باکس به عنوان غیرفعال، تیک خورده باشد، Vidalia آدرس +سرویس مخفی که به Tor داده شده را پیکربندی نخواهد کرد. این می تواند برای +استفاده های آینده از پیکربندی سرویسی که در حال حاضر استفاده نشده، سودمند +باشد. تمام سرویس های فعال-نشده در فایل پیکربندی ویژه Vidalia، در +vidalia.conf. نگهداری می شوند.
  • +
+

+ +<یک اسم="کلیدها"/> +

این پنج کلید چه استفاده ای دارند؟

+

+

    +
  • افزودن سرویس: پیکربندی یک سرویس خالی جدید ایجاد می کند.
  • +
  • حذف سرویس: پیکربندی یک سرویس مخفی را برای همیشه حذف می کند. (اگر می خواهید +سرویس را به طور موقت حذف کنید، چک-باکس "فعال" این سرویس را تیک نزنید.)
  • +
  • کپی به کلیپ بورد: آدرس های پیازی را روی کلیپ بورد کپی می کند تا شما بتوانید +آدرس را به هر کس که مایلید سرویس شما را استفاده کنید، بدهید.
  • +
  • مرورگری: به شما امکان می دهد که بگردید و جای لیست یک سرویس مخفی را پیدا +کنید.
  • +
+

+ +<یک اسم="پیشرفته"/> +

چگونه تنظیمات محیط پیشرفته سرویس مخفی را پیکربندی کنم؟

+

+Tor امکان تنظیمات بیشتر برای سرویس های مخفی با محیط ویژه را ایجاد می کند، +نظیر واداشتن به استفاده (و یا جلوگیری از) گره های معین به عنوان نقطه تلاقی، +و یا ارائه درگاه های مجازی متعدد برای سرویس واحد. +

+ +

+با این وجود، ما بر آن شدیم که استفاده از Vidalia را سهل تر کنیم و به این +خاطر تنها رایج ترین محیط ها را در دسترس قرار دادیم. اگر مایل به پیکربندی +محیط های پیشرفته هستید، اینکار را می بایست در فایل torrc در Tor انجام +دهید. اگر بیش از یک درگاه مجازی را مشخص کرده باشید، تنها اولین درگاه نشان +داده خواهد شد و تنها همان درگاه قابل ویرایش خواهد بود. +

+ +<یک اسم="کاربر"/> +

Vidalia چگونه به من کمک می کند به دیگر سرویس های مخفی دسترس داشته باشم؟

+

+نه، اصلن. هیچ نیازی به این کار نیست. اگر می خواهید به یک سرویس مخفی دیگر +دسترسی داشته باشید، آدرس پیازی آن سرویس را در مرورگر خود (و یا در فرم کاربری +مربوطه) تایپ کنید، و Tor بقیه کارها را برای شما انجام می دهد. نیازی که Tor +به طور ویژه برای این کار تنظیم شود. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fa/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/fa/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/fa/troubleshooting.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fa/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,156 @@ + + + + + + +

عیب زدایی

+
+ +لیستی که در زیر می آید مشکلات یا سوالاتی است که به طور معمول کسانی که از Tor +استفاده می کنند، با آن مواجه اند. اگر هیچ موردی مربوط به مشکل خاصی که شما +دارید پیدا نکردید، برای اطلاعات بیشتر به وبسایت ما در +www.vidalia-project.net مراجعه کنید. +

نمی توانم Tor را فعال کنم

+

+یکی از معمول ترین دلایلی که باعث می شود Vidalia نتواند Tor را فعال کند این +است که در دایرکتوری اشتباه به دنبال نصب Tor می گردد. با به روز کردن گزینه +Tor Executable در محیط تنظیمات عمومی، +می توانید محل Tor را به Vidalia بگویید. +

+

+یک دلیل دیگر فعال نشدن Tor می تواند این باشد که پروسه دیگری از Tor مشغول کار +است. لیست پروسه های در حال کار را چک کنید و پروسه پیشین Tor را، اگر بود، +متوقف کنید. سپس دوباره سعی کنید Tor را فعال کنید. +

+

+اگر این نیز کارگر نبود، پیام ورود را چک کنید ببینید آیا +Tor هیچ اطلاعاتی در مورد خطایی که در زمان شروع با آن مواجه شده، ثبت کرده یا +نه +

+ +<یک نام="اتصال"/> +

Vidalia نمی تواند به Tor وصل شود

+

+ Vidalia هدایت Tor را از طریق ارتباط گیری با آن به وسیله (درگاه کنترل) +control port انجام می دهد. +

+

+یکی از معمول ترین دلایلی که مانع اتصال Tor می شود این است که Tor شروع به کار +کرده اما در همان زمان با خطایی مواجه شده و بلافاصله برگشت کرده است. باید +پیام ورود به سیستم را چک کنید ببینید آیا Tor گزارشی از +خطای همزمان با شروع کار خود ثبت کرده یا نه. +

+

+اگر Tor در درگاهی به جز آن که Vidalia گمان می کند، شنود می کند، Vidalia قادر +به اتصال به Tor نخواهد بود. هر چند به ندرت ناچار به تغییر تنظیمات این محیط +خواهید شد اما اگر سرویس دیگری در دستگاه شما فعال باشد که با درگاه کنترل Tor +تصادم داشته باشد، می بایست درگاه دیگری را تعیین کنید. محیط را در تنظیمات +پیشرفته محیط در Vidaliaمی توانید تغییر دهید. +

+ +<یک نام="کلمه عبور"/> +

چرا Vidalia از من "کلمه عبور" می خواهد؟

+

+Vidalia با نرم افزار Tor از طریق درگاه کنترل Tor ارتباط می گیرد. درگاه کنترل +به Vidalia امکان می دهد که به روزرسانی های وضعیت را از Tor دریافت کند، +درخواست آی دی تازه بکند، محیط Tor را تشخیص بدهد، و غیره. هر بار که Vidalia +از نو Tor را راه اندازی می کند، یک کلمه عبور تصادفی برای درگاه کنترل Tor +تعیین می کند تا از اتصال اپلیکشین های دیگر به درگاه کنترل و لو رفتن هویت شما +جلوگیری شود. +

+ +

+معمولن پروسه تولید و تعیین یک کلمه عبور برای کنترل، در پس زمینه اتفاق می +افتد، اما سه موقعیت مشابه موجود است که در آن ممکن است Vidalia از شما طلب +کلمه عبور کند. +

+ +
+ + +<یک اسم="Torخارج شد"/> +

Tor ناگهان از سرویس خارج شد

+

+اگر Tor بلافاصله بعد از تلاش برای استارت خارج شود، به احتمال قوی شما یک Tor +دیگر از قبل دارید که فعال است. پیام message log را چک +کنید ببینید آیا هیچیک از پیام های لیست با رنگ زرد مشخص شده اند و پیامی شبیه +به پیام زیر دارند یا نه: +

+
+ارتباط-ایجاد-شنونده(): امکان اتصال به 127.0.0.1:9050 نبود: آدرس پیشاپیش مورد استفاده بوده است. آیا Tor در حال حاضر فعال است؟
+

+گر به پیام خطا، مشابه پیام بالا برخوردید، می بایست پروسه Torهای دیگر را اپیش +از آن که یک پروسه تازه همراه با Vidalia شروع کنید، قطع کنید. در ویندوز، +tor.exe را در بخش مدیریت تکلیف (task manager) پیدا کنید. در اکثر +سیستم های عامل دیگر، فرمانps می تواند به یافتن دیگر پروسه های Tor کمک +کند. +

+

+اگر Tor برای مدتی به طور موفقیت آمیز فعال بوده، (یعنی بیشتر از چند ثانیه)، +می بایست بخش ذخیره پیام message log را برای اطلاعات +مربوط به هر نوع خطایی که Tor قبل از خروج به آن برخورده، چک کنید. این خطاها +با رنگ زرد و یا قرمز مشخص شده اند. +

+ +<یک اسم="توقف"/> +

Vidalia قادر نیست Tor را متوقف کند

+

+اگر Vidalia نتواند Tor را متوقف کند، می بایست مخزن پیام خود در message log چک کنید و ببینید آیا Tor پیام خطایی قبل از +تلاش برای خروج ارسال کرده است یا نه. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fi/bridges.html vidalia-0.2.15/src/vidalia/help/content/fi/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/fi/bridges.html 2008-06-27 19:27:58.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fi/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -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 -Nru vidalia-0.2.10/src/vidalia/help/content/fi/config.html vidalia-0.2.15/src/vidalia/help/content/fi/config.html --- vidalia-0.2.10/src/vidalia/help/content/fi/config.html 2008-04-25 19:25:31.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fi/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@  diff -Nru vidalia-0.2.10/src/vidalia/help/content/fi/contents.xml vidalia-0.2.15/src/vidalia/help/content/fi/contents.xml --- vidalia-0.2.10/src/vidalia/help/content/fi/contents.xml 2008-06-27 19:27:58.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fi/contents.xml 2011-10-07 19:16:56.000000000 +0000 @@ -1,5 +1,5 @@  diff -Nru vidalia-0.2.10/src/vidalia/help/content/fi/links.html vidalia-0.2.15/src/vidalia/help/content/fi/links.html --- vidalia-0.2.10/src/vidalia/help/content/fi/links.html 2008-06-10 14:51:55.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fi/links.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@  diff -Nru vidalia-0.2.10/src/vidalia/help/content/fi/log.html vidalia-0.2.15/src/vidalia/help/content/fi/log.html --- vidalia-0.2.10/src/vidalia/help/content/fi/log.html 2008-04-25 19:25:31.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fi/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@  diff -Nru vidalia-0.2.10/src/vidalia/help/content/fi/netview.html vidalia-0.2.15/src/vidalia/help/content/fi/netview.html --- vidalia-0.2.10/src/vidalia/help/content/fi/netview.html 2008-04-25 19:25:31.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fi/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@  diff -Nru vidalia-0.2.10/src/vidalia/help/content/fi/running.html vidalia-0.2.15/src/vidalia/help/content/fi/running.html --- vidalia-0.2.10/src/vidalia/help/content/fi/running.html 2008-04-07 08:50:29.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fi/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@  diff -Nru vidalia-0.2.10/src/vidalia/help/content/fi/server.html vidalia-0.2.15/src/vidalia/help/content/fi/server.html --- vidalia-0.2.10/src/vidalia/help/content/fi/server.html 2010-03-16 18:54:19.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fi/server.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@  diff -Nru vidalia-0.2.10/src/vidalia/help/content/fi/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/fi/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/fi/troubleshooting.html 2008-04-25 19:25:31.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fi/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,13 +1,13 @@  diff -Nru vidalia-0.2.10/src/vidalia/help/content/fo/bridges.html vidalia-0.2.15/src/vidalia/help/content/fo/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/fo/bridges.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fo/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,71 @@ + + + + + + +

Bridge Relays

+
+ + +

What are bridge relays?

+

+Some Internet Service Providers (ISPs) attempt to prevent users from +accessing the Tor network by blocking connections to known Tor +relays. Bridge relays (or bridges for short) are relays that help +these censored users access the Tor network. Unlike other Tor relays, +bridges are not listed in the same public directories as normal +relays. Since there is no complete public list of them, even if your ISP is +filtering connections to all the known Tor relays, they probably won't be +able to block all the bridges. +

+ +
+

How do I find a bridge relay?

+

+There are two main ways to learn about a bridge address: +

    +
  1. Get some friends to run private bridges for you
  2. +
  3. Use some of the public bridges
  4. +
+

+ +

+To use private bridges, ask your friends to run Vidalia and Tor in an +uncensored area of the Internet, and then click on Help censored +users in Vidalia's Relay settings page. Then +they should privately send you the Bridge address line at the bottom +of their Relay page. Unlike running an exit relay, running a bridge relay +just passes data to and from the Tor network, so it shouldn't expose the +operator to any abuse complaints. +

+ +

+You can find public bridge addresses by visiting +https://bridges.torproject.org. The answers you get from that page +will change every few days, so check back periodically if you need more +bridge addresses. Another way to find public bridge addresses is to send +mail to bridges@torproject.org with the line get bridges by +itself in the body of the mail. However, so we can make it harder for an +attacker to learn lots of bridge addresses, you must send this request from +a Gmail account. +

+ +

+Configuring more than one bridge address will make your Tor connection more +stable, in case some of the bridges become unreachable. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fo/log.html vidalia-0.2.15/src/vidalia/help/content/fo/log.html --- vidalia-0.2.10/src/vidalia/help/content/fo/log.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fo/log.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,102 @@ + + + + + + +

Message Log

+
+ +The message log lets you see status information about a running Tor +process. Each message has a severity associated +with it, ranging from Error (most serious) to Debug (most +verbose). See the help section on message +severities for more information. +

Message Severities

+

+A message's severity tells you how important the message is. A higher +severity message usually indicates that something has gone wrong with +Tor. Lower severity messages appear frequently during normal Tor operations +and usually do not need to be logged. +

+ +

+The possible message severities, from most severe to least severe, are: +

+
    +
  • + Error: Messages that appear when something has gone very wrong and +Tor cannot proceed. These messages will be highlighted in red in the +message log. +
  • +
  • + Warning: Messages that only appear when something has gone wrong with +Tor, but are not fatal and Tor will continue running. These messages will be +highlighted in yellow. +
  • +
  • + Notice: Messages that appear infrequently during normal Tor operation +and are not considered errors, but you still may care about. +
  • +
  • + Info: Messages that appear frequently during normal Tor operation and +are not usually of interest to most users. +
  • +
  • + Debug: Extremely verbose messages that are primarily of interest to +developers. You should generally not log debug messages unless you know what +you are doing. +
  • +
+ +

+Most users should only log Error, Warning, and Notice +messages. +

+ +

+To select which message severities you would like to see, do the following: +

    +
  1. Open the message log from the Vidalia tray menu.
  2. +
  3. Click on Settings at the top of the message log window.
  4. +
  5. + Check message severities you would like to see from the Message Filter group +on the left and uncheck message severities you would like to hide. +
  6. +
  7. Click Save Settings to apply your new message filter.
  8. +
+

+ + +
+

Logging to a File

+

+Vidalia can also write log messages to a file, as well as logging them in +the message log window. To enable logging to a file, follow these steps: +

+ +
    +
  1. Open the message log from the Vidalia tray menu.
  2. +
  3. Click on Settings at the top of the message log window.
  4. +
  5. Check the box labeled Automatically save new log messages to a file.
  6. +
  7. + If you would like to change the file to which messages will be written, +either type the path and filename into the text box, or click Browse +to navigate to a location for your log file. +
  8. +
  9. Click Save Settings to save your log destination.
  10. +
+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fo/netview.html vidalia-0.2.15/src/vidalia/help/content/fo/netview.html --- vidalia-0.2.10/src/vidalia/help/content/fo/netview.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fo/netview.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,174 @@ + + + + + + +

Network Viewer

+
+ +

+The network viewer lets you see relays in the Tor network and where your +traffic is going. +

+ + +
+

Overview

+

+When you want to communicate anonymously through Tor (say, connecting to a +website), Tor creates a tunnel, or circuit, of encrypted connections +through a series of relays on the network. Your application's traffic is +then sent as a stream through that circuit. For efficiency, multiple +streams may share the same circuit. +

+ +
+

Network Map

+

+The network map consists of a map of the world, with red pinpoints +indicating the geographic location of relays in the Tor network. Green lines +are drawn between relays to indicate the path of circuits that your Tor +client has created through the Tor network. +

+

+You can zoom in on locations in the map by clicking the Zoom In and +Zoom Out buttons in the toolbar. You can also scroll around on the +map by clicking on the map and then dragging it in whatever direction you +would like to move the map. +

+

+The geographic location of a Tor relay is determined by looking up the IP +address of the relay in a GeoIP database, created by MaxMind and located at +geoip.vidalia-project.net. +

+

+In the middle of the dialog, below the network map, you will see a list of +your current circuits, as well as any application traffic currently on those +circuits. When the network map first loads, you will probably see a +connection to geoip.vidalia-project.net, which occurs when Vidalia is +looking up geographic information for the list of Tor relays. It is +important to note that this request is done through Tor, so your location is +not revealed to the GeoIP relay. The results of the lookups will be cached +locally in order to reduce load on Vidalia's GeoIP relays. +

+ + +
+

Relay Status

+

+On the left side of the network view, you will see a list of relays in the +Tor network. Next to each relay is an icon indicating that relay's status. +The following table summarizes the possible relay status icons: +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ The relay is offline or simply not responding. +
+ The relay is hibernating, meaning it is online, but has used up as +much bandwidth as the operator is willing to allow for a given time period. +
+ The relay is online, but has shown only minimal throughput. +
+ The relay is online and has shown a throughput >= 20 KB/s. +
+ The relay is online and has shown a throughput >= 60 KB/s. +
+ The relay is online and has shown a throughput >= 400 KB/s. +
+

+

+All bandwidth values are estimates based on the minimum of either the +maximum bandwidth sustained input or output over any ten second period in +the past day. +

+ + +
+

Relay Details

+

+The relay details panel at the right side of the screen gives you details +about the relay or relays currently selected in the relay list. If you have selected a circuit or stream +in the list of your current circuits and streams, this panel will show you +details about each relay through which your traffic is currently being sent. +

+

+The fields that you may see in the panel are as follows (Note: not +all of these fields will always be present): +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + +
LocationThe geographic location of this Tor relay.
IP AddressIP address at which this Tor relay can be reached.
Platform + Operating system information and Tor version on which this relay is +currently running. +
Bandwidth + Estimated maximum amount of bandwidth that the directory relays have seen +this relay handle recently. +
Uptime + Length of time this relay has been available, which can be used to help +estimate this relay's stability. +
Last UpdatedDate this relay's information was last updated.
+

+ + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fo/running.html vidalia-0.2.15/src/vidalia/help/content/fo/running.html --- vidalia-0.2.10/src/vidalia/help/content/fo/running.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fo/running.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,105 @@ + + + + + + +

Running Tor

+
+ +

+Vidalia can help you control your Tor process by letting you start and stop +Tor, as well as monitoring Tor's status and letting you know if it exits +unexpectedly. +

+ + +

Starting and Stopping Tor

+

+To start Tor, +

    +
  1. Select Start from Vidalia's tray menu or press Ctrl+S
  2. . +
  3. + Vidalia's tray icon will change from an onion with a red X to a green onion +when Tor has started. +
  4. +
+If Vidalia is unable to start Tor, Vidalia will display an error message +telling you what went wrong. You can also look at your
message log to see if Tor printed any more information +about what went wrong. +

+ +

+To stop Tor, +

    +
  1. Select Stop from Vidalia's tray menu or press Ctrl+T
  2. . +
  3. + Vidalia's tray icon will change from a green onion to a gray onion with a +red X when Tor has stopped. +
  4. +
+If Vidalia was unable to stop Tor, Vidalia will display an error message +telling you what went wrong. You can also look at your message log to see if Tor printed any more information +about what went wrong. +

+ + +

Monitoring Tor's Status

+

+Vidalia tells you about the status of Tor by displaying an icon in your +system tray or dock area. The following table shows the different states +indicated by an icon in your system's notification area: +

+

+ + + + + + + + + + + + + + + + + +
+ Tor is stopped. Select Start from the Vidalia menu to start Tor. +
+ Tor is starting up. You can check the message log for +status information about Tor while it is starting. +
+ Tor is running. If you want to stop Tor, select Stop from the Vidalia +menu. Tor will print informational messages to the message log while it is running, if you want to see what +Tor is doing. +
Tor is in the process of shutting down.
+

+ +

+If Tor exits unexpectedly, Vidalia will change its icon to the dark onion +with a red X and display an error message letting you know what went +wrong. You can also check the message log for details +about any problems Tor encountered before it exited. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fo/services.html vidalia-0.2.15/src/vidalia/help/content/fo/services.html --- vidalia-0.2.10/src/vidalia/help/content/fo/services.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fo/services.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,138 @@ + + + + + + +

Hidden Services

+
+ +Remark: Support for hidden services is new in Vidalia. You should expect it +to have bugs, some of which possibly corrupting your hidden service +configuration. So, don't rely on it, or rather, don't blame us if something +goes wrong. If you find bugs or have comments on this new feature, please +let us know! We need your feedback. +

What is a hidden service?

+

+Hidden services allow you to provide any kind of TCP-based service, e.g. an +HTTP service, to others without revealing your IP address. The protocol to +provide a hidden service is built on top of the same circuits that Tor uses +for anonymous browsing and roughly has similar anonymity properties. +

+ +

+For more information on hidden service you may want to read section 5 of +Tor's design paper (doc/design-paper/tor-design.pdf) or the Rendezvous +Specification (doc/spec/rend-spec.txt). +

+ +
+

How do I provide a hidden service?

+

+Providing a hidden service consists of at least two steps: +

    +
  1. Install a web server locally (or a server for whatever service you want to +provide, e.g. IRC) to listen for local requests.
  2. +
  3. Configure your hidden service, so that Tor relays requests coming from Tor +users to your local server.
  4. +
+There is a fine tutorial on the Tor website +(https://www.torproject.org/docs/tor-hidden-service.html) that describes +these steps in more detail. +

+ +
+

What data do I need to provide?

+

+The services table contains five columns containing data about configured +hidden services: +

    +
  • Onion Address (generated): The service (or onion) address is generated by +Tor to uniquely identify your service. Give this onion address to the people +who shall be able to access your service. You may use the "Copy to +clipboard" button for that to avoid typos. If you have just created a hidden +service, the field says "[Created by Tor]"; in order to make it display the +real onion address, you need to save your configuration and re-open the +settings window.
  • +
  • Virtual Port (required): This is the TCP port that clients will need to know +in order to access your service. Typically, you will want to use the +service-specific port here, e.g. port 80 for HTTP. Note that the virtual +port usually has nothing to do with firewall settings, because it is only +used Tor-internally.
  • +
  • Target (optional): Usually you want Tor to relay connection requests to +localhost on a different port than the one you specified in "Virtual +Port". Therefore, you can specify a target consisting of physical address +and port to which requests to your hidden service are redirected, e.g. to +localhost:5222 (or on whatever port your server is listening). If you don't +specify any target, Tor will redirect requests to the port specified in +"Virtual Port" on localhost.
  • +
  • Service Directory (required): Tor needs to store some hidden-service +specific files in a separate directory, e.g. a private key and a hostname +file containing the onion address. This directory should be distinct from a +directory containing content that the service provides. A good place for a +service directory might be a sub directory in Tor's data directory. -- Note +that you cannot change the directory of a running service (it wouldn't make +much sense to allow it, because Vidalia is not supposed to move directories +on your hard disk!). If you want to move a hidden service to another +directory, please proceed as follows: Start by disabling the service in +Vidalia and save the configuration. Then move the directory on your hard +disk to the new place. Finally, change the directory in Vidalia to the new +location, enable the service again, and save the new configuration.
  • +
  • Enabled: If this checkbox is disabled, Vidalia will not configure the given +hidden service in Tor. This can be useful for keeping the configuration of a +currently unused service for later use. All non-enabled services are stored +in the Vidalia-specific configuration file vidalia.conf.
  • +
+

+ +
+

What are the five buttons used for?

+

+

    +
  • Add service: Creates a new empty service configuration.
  • +
  • Remove service: Permanently removes a hidden service configuration. (If you +want to temporarily remove a service, uncheck its Enabled checkbox.)
  • +
  • Copy to clipboard: Copies the onion address to the clipboard, so that you +can tell it to whoever shall be able to use your service.
  • +
  • Browse: Lets you browse to find a local hidden service directory.
  • +
+

+ +
+

How can I configure advanced hidden service settings?

+

+Tor allows configuration of more specific settings for hidden services, +e.g. forcing to use (or avoiding) certain nodes as introduction points, or +providing multiple virtual ports for the same service. +

+ +

+However, we decided to simplify things in Vidalia and provide only the most +common settings. If you want to configure advanced settings, you need to do +so in Tor's torrc file. Vidalia will not remove those settings even when you +are editing your hidden services. If you specify more than one virtual port, +only the first will be displayed and be editable. +

+ +
+

How does Vidalia help me to access other hidden services?

+

+Not at all. There is no need to do so. If you want to access another hidden +service, type the service's onion address in your browser (or appropriate +client application if it's not a web service), and Tor does the rest for +you. There is no need to specifically configure Tor for that. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fo/troubleshooting.html vidalia-0.2.15/src/vidalia/help/content/fo/troubleshooting.html --- vidalia-0.2.10/src/vidalia/help/content/fo/troubleshooting.html 1970-01-01 00:00:00.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fo/troubleshooting.html 2011-10-07 19:16:56.000000000 +0000 @@ -0,0 +1,155 @@ + + + + + + +

Troubleshooting

+
+ +Listed below are some of the common problems or questions people have while +running Tor. If you can't find anything about the particular problem you're +having, check out our website at www.vidalia-project.net for more +support and information.
+

I Can't Start Tor

+

+The most likely reason that Vidalia could not start Tor is because Vidalia +is looking for your Tor installation in the wrong directory. You can tell +Vidalia where Tor is located by updating the Tor Executable option in +the general configuration settings. +

+

+Another possible reason that Tor cannot start is because there is already +another Tor process running. Check your list of running process and stop the +previous Tor process, if you find one. Then, try running Tor again. +

+

+If that did not help, check your message log to see +if Tor printed any information about errors it encountered while trying to +start. +

+ + +

Vidalia Can't Connect to Tor

+

+Vidalia manages Tor by communicating with it via Tor's control port. +

+

+The most common reason that Vidalia cannot connect to Tor is because Tor +started, but encountered an error and exited immediately. You should check +your message log to see if Tor reported any errors +while it started. +

+

+If Tor is listening on a different port than Vidalia expects, Vidalia will +be unable to connect to Tor. You rarely need to change this setting, but if +there is another service running on your machine that conflicts with Tor's +control port, you will need to specify a different port. You can change this +setting in Vidalia's advanced configuration +settings. +

+ + +

Why is Vidalia asking me for a "control password"?

+

+Vidalia interacts with the Tor software via Tor's "control port". The +control port lets Vidalia receive status updates from Tor, request a new +identity, configure Tor's settings, etc. Each time Vidalia starts Tor, +Vidalia sets a random password for Tor's control port to prevent other +applications from also connecting to the control port and potentially +compromising your anonymity. +

+ +

+Usually this process of generating and setting a random control password +happens in the background. There are three common situations, though, where +Vidalia may prompt you for a password: +

+ +
+ + + +

Tor Exited Unexpectedly

+

+If Tor exits immediately after trying to start, you most likely have another +Tor process already running. Check the message log to +see if any of the last few messages in the list are highlighted in yellow +and contain a message similar to the following: +

+
+connection_create_listener(): Could not bind to 127.0.0.1:9050: Address already in use. 
+Is Tor already running?
+
+

+If you find an error message like the one above, you will need to stop the +other Tor process before starting a new one with Vidalia. On Windows, you +would need to look for tor.exe in your Task Manager. On most other +operating systems, the ps command can help you find the other Tor +process. +

+

+If Tor had been running successfully for awhile (that is, longer than a few +seconds), then you should check the message log for +information about any errors Tor experienced before it exited. Such errors +will be highlighted in either red or yellow. +

+ + +

Vidalia Can't Stop Tor

+

+If Vidalia cannot stop Tor, you should check your message +log to see if Tor reported any errors while trying to exit. +

+ + + + diff -Nru vidalia-0.2.10/src/vidalia/help/content/fr/bridges.html vidalia-0.2.15/src/vidalia/help/content/fr/bridges.html --- vidalia-0.2.10/src/vidalia/help/content/fr/bridges.html 2008-06-26 14:21:51.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fr/bridges.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,39 +1,41 @@ + + -

Relais passerelles


- +"

Que sont les relais passerelles ?

Certains fournisseurs d'accès à Internet (FAI) tentent d'empêcher les -utilisateurs d'accéder au réseau Tor en bloquant les connexions aux relais Tor -connus. Les relais passerelles (ou simplement passerelles) sont des -relais qui permettent à ces utilisateurs censurés d'accéder au réseau Tor. -Contrairement aux autres relais Tor, les passerelles ne sont pas listées dans -le même annuaire public que les relais normaux. Comme il n'existe pas de liste -publique complète de ces passerelles, même si votre FAI filtre toutes les -connexions vers les relais Tor connus, il ne pourra probablement pas bloquer -l'ensemble des passerelles. +utilisateurs d'accéder au réseau Tor en bloquant les connexions aux relais +Tor connus. Les relais passerelles (ou simplement passerelles) sont +des relais qui permettent à ces utilisateurs censurés d'accéder au réseau +Tor. Contrairement aux autres relais Tor, les passerelles ne sont pas +listées dans le même annuaire public que les relais normaux. Comme il +n'existe pas de liste publique complète de ces passerelles, même si votre +FAI filtre toutes les connexions vers les relais Tor connus, il ne pourra +probablement pas bloquer l'ensemble des passerelles.

Comment puis-je trouver un relais passerelle ?

-Deux moyens principaux permettent de trouver l'adresse d'une passerelle : +Deux moyens principaux permettent de trouver l'adresse d'une +passerelle :

  1. Demander à vos amis d'installer une passerelle privée pour vous
  2. Utiliser une passerelle publique
  3. @@ -41,27 +43,27 @@

    -Pour utiliser une passerelle privée, demandez à vos amis de lancer Vidalia et -Tor dans une zone non censurée de l'Internet puis de cliquer sur le bouton -Aider un utilisateur censuré situé dans la page Paramètres du relais de Vidalia. Ensuite, ils doivent +Pour utiliser une passerelle privée, demandez à vos amis de lancer Vidalia +et Tor dans une zone non censurée de l'Internet puis de cliquer sur le +bouton Aider un utilisateur censuré situé dans la page Relay settings page de Vidalia. Ensuite, ils doivent vous envoyer l'adresse de la passerelle indiquée en bas de leur page Relais. Contrairement à un relais de sortie, une passerelle transmet -uniquement les données depuis et vers le réseau Tor. De ce fait, elle n'expose -pas vos amis à une plainte de leur opérateur Internet pour utilisation -abusive. +uniquement les données depuis et vers le réseau Tor. De ce fait, elle +n'expose pas vos amis à une plainte de leur opérateur Internet pour +utilisation abusive.

    Vous pouvez trouver des adresses de passerelles publiques en visitant -https://bridges.torproject.org. Ces passerelles changent régulièrement. -Vous devez en conséquence vérifier les réponses tous les quelques jours si -vous avez besoin de nouvelles adresses passerelles. Un autre moyen de trouver -des passerelles publiques est d'envoyer un courriel à +https://bridges.torproject.org. Ces passerelles changent +régulièrement. Vous devez en conséquence vérifier les réponses tous les +quelques jours si vous avez besoin de nouvelles adresses passerelles. Un +autre moyen de trouver des passerelles publiques est d'envoyer un courriel à bridges@torproject.org avec le texte get bridges dans le corps -du message. Pour qu'il soit encore plus difficile pour un attaquant de repérer -des passerelles, vous devez envoyer la requête depuis une messagerie en ligne -telle que GMail ou Yahoo!. +du message. Pour qu'il soit encore plus difficile pour un attaquant de +repérer des passerelles, vous devez envoyer la requête depuis une messagerie +en ligne telle que GMail ou Yahoo!.

    diff -Nru vidalia-0.2.10/src/vidalia/help/content/fr/config.html vidalia-0.2.15/src/vidalia/help/content/fr/config.html --- vidalia-0.2.10/src/vidalia/help/content/fr/config.html 2008-06-26 14:21:51.000000000 +0000 +++ vidalia-0.2.15/src/vidalia/help/content/fr/config.html 2011-10-07 19:16:56.000000000 +0000 @@ -1,15 +1,16 @@ + + - @@ -17,185 +18,183 @@


    -Vidalia vous permet de configurer les options les plus communes de Vidalia et -de Tor. Il permet également de mettre en place et de gérer un relais Tor. Vous pouvez ainsi aider facilement le -réseau Tor à grossir. +Vidalia vous permet de configurer quelques-uns des aspects communément +modifiables de Vidalia et de Tor. Il vous permet aussi de mettre en place et +de gérer un relai Tor afin d'aider le réseau Tor à +grandir.

    -

    Options générales

    +

    Paramètres généraux

    -La page Général rassemble les options les plus souvent modifiées. +Les paramètres sur la page Paramètres généraux sont les paramètres +les plus souvent modifiés.

      -
    • Application Tor: - Ce champ contient le chemin de l'exécutable Tor que Vidalia lancera - lorsque vous sélectionnerez Démarrer à partir du menu Tor situé - dans la zone de notification. Si vous avez installé plusieurs versions de - Tor, vous pouvez indiquer à Vidalia la version qu'il doit utiliser en - cliquant sur le bouton Parcourir et en sélectionnant l'application - Tor que vous souhaitez. -
    • -
    • Options de démarrage : - Cette option permet à Vidalia de lancer automatiquement Tor lorsqu'il - démarre. Vous pouvez également indiquer à Vidalia de démarrer - automatiquement lors du démarrage du système d'exploitation (option - disponible seulement sur Windows). +
    • Exécutable Tor: Ceci est le fichier exécutable de Tor que Vidalia +lancera lorsque vous sélectionnerez Démarrer depuis le menu de la +barre des tâches. Si vous avez plusieurs versions de Tor d'installées, vous +pouvez indiquer à Vidalia quelle version vous aimeriez utiliser en cliquant +le bouton Parcourir et en naviguant vers l'installation de Tor que +vous préférez. +
    • +
    • Options de démarrage: Ce paramètre vous permet de démarrer Tor +automatiquement quand Vidalia démarre. Vous pouvez aussi configurer Vidalia +pour démarrer en même temps que le système (seulement Windows).
    -

    Options de réseau

    +

    Paramètres du réseau

    -La page Réseau vous permet de modifier la façon dont Tor se connecte au -réseau Tor. +La page des paramètres Réseau vous permet de modifier comment Tor se +connecte au réseau Tor.

    -

    Options du relais

    +

    Paramètres relai

    - -Consultez la page Configurer un serveur pour avoir des informations détaillées sur la manière de paramètrer et de gérer un relais Tor. - + Lire l'aide pour des informations détaillées +sur la mise en place et la gestion d'un relai Tor.

    -

    Options de l'interface

    +

    Paramètres d'apparence

    -Les options présentes sur la page Interface vous permettent de -personnaliser l'apparence et l'ergonomie de Vidalia. +Les paramètres d'apparence vous permettent de personnaliser +l'apparence de Vidalia.

      -
    • Langue: - L'interface de Vidalia a été traduite dans de nombreuses langues par des - bénévoles. Lors de son premier démarrage, Vidalia essaie de trouver la - langue utilisée par le système d'exploitation. Si Vidalia se trompe ou si - vous préférez utiliser une langue différente, vous pouvez la choisir dans - la liste déroulante. Vous devez redémarrer Vidalia pour que la - modification prenne effet. -
    • -
    • Style: - Dans la plupart des cas, Vidalia utilise par défaut le style de - l'interface de votre plateforme. Si ce choix vous déplaît, vous pouvez - utiliser n'importe quel autre style disponible dans la liste déroulante. +
    • Langue:: l'interface de Vidalia a été traduite dans de nombreuses +langues par des volontaires. Lorsque Vidalia est lancé pour la première +fois, l'application tentera de deviner quelle est la langue employée sur +l'ordinateur en cours d'utilisation. Si Vidalia n'a pas fait le bon choix ou +bien si voous désirez utiliser une autre langue, vous pouvez en choisir une +sur la liste déroulante. Vous devrez redémarrer Vidalia afin que la langue +utilisée soit celle que vous avez choisie. +
    • +
    • Style: Dans la plupart des cas, Vidalia utilisera le style par défaut +de votre plateforme. Si ce dernier ne vous plaît pas, vous pouvez le changer +en en sélectionnant un autre dans la liste déroulante.
    -

    Options avancées

    +

    Paramètres avancés

    -Les options de la page Avancé ne doivent généralement être modifiées -que par des utilisateurs expérimentés. +Les paramètres de la page Avancée devraient être modifié, en règle +générale, uniquement par des utilisateurs expérimentés.