diff --git a/Rakefile b/Rakefile index 8b813e29cb7434923f76925f7bce89394f0993c0..97e83ab8d7a465220968872bc5f8c2fcfc9ea470 100644 --- a/Rakefile +++ b/Rakefile @@ -370,7 +370,7 @@ task :setup_environment => ['validate_git_state'] do end end - ENV['BASE_BRANCH_GIT_COMMIT'] = git_helper('git_base_branch_head') + ENV['BASE_BRANCH_GIT_COMMIT'] ||= git_helper('git_base_branch_head') ['GIT_COMMIT', 'GIT_REF', 'BASE_BRANCH_GIT_COMMIT'].each do |var| if ENV[var].empty? raise "Variable '#{var}' is empty, which should not be possible: " + diff --git a/auto/build b/auto/build index 0c3b0f7055eb40d461f3e5ed718b2f4ad50cb52c..7b2a351c185d41cc43258d8f6a596d16e61f1519 100755 --- a/auto/build +++ b/auto/build @@ -11,21 +11,21 @@ set -x umask 022 -### functions +### Clone all output, from this point on, to the log file -syslinux_utils_upstream_version () { - dpkg-query -W -f='${Version}\n' syslinux-utils | \ - # drop epoch - sed -e 's,.*:,,' | \ - # drop +dfsg and everything that follows - sed -e 's,\+dfsg.*,,' -} +BUILD_LOG="${BUILD_BASENAME}.buildlog" +exec > >(tee -a "$BUILD_LOG") +trap "kill -9 $! 2>/dev/null" EXIT HUP INT QUIT TERM +exec 2> >(tee -a "$BUILD_LOG" >&2) +trap "kill -9 $! 2>/dev/null" EXIT HUP INT QUIT TERM + +### functions print_iso_size () { local isofile="$1" [ -f "$isofile" ] || return 23 size=$(stat --printf='%s' "$isofile") - echo "The ISO is ${size} bytes large." + echo "I: The ISO is ${size} bytes large." } ### Main @@ -100,13 +100,9 @@ DEBOOTSTRAP_GNUPG_HOMEDIR=$(mktemp -d) gpg --homedir "$DEBOOTSTRAP_GNUPG_HOMEDIR" \ --no-tty \ --import config/chroot_sources/tails.chroot.gpg -if [ -e "$DEBOOTSTRAP_GNUPG_HOMEDIR/pubring.gpg" ]; then - DEBOOTSTRAP_GNUPG_KEYRING="$DEBOOTSTRAP_GNUPG_HOMEDIR/pubring.gpg" -elif [ -e "$DEBOOTSTRAP_GNUPG_HOMEDIR/pubring.kbx" ]; then - DEBOOTSTRAP_GNUPG_KEYRING="$DEBOOTSTRAP_GNUPG_HOMEDIR/pubring.kbx" -else - fatal "No debootstrap GnuPG keyring was created." -fi +DEBOOTSTRAP_GNUPG_KEYRING="$DEBOOTSTRAP_GNUPG_HOMEDIR/pubring.kbx" +[ -e "$DEBOOTSTRAP_GNUPG_KEYRING" ] \ + || fatal "No debootstrap GnuPG keyring was created." DEBOOTSTRAP_OPTIONS="$DEBOOTSTRAP_OPTIONS --keyring=$DEBOOTSTRAP_GNUPG_KEYRING" export DEBOOTSTRAP_OPTIONS @@ -121,36 +117,12 @@ export MKSQUASHFS_OPTIONS # refresh translations of our programs ./refresh-translations || fatal "refresh-translations failed ($?)." -case "$LB_BINARY_IMAGES" in - iso) - which isohybrid >/dev/null || fatal 'Cannot find isohybrid in $PATH' - installed_syslinux_utils_upstream_version="$(syslinux_utils_upstream_version)" - if dpkg --compare-versions \ - "$installed_syslinux_utils_upstream_version" \ - 'lt' \ - "$REQUIRED_SYSLINUX_UTILS_UPSTREAM_VERSION" ; then - fatal \ - "syslinux-utils '${installed_syslinux_utils_upstream_version}' is installed, " \ - "while we need at least '${REQUIRED_SYSLINUX_UTILS_UPSTREAM_VERSION}'." - fi - ;; - *) - fatal "Image type ${LB_BINARY_IMAGES} is not supported." - ;; -esac BUILD_ISO_FILENAME="${BUILD_BASENAME}.iso" BUILD_MANIFEST="${BUILD_BASENAME}.build-manifest" BUILD_APT_SOURCES="${BUILD_BASENAME}.apt-sources" BUILD_PACKAGES="${BUILD_BASENAME}.packages" -BUILD_LOG="${BUILD_BASENAME}.buildlog" BUILD_USB_IMAGE_FILENAME="${BUILD_BASENAME}.img" -# Clone all output, from this point on, to the log file -exec > >(tee -a "$BUILD_LOG") -trap "kill -9 $! 2>/dev/null" EXIT HUP INT QUIT TERM -exec 2> >(tee -a "$BUILD_LOG" >&2) -trap "kill -9 $! 2>/dev/null" EXIT HUP INT QUIT TERM - ( echo "Mirrors:" apt-mirror debian @@ -160,25 +132,25 @@ trap "kill -9 $! 2>/dev/null" EXIT HUP INT QUIT TERM cat config/chroot_sources/*.chroot ) > "$BUILD_APT_SOURCES" -echo "Building ISO image ${BUILD_ISO_FILENAME}..." +echo "I: Building ISO image ${BUILD_ISO_FILENAME}..." time lb build noauto ${@} [ -e binary.iso ] || fatal "lb build failed ($?)." -echo "ISO image was successfully created" +echo "I: ISO image was successfully created" print_iso_size binary.iso -echo "Hybriding it..." +echo "I: Hybriding it..." isohybrid $AMNESIA_ISOHYBRID_OPTS binary.iso || fatal "isohybrid failed" print_iso_size binary.iso truncate -s %2048 binary.iso print_iso_size binary.iso -echo "Renaming generated files..." +echo "I: Renaming generated files..." mv -i binary.iso "${BUILD_ISO_FILENAME}" mv -i binary.packages "${BUILD_PACKAGES}" -echo "Generating build manifest..." +echo "I: Generating build manifest..." generate-build-manifest chroot/debootstrap "${BUILD_MANIFEST}" -echo "Creating USB image ${BUILD_USB_IMAGE_FILENAME}..." +echo "I: Creating USB image ${BUILD_USB_IMAGE_FILENAME}..." create-usb-image-from-iso "${BUILD_ISO_FILENAME}" diff --git a/auto/config b/auto/config index f6aff7a8cb7d5edb0d319134e8185265b8b80a68..bb8f6e2fc25e38a9b98b802f22989fbb25aba98b 100755 --- a/auto/config +++ b/auto/config @@ -7,12 +7,6 @@ set -x . "$(dirname $0)/scripts/utils.sh" -# we require building from git -if ! git rev-parse --is-inside-work-tree; then - echo "${PWD} is not a Git tree. Exiting." - exit 1 -fi - . config/amnesia if [ -e config/amnesia.local ] ; then . config/amnesia.local @@ -21,12 +15,10 @@ fi if [ -n "${SOURCE_DATE_EPOCH}" ]; then CURRENT_EPOCH="$(date --utc +%s)" if [ "${SOURCE_DATE_EPOCH}" -gt "${CURRENT_EPOCH}" ]; then - echo "SOURCE_DATE_EPOCH is set before the current time. Exiting." - exit 1 + fatal "SOURCE_DATE_EPOCH is set before the current time. Exiting." fi else - echo "SOURCE_DATE_EPOCH is not set. Exiting." - exit 1 + fatal "SOURCE_DATE_EPOCH is not set. Exiting." fi # get git branch or tag so we can set the basename appropriately, i.e.: @@ -53,20 +45,19 @@ GIT_BASE_BRANCH=$(base_branch) \ if [ "${TAILS_MERGE_BASE_BRANCH:-}" = 1 ] && \ ! git_on_a_tag && [ "$GIT_BRANCH" != "$GIT_BASE_BRANCH" ] ; then - GIT_BASE_BRANCH_COMMIT=$(git_base_branch_head) - [ -n "${GIT_BASE_BRANCH_COMMIT}" ] \ - || fatal "Base branch's top commit could not be guessed." + [ -n "${BASE_BRANCH_GIT_COMMIT}" ] \ + || fatal "Base branch's top commit is not set." - echo "Merging base branch origin/${GIT_BASE_BRANCH}" - echo "(at commit ${GIT_BASE_BRANCH_COMMIT})..." + echo "I: Merging base branch ${GIT_BASE_BRANCH}" \ + "(at commit ${BASE_BRANCH_GIT_COMMIT})..." faketime -f "${SOURCE_DATE_FAKETIME}" \ - git merge --no-edit "origin/${GIT_BASE_BRANCH}" \ + git merge --no-edit "${BASE_BRANCH_GIT_COMMIT}" \ || fatal "Failed to merge base branch." git submodule update --init # Adjust BUILD_BASENAME to embed the base branch name and its top commit CLEAN_GIT_BASE_BRANCH=$(echo "$GIT_BASE_BRANCH" | sed 's,/,_,g') - GIT_BASE_BRANCH_SHORT_ID=$(git_base_branch_head --short) + GIT_BASE_BRANCH_SHORT_ID=$(git rev-parse --verify --short "${BASE_BRANCH_GIT_COMMIT}") [ -n "${GIT_BASE_BRANCH_SHORT_ID}" ] \ || fatal "Base branch's top commit short ID could not be guessed." BUILD_BASENAME="${BUILD_BASENAME}+${CLEAN_GIT_BASE_BRANCH}" @@ -79,19 +70,16 @@ echo "BUILD_BASENAME='${BUILD_BASENAME}'" > tmp/build_environment # sanity checks if grep -qs -E '^Pin:\s+release\s+.*a=' config/chroot_apt/preferences ; then - echo "Found unsupported a= syntax in config/chroot_apt/preferences," - echo "use n= instead. Exiting." - exit 1 + fatal "Found unsupported a= syntax in config/chroot_apt/preferences," \ + "use n= instead. Exiting." fi if grep -qs -E '^Pin:\s+release\s+.*o=Debian Backports' \ config/chroot_apt/preferences ; then - echo "Found unsupported 'o=Debian Backports' syntax," - echo "in config/chroot_apt/preferences. Use o=Debian instead. Exiting." - exit 1 + fatal "Found unsupported 'o=Debian Backports' syntax," \ + "in config/chroot_apt/preferences. Use o=Debian instead. Exiting." fi if [ $(dpkg --print-architecture) != amd64 ] ; then - echo "Only amd64 build systems are supported" - exit 1 + fatal "Only amd64 build systems are supported" fi # init variables @@ -102,7 +90,7 @@ $RUN_LB_CONFIG --distribution stretch ${@} # set up everything for time-based snapshots: if [ -n "${APT_SNAPSHOTS_SERIALS:-}" ]; then - echo "Fixing 'latest' APT snapshots serials to: '${APT_SNAPSHOTS_SERIALS}'." + echo "I: Fixing 'latest' APT snapshots serials to: '${APT_SNAPSHOTS_SERIALS}'." apt-snapshots-serials prepare-build "${APT_SNAPSHOTS_SERIALS}" else apt-snapshots-serials prepare-build @@ -119,16 +107,16 @@ DEBIAN_MIRROR="$(apt-mirror debian)" DEBIAN_SECURITY_MIRROR="$(apt-mirror debian-security)" TORPROJECT_MIRROR="$(apt-mirror torproject)" -[ -n "$DEBIAN_MIRROR" ] || exit 1 -[ -n "$DEBIAN_SECURITY_MIRROR" ] || exit 1 -[ -n "$TORPROJECT_MIRROR" ] || exit 1 +[ -n "$DEBIAN_MIRROR" ] || fatal "\$DEBIAN_MIRROR is empty" +[ -n "$DEBIAN_SECURITY_MIRROR" ] || fatal "\$DEBIAN_SECURITY_MIRROR is empty" +[ -n "$TORPROJECT_MIRROR" ] || fatal "\$TORPROJECT_MIRROR is empty" perl -pi \ -E \ "s|^(deb(?:-src)?\s+)https?://ftp[.]us[.]debian[.]org/debian/?(\s+)|\$1$DEBIAN_MIRROR\$2| ; \ s|^(deb(?:-src)?\s+)https?://deb[.]torproject[.]org/torproject[.]org/?(\s+)|\$1$TORPROJECT_MIRROR\$2|" \ config/chroot_sources/*.chroot \ - || exit 1 + || fatal "APT mirror substitution failed with exit code $?" # set Amnesia's general options $RUN_LB_CONFIG \ @@ -171,7 +159,8 @@ install -d config/chroot_local-includes/etc/amnesia/ # environment TAILS_WIKI_SUPPORTED_LANGUAGES="$(ikiwiki-supported-languages ikiwiki.setup)" -[ -n "$TAILS_WIKI_SUPPORTED_LANGUAGES" ] || exit 16 +[ -n "$TAILS_WIKI_SUPPORTED_LANGUAGES" ] \ + || fatal "\$TAILS_WIKI_SUPPORTED_LANGUAGES is empty" echo "TAILS_WIKI_SUPPORTED_LANGUAGES='${TAILS_WIKI_SUPPORTED_LANGUAGES}'" \ >> config/chroot_local-includes/etc/amnesia/environment @@ -186,6 +175,7 @@ echo "live-build: `dpkg-query -W -f='${Version}\n' live-build`" \ cat >> config/chroot_local-includes/etc/os-release <<EOF TAILS_PRODUCT_NAME="Tails" TAILS_VERSION_ID="$AMNESIA_VERSION" +TAILS_DISTRIBUTION="$TAILS_DISTRIBUTION" EOF if echo "$AMNESIA_VERSION" | grep -qs -E '~(alpha|beta|rc)[0-9]*$' ; then echo 'TAILS_CHANNEL="alpha"' >> config/chroot_local-includes/etc/os-release diff --git a/auto/scripts/create-usb-image-from-iso b/auto/scripts/create-usb-image-from-iso index 70055717ce3b47c7285833311877d4f69cc0c8e3..ebc78bf4d50042dd15ecdf134ad3e0888a2b98db 100755 --- a/auto/scripts/create-usb-image-from-iso +++ b/auto/scripts/create-usb-image-from-iso @@ -39,8 +39,12 @@ GET_UDISKS_OBJECT_TIMEOUT = 2 # the partition table, reserved sectors, and filesystem metadata. SYSTEM_PARTITION_ADDITIONAL_SIZE = 10 -SYSLINUX_COM32MODULES_DIR = '/usr/lib/syslinux/modules/bios' - +# We use the syslinux from the chroot here, because it's the same one +# that will be available to Tails Installer in the running Tails. Using +# the same syslinux version here and in Tails Installer is important to +# prevent issues when upgrading a Tails device via Tails Installer. +CHROOT_SYSLINUX_COM32MODULES_DIR = 'chroot/usr/lib/syslinux/modules/bios' +CHROOT_SYSLINUX_BIN='chroot/usr/bin/syslinux' class ImageCreationError(Exception): pass @@ -252,7 +256,7 @@ class ImageCreator(object): com32modules = [f for f in os.listdir(syslinux_dir) if f.endswith('.c32')] for module in sorted(com32modules): - src_path = os.path.join(SYSLINUX_COM32MODULES_DIR, module) + src_path = os.path.join(CHROOT_SYSLINUX_COM32MODULES_DIR, module) if not os.path.isfile(src_path): raise ImageCreationError("Could not find the '%s' COM32 module" % module) @@ -269,7 +273,7 @@ class ImageCreator(object): # device would cause this issue: # https://bugs.chromium.org/p/chromium/issues/detail?id=508713#c8 execute([ - 'syslinux', + CHROOT_SYSLINUX_BIN, '--offset', str(self.partition.props.partition.props.offset), '--directory', '/syslinux/', '--install', self.image diff --git a/auto/scripts/utils.sh b/auto/scripts/utils.sh index 80a32b1432ace1d44a7ea7b06069c368eb67e3e1..1e7286a017645b5872766e1dcf6de836c13af777 100755 --- a/auto/scripts/utils.sh +++ b/auto/scripts/utils.sh @@ -97,7 +97,7 @@ branch_name_to_suite() { } fatal() { - echo "$*" >&2 + echo "E: $*" >&2 exit 1 } diff --git a/config/APT_snapshots.d/debian/serial b/config/APT_snapshots.d/debian/serial index 04edac80e5fc45197e2386b6f49bfedeb1361ade..17f525aceb0240a65fce25e1113c7b799663d266 100644 --- a/config/APT_snapshots.d/debian/serial +++ b/config/APT_snapshots.d/debian/serial @@ -1 +1 @@ -2019051601 +2019061901 diff --git a/config/APT_snapshots.d/torproject/serial b/config/APT_snapshots.d/torproject/serial index 536c7ede13683404c9d9fc24f0c0dd99deeed47f..462eb2fd192ad1fdf54782419b49b866fe922c43 100644 --- a/config/APT_snapshots.d/torproject/serial +++ b/config/APT_snapshots.d/torproject/serial @@ -1 +1 @@ -2019031301 +2019060802 diff --git a/config/amnesia b/config/amnesia index 7ddc6ee66867f006150cd4a743be6e133232342e..03023eb98c2fabfca6cef3d6c098603552c793aa 100644 --- a/config/amnesia +++ b/config/amnesia @@ -22,9 +22,6 @@ AMNESIA_APPEND="live-media=removable nopersistence noprompt timezone=Etc/UTC blo # Options passed to isohybrid AMNESIA_ISOHYBRID_OPTS="-h 255 -s 63 --id 42 --verbose" -# Minimal upstream version of syslinux-utils we need -REQUIRED_SYSLINUX_UTILS_UPSTREAM_VERSION="6.03~pre20" - # Kernel version KERNEL_VERSION='4.19.0-5' KERNEL_SOURCE_VERSION=$( @@ -49,3 +46,6 @@ AMNESIA_FULL_VERSION="${AMNESIA_VERSION} - ${SOURCE_DATE_YYYYMMDD}" AMNESIA_DEV_FULLNAME='Tails developers' AMNESIA_DEV_EMAIL="tails@boum.org" AMNESIA_DEV_KEYID="A490 D0F4 D311 A415 3E2B B7CA DBB8 02B2 58AC D84F" + +# Used to set a custom home page if the distribution is UNRELEASED +TAILS_DISTRIBUTION="`dpkg-parsechangelog -SDistribution`" diff --git a/config/chroot_apt/preferences b/config/chroot_apt/preferences index 1128442d6ceda29c99b0767f1fff5468bc159f0b..2bd6dcce149ddb872c3182700694f6a76398af6f 100644 --- a/config/chroot_apt/preferences +++ b/config/chroot_apt/preferences @@ -130,6 +130,10 @@ Package: tails-installer Pin: origin deb.tails.boum.org Pin-Priority: 999 +Package: tor tor-geoipdb +Pin: release o=TorProject,n=tor-experimental-0.4.0.x-stretch +Pin-Priority: 999 + Package: virtualbox* Pin: release o=Debian,n=stretch-backports Pin-Priority: 999 diff --git a/config/chroot_local-hooks/04-change-gids-and-uids b/config/chroot_local-hooks/04-change-gids-and-uids index 7320916a201090ff9c2432e3b4aa94c58ea5972a..417b1fadc4c789d445aee7d077c4a3a2f6c515aa 100755 --- a/config/chroot_local-hooks/04-change-gids-and-uids +++ b/config/chroot_local-hooks/04-change-gids-and-uids @@ -119,6 +119,7 @@ Change_gid pulse-access 1200 Change_gid Debian-gdm 1210 Change_gid kvm 1500 Change_gid render 1510 +Change_gid Debian-exim 1520 # Finally, give these users and groups the desired UID/GID Change_uid debian-tor 107 @@ -143,3 +144,4 @@ Change_gid pulse-access 120 Change_gid Debian-gdm 121 Change_gid kvm 150 Change_gid render 151 +Change_gid Debian-exim 152 diff --git a/config/chroot_local-hooks/11-localize_browser b/config/chroot_local-hooks/11-localize_browser index 55097fb7d5ea3c049703d3546b199a59ae264078..52c5161bb206f6b895363d4ac810148e668afff5 100755 --- a/config/chroot_local-hooks/11-localize_browser +++ b/config/chroot_local-hooks/11-localize_browser @@ -81,6 +81,11 @@ while IFS=: read MOZILLA_LOCALE LOCATION; do "\"${SPELLCHECKER_LOCALE}\"" \ "user_pref" HOMEPAGE="https://tails.boum.org/home/" + . /etc/os-release # get $TAILS_CHANNEL and $TAILS_DISTRIBUTION + if [ "${TAILS_DISTRIBUTION}" = UNRELEASED ] \ + || [ "${TAILS_CHANNEL:-stable}" != stable ]; then + HOMEPAGE="${HOMEPAGE}testing/" + fi if echo "${TAILS_WIKI_SUPPORTED_LANGUAGES}" | grep -qw "${LANG_CODE}"; then HOMEPAGE="${HOMEPAGE}index.${LANG_CODE}.html" fi diff --git a/config/chroot_local-includes/etc/sysctl.d/disable_ipv6.conf b/config/chroot_local-includes/etc/sysctl.d/disable_ipv6.conf new file mode 100644 index 0000000000000000000000000000000000000000..e1d78834f6f1cfa3d390ce7f5e713a9c65c0b3df --- /dev/null +++ b/config/chroot_local-includes/etc/sysctl.d/disable_ipv6.conf @@ -0,0 +1,5 @@ +net.ipv6.conf.default.disable_ipv6 = 1 +net.ipv6.conf.all.disable_ipv6 = 1 + +# Some programs expect the loopback interface to have IPv6 enabled +net.ipv6.conf.lo.disable_ipv6 = 0 diff --git a/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-premount/partitioning b/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-premount/partitioning index 1f64cd885b101c07c48ff3042653d9dce54c8a0b..3cb8ace7c348e19a78b7636935b4a37c33a7931a 100755 --- a/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-premount/partitioning +++ b/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-premount/partitioning @@ -102,7 +102,7 @@ sgdisk \ log_end_msg # Tell the kernel to reload the partition table -partprobe +partprobe "${PARENT_DEVICE}" # fatresize overwrites the VBR, so we have to back it up to be able to # restore the boot code later @@ -139,4 +139,4 @@ sgdisk \ "${PARENT_DEVICE}" # Tell the kernel to reload the partition table -partprobe +partprobe "${PARENT_DEVICE}" diff --git a/config/chroot_local-includes/usr/share/tails/build/group b/config/chroot_local-includes/usr/share/tails/build/group index b7b283c18a8634aac9e1d7c8f9fd070689933f31..2c79c20b2f070d11c323ceb007573711c01bafbc 100644 --- a/config/chroot_local-includes/usr/share/tails/build/group +++ b/config/chroot_local-includes/usr/share/tails/build/group @@ -46,6 +46,7 @@ crontab:x:107: netdev:x:108: kvm:x:150: render:x:151: +Debian-exim:x:152: messagebus:x:105: ssh:x:109: memlockd:x:110: diff --git a/config/chroot_local-includes/usr/share/tails/build/passwd b/config/chroot_local-includes/usr/share/tails/build/passwd index 3dc63f799d73e85abc4618d81f1c059ac9b9a374..79bd76b87eaca4804fbbadfc3ede24ad25ec72cc 100644 --- a/config/chroot_local-includes/usr/share/tails/build/passwd +++ b/config/chroot_local-includes/usr/share/tails/build/passwd @@ -20,8 +20,9 @@ systemd-timesync:x:100:102:systemd Time Synchronization,,,:/run/systemd:/bin/fal systemd-network:x:101:103:systemd Network Management,,,:/run/systemd/netif:/bin/false systemd-resolve:x:102:104:systemd Resolver,,,:/run/systemd/resolve:/bin/false _apt:x:104:65534::/nonexistent:/bin/false -messagebus:x:103:105::/var/run/dbus:/bin/false -memlockd:x:105:110:memlockd system account,,,:/usr/lib/memlockd:/bin/false +Debian-exim:x:103:152::/var/spool/exim4:/bin/false +messagebus:x:105:105::/var/run/dbus:/bin/false +memlockd:x:106:110:memlockd system account,,,:/usr/lib/memlockd:/bin/false debian-tor:x:107:114::/var/lib/tor:/bin/false speech-dispatcher:x:108:29:Speech Dispatcher,,,:/var/run/speech-dispatcher:/bin/false colord:x:109:117:colord colour management daemon,,,:/var/lib/colord:/bin/false diff --git a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt index 9542eb12faf5a2a48d9c155ff6110e0fb565af98..02fdd72f4f1f2459072415967226be9604b8a091 100644 --- a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt +++ b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt @@ -1 +1 @@ -http://torbrowser-archive.tails.boum.org/8.5-build2/ +http://torbrowser-archive.tails.boum.org/8.5.2-build1/ diff --git a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt index 43aebdea6c2512fd66cd7599fd9ba8914ed985be..70bb87ebb3ec7e9077eb4906da0cef2eda6c0707 100644 --- a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt +++ b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt @@ -1,30 +1,30 @@ -03efbeaca2a77f9e929b3c6b0074e206b8329fba0b9b231ad7966850c1953d22 tor-browser-linux64-8.5_ar.tar.xz -72910c38b3f262b00390bfb6771a3527c726b35d3d2d174d0c548ee1ad3f5698 tor-browser-linux64-8.5_ca.tar.xz -faae1c7023fe7b8915880cc00e5dd5fcdc7d576267aca63a65b882d2197df23c tor-browser-linux64-8.5_cs.tar.xz -f1dc34a9a0237b2a5cad4b624cecfee4163c5f1214cfd8320540e4cc1a13910f tor-browser-linux64-8.5_da.tar.xz -7feb208188ffd622f498496e00b894e3cbe105ca1abb3991d34fd8852edf6e70 tor-browser-linux64-8.5_de.tar.xz -b9998ee9f01cae8492e42be5881ae37bda3876d6b555010d40b299d1d78b116c tor-browser-linux64-8.5_el.tar.xz -5d3c80a8a24adc03a2ba9daacbb7f9d4b9648c1d55d5a7862b8e0562096e3d26 tor-browser-linux64-8.5_en-US.tar.xz -1aaf72e0ced8e407a88143a9b4c2d2cb480219cfa817f0d5a8bfd86fcc2a82e7 tor-browser-linux64-8.5_es-AR.tar.xz -3e83baad892d554b2defbf524484dc282116efb879d7ae192b7115618a1cd2f8 tor-browser-linux64-8.5_es-ES.tar.xz -b028401830ca38b620c85e5422e40d95819d4eae498a2230c2222a955fc6353c tor-browser-linux64-8.5_fa.tar.xz -778739f566b7faf55864ddf9737ede0643706fbd1a9f6c26f60df483bd8b431d tor-browser-linux64-8.5_fr.tar.xz -641e8435a12e0514805dc19c1acbb4193c952f538f2d9911eee4820d7c0ad94d tor-browser-linux64-8.5_ga-IE.tar.xz -a6fff7d903269699d127407ca85e946d77256402c89bbc6be3d679c6b34ac13b tor-browser-linux64-8.5_he.tar.xz -f00242a2ac94923c36f5c00495a7640e702fc23796231adc1a0663be5602943e tor-browser-linux64-8.5_hu.tar.xz -50f5d9c059386364a24daa1bc1805c8067c0da61115979f47d5df3ee5d059362 tor-browser-linux64-8.5_id.tar.xz -a1de497c415d42d3734154b05dd6495ac7f8c1513ab74b94401e829071b31e89 tor-browser-linux64-8.5_is.tar.xz -311cb255ba1251c9bc91f67c5fe75d4c7f6bc1a3d10463dea3555fcb7c564285 tor-browser-linux64-8.5_it.tar.xz -77d245fc1c76ee7cbca4f0eaa2dc72b7aa81e3f266cfba6b017731f8c3d0c52b tor-browser-linux64-8.5_ja.tar.xz -478e1900a6c45b82d81ba0a55f662582e37f53dfa5fb67de519b596a9d6e51b7 tor-browser-linux64-8.5_ka.tar.xz -97a8a3f46db86d715cf2d8e6fb9eadb2445ecc5f7879eecbe95d0144ce5b643e tor-browser-linux64-8.5_ko.tar.xz -80f303c602f76cd6aa79b0ca708f990b2f27ba4bebdbad5181ebe8f59811badc tor-browser-linux64-8.5_nb-NO.tar.xz -ddcd80ebbfd87fc52f04375d124cff6e209b1410a6de8feef7cb2809e714d598 tor-browser-linux64-8.5_nl.tar.xz -a961df29242a75cb2c01f7889840212a2d30b4b46f524f042f784736fcb40298 tor-browser-linux64-8.5_pl.tar.xz -092df86c46313d6b6e5c0e268cae83e711ee915668d17820061524e37ec98fe6 tor-browser-linux64-8.5_pt-BR.tar.xz -3813e2e39d43df46e876fe92670c2117aaf08c6181b0cd288240b7bf275dbba6 tor-browser-linux64-8.5_ru.tar.xz -f9ad375a3339914b513ca78a4a0769e4d71dca15103370cc3362fec22851cde1 tor-browser-linux64-8.5_sv-SE.tar.xz -9cbc4c693f939bf4a2cdcb5a20b1d2e9b0908b4e737add3711d9b8912c84daa4 tor-browser-linux64-8.5_tr.tar.xz -4ad7f7533e6e18fee8515856e405df8711295d198786e67cab8467464b8639c8 tor-browser-linux64-8.5_vi.tar.xz -aebc74b309c8b506ec2b378f023747e67c3259f6551f9fec9ee350c52eb8ab37 tor-browser-linux64-8.5_zh-CN.tar.xz -f87dd72b801e9b33b528e5132188b5e41daca2dd6c859d53e1c6466de165ed34 tor-browser-linux64-8.5_zh-TW.tar.xz +888c6020af840de81dbb9e91fbcd386c2c45962c5a924d720d08db4aa86773f4 tor-browser-linux64-8.5.2_ar.tar.xz +c6c44a139923bdcab0c8ef273b35e8b020cdc930581a34b4837e2bb9f3589c88 tor-browser-linux64-8.5.2_ca.tar.xz +f680de7cc8a5ca74f910700291e7ac0075d5bf335924722b2d45c0197a605bf6 tor-browser-linux64-8.5.2_cs.tar.xz +cea843936e017cb2e700f75193c27935c75e5d49f1e14d83c2af39c82b73b502 tor-browser-linux64-8.5.2_da.tar.xz +410e40d616675971e4a84820f0af24cebd6af1f38fd130889db6d56b6bdfc1f5 tor-browser-linux64-8.5.2_de.tar.xz +8e15ee6340bae02e9ea6260458855e567380573d61a16a9e30b6b128b3af268b tor-browser-linux64-8.5.2_el.tar.xz +7676b9fab921626b1b2e7fd3eb43854094c76ff9d93c8e727330020d842aa162 tor-browser-linux64-8.5.2_en-US.tar.xz +e1043b1a638f4d29a6ba27ede910caed82b4edf651d3f76eedefbc12888cf844 tor-browser-linux64-8.5.2_es-AR.tar.xz +3fbe93d3497b5fc9308bb403e1baeedefc2c6db9a2e284b848f1d824a9b36e5b tor-browser-linux64-8.5.2_es-ES.tar.xz +d4161a476579203dc51755d37313a99d11dbcb0545019ae343bb3947fc3571a4 tor-browser-linux64-8.5.2_fa.tar.xz +bb963423fd385bab56b7d0467c9b55a3be149e54dbcfbf72443bfc371385f17d tor-browser-linux64-8.5.2_fr.tar.xz +9fcbba32ad9323c8ac03262d0ad0ca08b066fff481ff61f102bb3963b3e855f0 tor-browser-linux64-8.5.2_ga-IE.tar.xz +4ec97e09e8ea156b7d07ca999707ae5ab0d447dfd6e5fa2b033770e828e534de tor-browser-linux64-8.5.2_he.tar.xz +aa7019094af35fb773c06694b0058a6204de82ac7897f8cbce690144ba30c9e4 tor-browser-linux64-8.5.2_hu.tar.xz +495a2fca48f09fc206c252957f528ff33cd3db303fa8d8e127fb680f6b6a522b tor-browser-linux64-8.5.2_id.tar.xz +26e23bd2e87896712a1c2ec2d64f7aefde5dbe10f70412e032a979ef272279f3 tor-browser-linux64-8.5.2_is.tar.xz +3eb4f5afcf32cfcbfdf18e10e1bbb064bf1bcb8e28f800fb1b76ab5fdccb2600 tor-browser-linux64-8.5.2_it.tar.xz +88d1991626d07ac5260524ef890bf2391bfdc298c6b2ad013a8b933173e6a1aa tor-browser-linux64-8.5.2_ja.tar.xz +efaf0aa9e282ec311a5e0a981a25dd2e77d86e348395fed1bbbc0062f30b8431 tor-browser-linux64-8.5.2_ka.tar.xz +d89456f18df06db1b691ed945956bfd218ee9963ae928c3c3a7fe51f2b5959ce tor-browser-linux64-8.5.2_ko.tar.xz +5f0c8b01844ae2cb86fd5d6b01bb7159e25fe6daaa8c447fb7dc62f4b3865f75 tor-browser-linux64-8.5.2_nb-NO.tar.xz +c511ef0654630cdaf014610c6b6115749fac74b321d98691d63d899168c5b61a tor-browser-linux64-8.5.2_nl.tar.xz +036e344c1d19c825ab9284d7cad845fc1289521583905486e6a4ce26dc865906 tor-browser-linux64-8.5.2_pl.tar.xz +53dfadad13888caf1ae70a50e8b015b7e11446ad3fb9cff10dcdad5d8896744f tor-browser-linux64-8.5.2_pt-BR.tar.xz +f11f0d274c0ade924828395f04d661c6e33605add6d4073c25fdf393a4b62e50 tor-browser-linux64-8.5.2_ru.tar.xz +f9dc70e7fcfe4c38226f5a78d6bff7a82164fd0f595a9bbf5b0754b67c4bc350 tor-browser-linux64-8.5.2_sv-SE.tar.xz +51d96572fe849ff11fc8ac701c4278100f7cd047d5a7440be35e532fd020efc3 tor-browser-linux64-8.5.2_tr.tar.xz +cedd93fc4abd720b1239a5f1d77fc2b311caed0995a0af55d2d6b3910070ef3d tor-browser-linux64-8.5.2_vi.tar.xz +80437d0915aa3cdd12f09457a1ba41b03623ea6dff191a540f06c20f4dd5cfc6 tor-browser-linux64-8.5.2_zh-CN.tar.xz +c8a138a83d67a8f728bf1364e6fa908de9c461741f680ad24dc3fd626d5d2e03 tor-browser-linux64-8.5.2_zh-TW.tar.xz diff --git a/config/chroot_sources/torproject.chroot b/config/chroot_sources/torproject.chroot index 952381d920124fc1e330872b2dc63d04fea0a0c2..3102a49732a1c1fb98d67af3ffa01289a619793d 100644 --- a/config/chroot_sources/torproject.chroot +++ b/config/chroot_sources/torproject.chroot @@ -1 +1,2 @@ deb http://deb.torproject.org/torproject.org stretch main +deb http://deb.torproject.org/torproject.org tor-experimental-0.4.0.x-stretch main diff --git a/debian/changelog b/debian/changelog index 08d0681ed532f45ea433d09a4b4cd06ce2c00e94..08520bc5b6a5da1e34342f32dee9284bd0e207ec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,81 @@ +tails (3.14.1) unstable; urgency=medium + + * Security fixes + - Upgrade Tor Browser to 8.5.2-build1 (Closes: #16824). + - Upgrade Thunderbird to 60.7.0 (Closes: #16742). + - Upgraded Linux to 4.19.37-4 (Closes: #16823). + + * Bugfixes + - Only probe for partitions on the boot device when setting up + TailsData. Without arguments partprobe will scan all devices, + and if it encounters a device it doesn't support (e.g. fake + raid-0 arrays) it will return non-zero, thus aborting Tails' + partitioning script, resulting in an unbootable install + (Details: #16389). + + * Minor improvements and updates + - Upgrade tor to 0.4.0.5-1~d90.stretch+1, the first stable + candidate in the 0.4.0.x series (Closes: #16687). + - Completely disable IPv6 except for the loopback interface. We + attempt to completely block it on the netfilter level but we + have seen ICMPv6 "leaks" any way (related to Router + Solicitation, see: #16148) so let's just disable it. We keep + enabled on the loopback interface since some services depends on + ::1 being up. + - create-usb-image-from-iso: Use syslinux from chroot. We used the + syslinux from the vagrant box before, which caused issues with + when building Tails/Buster with a Stretch vagrant box and then + cloning the image via Tails Installer with syslinux from Buster + (Closes: #16748). + - Set Tor Browser's homepage to https://tails.boum.org/home/testing/ + if building anything but a stable release. This page explains the + dangers of using a non-stable release. (Closes: #12003) + + * Build system + - auto/{build,config}: + * consistently use fatal() to error out, and prefix its message + with "E: " to help distinguish them from the noise produced by + tools we call etc. + * Similarly, also prefix informational message with "I: ". + * drop support for GnuPG 1.x. + * clone more build output to the log file. + * Drop obsolete check for syslinux version. This version + requirement is satisfied by Jessie and it is doubtful Tails + would build in anything older. + * auto/build: drop a few checks for conditions that are already + satisfied in the supported build environments. + - Revert "Build system: try to be smart again by fetching only the + refs we need." This optimization overrides the trick we have on + Jenkins (set_origin_base_branch_head in + https://git.tails.boum.org/jenkins-jobs/tree/macros/builders.yaml), + that ensures that a reproducibly_build_Tails_ISO_* job builds + from the commit used by the first build. (Closes: #16730) + + * Test suite + - Fix mistake with execute() vs spawn() when starting the upgrader. + - Don't filter during pcap capture, instead let's just apply the + same filtering when we are inspecting the pcap files. This way + any pcap file saved on failure will include the full capture, + and not just the packets sent by the system under testing, which + sometimes makes it hard to understand what is going on. + - Also include the content of /var/log/tor/log in $scenario.tor + when tor failed to bootstrap (refs: #16793) + - Don't flood the debug logger with tor@default's journal + contents. + - Power off system under testing after scenario. Until now we have + relied on either one of the generated "snapshot restore" steps + or the "[Given] a computer" step to implicitly stop the old VM + when we move on to a new scenario. That meant the old VM was + still running during the new scenarios @Before@ hooks. If the + new scenario is tagged @check_tor_leaks that means we start its + sniffer while the old VM is still running, possibly sending + packets that then affect the new scenario. That would explain + some myserious "Unexpected connections were made" failures we + have seen (Closes: #11521). + - Only accept IP(v6)/ARP during DHCP check. + + -- Tails developers <tails@boum.org> Wed, 19 Jun 2019 15:29:07 +0200 + tails (3.14) unstable; urgency=medium * Security fixes diff --git a/features/additional_software_packages.feature b/features/additional_software_packages.feature index 28054c045858c046a418d9fdb8a75539b09da5d8..80db623b86e616e2b39e45f499dc692789a72c6a 100644 --- a/features/additional_software_packages.feature +++ b/features/additional_software_packages.feature @@ -64,7 +64,7 @@ Feature: Additional software And I refuse adding "cowsay" to Additional Software Then "cowsay" is not in the list of Additional Software - # Depends on scenario: Packages I remove from Additional Software through the GUI are not in the Additional Software list anymore + # Depends on scenario: My Additional Software list is configurable through a GUI or through notifications when I install or remove packages with APT or Synaptic # See https://tails.boum.org/blueprint/additional_software_packages/offline_mode/#incomplete-online-upgrade for high level logic Scenario: Recovering in offline mode after Additional Software previously failed to upgrade and then succeed to upgrade when online Given a computer diff --git a/features/step_definitions/dhcp.rb b/features/step_definitions/dhcp.rb index ba3e7b004f292b2c840e4602461558deeefdbf4a..ac2203d29bb477683afa06781b5fc3d80f87fde1 100644 --- a/features/step_definitions/dhcp.rb +++ b/features/step_definitions/dhcp.rb @@ -2,16 +2,11 @@ Then /^the hostname should not have been leaked on the network$/ do begin hostnames = ["amnesia", $vm.execute("hostname").stdout.chomp] packets = PacketFu::PcapFile.new.file_to_array(filename: @sniffer.pcap_file) - packets.each do |p| - # if PacketFu::TCPPacket.can_parse?(p) - # ipv4_tcp_packets << PacketFu::TCPPacket.parse(p) - if PacketFu::IPPacket.can_parse?(p) - payload = PacketFu::IPPacket.parse(p).payload - elsif PacketFu::IPv6Packet.can_parse?(p) - payload = PacketFu::IPv6Packet.parse(p).payload - else - raise "Found something in the pcap file that either is non-IP, or cannot be parsed" - end + expected_types = [PacketFu::IPv6Packet, PacketFu::IPPacket, PacketFu::ARPPacket] + packets.each do |packet| + type = expected_types.find { |t| t.can_parse?(packet) } + assert_not_nil(type, "Found non-IP(v6)/ARP packet") + payload = type.parse(packet).payload hostnames.each do |hostname| if payload.match(hostname) raise "Hostname leak detected: #{hostname}" diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb index 7a8306dce417b968ff99e7b1b9d428d0932b8a32..90725790f25542379170107bb84e300cb4fdb458 100644 --- a/features/step_definitions/usb.rb +++ b/features/step_definitions/usb.rb @@ -97,8 +97,7 @@ def recover_from_upgrader_failure $vm.execute('pkill --full tails-upgrade-frontend-wrapper') $vm.execute('killall tails-upgrade-frontend zenity') # Do not sleep when retrying - $vm.execute_successfully('/usr/local/bin/tails-upgrade-frontend-wrapper --no-wait') - $vm.spawn('tails-upgrade-frontend-wrapper', user: LIVE_USER) + $vm.spawn('tails-upgrade-frontend-wrapper --no-wait', user: LIVE_USER) end Given /^I clone USB drive "([^"]+)" to a (new|temporary) USB drive "([^"]+)"$/ do |from, mode, to| diff --git a/features/support/helpers/firewall_helper.rb b/features/support/helpers/firewall_helper.rb index f88091de6c07846d0bfb2ce339262626962a1fef..dc62edd62e1660fe51ba91e99fe482378d9a26d7 100644 --- a/features/support/helpers/firewall_helper.rb +++ b/features/support/helpers/firewall_helper.rb @@ -10,13 +10,17 @@ end # address/port) in the graph of all network flows. def pcap_connections_helper(pcap_file, opts = {}) opts[:ignore_dhcp] = true unless opts.has_key?(:ignore_dhcp) + opts[:ignore_arp] = true unless opts.has_key?(:ignore_arp) + opts[:ignore_sources] ||= [$vm.vmnet.bridge_mac] connections = Array.new packets = PacketFu::PcapFile.new.file_to_array(:filename => pcap_file) packets.each do |p| if PacketFu::EthPacket.can_parse?(p) eth_packet = PacketFu::EthPacket.parse(p) else - raise 'Found something that is not an ethernet packet' + raise FirewallAssertionFailedError.new( + 'Found something that is not an ethernet packet' + ) end sport = nil dport = nil @@ -39,13 +43,20 @@ def pcap_connections_helper(pcap_file, opts = {}) elsif PacketFu::IPPacket.can_parse?(p) ip_packet = PacketFu::IPPacket.parse(p) protocol = 'ip' + elsif PacketFu::ARPPacket.can_parse?(p) + ip_packet = PacketFu::ARPPacket.parse(p) + protocol = 'arp' else - raise "Found something that cannot be parsed" + raise FirewallAssertionFailedError.new( + "Found something that cannot be parsed" + ) end next if opts[:ignore_dhcp] && looks_like_dhcp_packet?(eth_packet, protocol, sport, dport, ip_packet) + next if opts[:ignore_arp] && protocol == "arp" + next if opts[:ignore_sources].include?(eth_packet.eth_saddr) packet_info = { mac_saddr: eth_packet.eth_saddr, diff --git a/features/support/helpers/misc_helpers.rb b/features/support/helpers/misc_helpers.rb index b156978b19385ee6a9f5db63a76786c191c45b03..e9e730959d6e9341d853afa4ae0b5074351690b8 100644 --- a/features/support/helpers/misc_helpers.rb +++ b/features/support/helpers/misc_helpers.rb @@ -164,8 +164,10 @@ def wait_until_tor_is_working try_for(270) { $vm.execute('/usr/local/sbin/tor-has-bootstrapped').success? } rescue Timeout::Error # Save Tor logs before erroring out - File.open("#{$config["TMPDIR"]}/log.tor", 'w') { |file| - file.write("#{$vm.execute('journalctl --no-pager -u tor@default.service').stdout}") + File.open("#{$config["TMPDIR"]}/log.tor", 'w') { |file| + $vm.execute('journalctl --no-pager -u tor@default.service > /tmp/tor.journal') + file.write($vm.file_content('/tmp/tor.journal')) + file.write($vm.file_content('/var/log/tor/log')) } raise TorBootstrapFailure.new('Tor failed to bootstrap') end diff --git a/features/support/helpers/sniffing_helper.rb b/features/support/helpers/sniffing_helper.rb index ca9fa276e0325948218775122ec3c05e29ce63d8..7ac763edc662dc7ee11dde42ebf8590378b1367e 100644 --- a/features/support/helpers/sniffing_helper.rb +++ b/features/support/helpers/sniffing_helper.rb @@ -21,7 +21,7 @@ class Sniffer @pcap_file = "#{$config["TMPDIR"]}/#{pcap_name}" end - def capture(filter="not ether src host #{@vmnet.bridge_mac} and not ether proto \\arp and not ether proto \\rarp") + def capture job = IO.popen( [ "/usr/sbin/tcpdump", @@ -30,7 +30,6 @@ class Sniffer "--immediate-mode", "-i", @vmnet.bridge_name, "-w", @pcap_file, - filter, :err => ["/dev/null", "w"] ] ) diff --git a/features/support/hooks.rb b/features/support/hooks.rb index 43c84f3ccaec7c04d6dbcd55eac4b6e615b3708b..d60c04f8aae2620deafc3006c0c3c28354074d35 100644 --- a/features/support/hooks.rb +++ b/features/support/hooks.rb @@ -315,6 +315,11 @@ After('@product') do |scenario| FileUtils.rm(@video_path) end end + # If we don't shut down the system under testing it will continue to + # run during the next scenario's Before hooks, which we have seen + # causing trouble (for instance, packets from the previous scenario + # have failed scenarios tagged @check_tor_leaks). + $vm.power_off if $vm end Before('@product', '@check_tor_leaks') do |scenario| diff --git a/po/ca.po b/po/ca.po index 28c95a4d5d593b21710f4cdc770ad9eede07fdc8..6c44492a395ce5faf9a29a4c9f288247668c207b 100644 --- a/po/ca.po +++ b/po/ca.po @@ -16,14 +16,15 @@ # josep constantí mata <iceberg.jcm@gmail.com>, 2019 # laia_, 2014-2016 # Miquel Bosch, 2018 +# Sandra Monferrer <smonferrer@gmail.com>, 2019 # Vte A.F <viarfer3@inf.upv.es>, 2017 msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-02-03 21:28+0000\n" -"Last-Translator: josep constantí mata <iceberg.jcm@gmail.com>\n" +"PO-Revision-Date: 2019-05-23 08:02+0000\n" +"Last-Translator: Sandra Monferrer <smonferrer@gmail.com>\n" "Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/" "ca/)\n" "Language: ca\n" @@ -174,7 +175,7 @@ msgstr "Bloca la pantalla" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79 msgid "Suspend" -msgstr "" +msgstr "Suspèn" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83 msgid "Restart" @@ -806,14 +807,14 @@ msgid "Failed to add container" msgstr "No s'ha pogut afegir el contenidor" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" -"No s'ha pogut afegir el contenidor del fitxer%s: El temps d'espera s'ha " -"esgotat mentre s'espera la configuració del bucle. Siusplau intenteu " -"utilitzar l'aplicació <i>Disks</i> al seu lloc." +"No s'ha pogut afegir el contenidor de fitxers %s: s'ha excedit el temps " +"mentre s'esperava la configuració de bucle.\n" +"Torneu a provar-ho fent servir l'aplicació <i>Discs</i>." #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -914,7 +915,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_Obre" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -922,7 +923,7 @@ msgstr "Bloqueja aquest volum" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_Desbloqueja" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/en_GB.po b/po/en_GB.po index 68265a13dc3506f3527c64b740affe1fbf98d38c..a332b7c65639c21193be659af5fb73ef33322782 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-01-16 23:26+0000\n" +"PO-Revision-Date: 2019-06-02 00:43+0000\n" "Last-Translator: Andi Chandler <andi@gowling.com>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/otf/" "torproject/language/en_GB/)\n" @@ -153,7 +153,7 @@ msgstr "Keep current name" #: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 msgid "su is disabled. Please use sudo instead." -msgstr "" +msgstr "su is disabled. Please use sudo instead." #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" @@ -161,7 +161,7 @@ msgstr "Lock screen" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79 msgid "Suspend" -msgstr "" +msgstr "Suspend" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83 msgid "Restart" @@ -783,13 +783,13 @@ msgid "Failed to add container" msgstr "Failed to add container" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" -"Could not add file container %s: Timeout while waiting for loop setup.Please " -"try using the <i>Disks</i> application instead." +"Could not add file container %s: Timeout while waiting for loop setup.\n" +"Please try using the <i>Disks</i> application instead." #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -890,7 +890,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_Open" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -898,7 +898,7 @@ msgstr "Lock this volume" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_Unlock" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/fa.po b/po/fa.po new file mode 100644 index 0000000000000000000000000000000000000000..7330caeba64aae694768c105a3b447078159ec74 --- /dev/null +++ b/po/fa.po @@ -0,0 +1,937 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# adriano <eb.ae@aol.com>, 2013 +# signal89, 2014 +# Ali Mirjamali <ali.mirjamali@gmail.com>, 2019 +# Ali, 2015 +# Amir Moezzi <amirreza.mz@yahoo.com>, 2017 +# Atash G <Ali_hosseine@yahoo.com>, 2019 +# Danial Keshani <dani@daanial.com>, 2013 +# Mohammad Hossein <desmati@gmail.com>, 2014 +# Ehsan Ab <a.ehsan70@gmail.com>, 2015 +# Emma Peel, 2019 +# Farshad Gh <farshad73@gmail.com>, 2015 +# NoProfile, 2014-2016 +# Goudarz Jafari <goudarz.jafari@gmail.com>, 2017,2019 +# Hoot 4nConfidential <hootan-m@live.com>, 2018-2019 +# johnholzer <johnholtzer123@gmail.com>, 2014 +# jonothan hipkey <j.hipkey4502@gmail.com>, 2014 +# Mehrad Rousta <mehrad77@gmail.com>, 2019 +# Mehrzad, 2017 +# M. Heydar Elahi <m.heydar.elahi@gmail.com>, 2014 +# Mohammad Hadi K <mhkaramzadeh7@gmail.com>, 2018 +# Mohammad Hossein <desmati@gmail.com>, 2014 +# Sina Eghbal <s.eghbal@gmail.com>, 2016 +# Vox, 2019 +# Vox, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Tor Project\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-18 19:31+0200\n" +"PO-Revision-Date: 2019-05-28 08:35+0000\n" +"Last-Translator: Reza Ghasemi\n" +"Language-Team: Persian (http://www.transifex.com/otf/torproject/language/" +"fa/)\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=2; plural=(n > 1);\n" + +#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39 +msgid "Tor is ready" +msgstr "تور آماده است" + +#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40 +msgid "You can now access the Internet." +msgstr "هم اکنون می توانید به اینترنت دسترسی داشته باشید." + +#: config/chroot_local-includes/etc/whisperback/config.py:69 +#, python-format +msgid "" +"<h1>Help us fix your bug!</h1>\n" +"<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n" +"<p><strong>Do not include more personal information than\n" +"needed!</strong></p>\n" +"<h2>About giving us an email address</h2>\n" +"<p>\n" +"Giving us an email address allows us to contact you to clarify the problem. " +"This\n" +"is needed for the vast majority of the reports we receive as most reports\n" +"without any contact information are useless. On the other hand it also " +"provides\n" +"an opportunity for eavesdroppers, like your email or Internet provider, to\n" +"confirm that you are using Tails.\n" +"</p>\n" +msgstr "" +"<h1>برای رفع ایراد نرمافزاری به ما کمک کنید!</h1>\n" +"\n" +"<p><a href=\"%s\">راهنمای گزارش ایرادهای نرمافزاری ما</a> را بخوانید</p>\n" +"\n" +"<p><strong>Do not include more personal information than\n" +"\n" +"needed!</strong></p>\n" +"\n" +"<h2>دربارهی ارائهی یک آدرس رایانامه (ایمیل) به ما</h2>\n" +"\n" +"<p>\n" +"\n" +"Giving us an email address allows us to contact you to clarify the problem. " +"This\n" +"\n" +"is needed for the vast majority of the reports we receive as most reports\n" +"\n" +"without any contact information are useless. On the other hand it also " +"provides\n" +"\n" +"an opportunity for eavesdroppers, like your email or Internet provider, to\n" +"\n" +"confirm that you are using Tails.\n" +"\n" +"</p>\n" + +#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51 +msgid "" +"You can install additional software automatically from your persistent " +"storage when starting Tails." +msgstr "" +"هنگام شروع تیلز می توانید نرم افزار جانبی را از ذخیره سازی مداوم خود نصب " +"کنید." + +#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77 +msgid "" +"The following software is installed automatically from your persistent " +"storage when starting Tails." +msgstr "" +"پس از شروع تیلز، نرم افزار زیر به طور خودکار از حافظه مداوم شما نصب می شود." + +#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135 +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173 +msgid "" +"To add more, install some software using <a href=\"synaptic.desktop" +"\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop" +"\">APT on the command line</a>." +msgstr "" +"برای افزودن بیشتر، برخی از نرم افزار ها را با استفاده از <a href=\"synaptic." +"desktop\">مدیر بسته </a>synaptic یا APT<a href=\"org.gnome.Terminal.desktop" +"\"> بر روی خط فرمان</a> نصب کنید." + +#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154 +msgid "_Create persistent storage" +msgstr "_ ایجاد ذخیره سازی مداوم" + +#: config/chroot_local-includes/usr/local/bin/electrum:57 +msgid "Persistence is disabled for Electrum" +msgstr "اصرار است برای غیرفعال بودن Electrum" + +#: config/chroot_local-includes/usr/local/bin/electrum:59 +msgid "" +"When you reboot Tails, all of Electrum's data will be lost, including your " +"Bitcoin wallet. It is strongly recommended to only run Electrum when its " +"persistence feature is activated." +msgstr "" +"هنگامی که شما راه اندازی مجدد Tails، همه داده های Electrum از دست خواهد رفت، " +"از جمله کیف پول بیتکوین خود را. این است که به شدت توصیه می شود به تنهایی " +"اجرا شود Electrum هنگامی که ویژگی تداوم آن فعال می شود." + +#: config/chroot_local-includes/usr/local/bin/electrum:60 +msgid "Do you want to start Electrum anyway?" +msgstr "آیا شما می خواهید برای شروع های Electrum به هر حال؟" + +#: config/chroot_local-includes/usr/local/bin/electrum:63 +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41 +msgid "_Launch" +msgstr "اجرا" + +#: config/chroot_local-includes/usr/local/bin/electrum:64 +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42 +msgid "_Exit" +msgstr "خروج" + +#: config/chroot_local-includes/usr/local/bin/keepassx:17 +#, sh-format +msgid "" +"<b><big>Do you want to rename your <i>KeePassX</i> database?</big></b>\n" +"\n" +"You have a <i>KeePassX</i> database in your <i>Persistent</i> folder:\n" +"\n" +"<i>${filename}</i>\n" +"\n" +"Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassX</i> to open it " +"automatically in the future." +msgstr "" +"<b><big>آیا میخواهید نام پایگاهداده <i>KeePassX</i> خود را تغییر دهید؟</" +"big></b>\n" +"\n" +"شما یک پایگاهداده <i>KeePassX</i> در پوشه <i>مداوم</i> خود دارید:\n" +"\n" +"<i>${filename}</i>\n" +"\n" +"تغییر نام آن به <i>keepassx.kdbx</i> اجازه میدهد که <i>KeePassX</i> به طور " +"خودکار آن را در آینده باز کند." + +#: config/chroot_local-includes/usr/local/bin/keepassx:25 +msgid "Rename" +msgstr "تغییر نام" + +#: config/chroot_local-includes/usr/local/bin/keepassx:26 +msgid "Keep current name" +msgstr "نام کنونی را نگه دار" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "su غیرفعال است. لطفا از sudo استفاده کنید." + +#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 +msgid "Lock screen" +msgstr "صفحه قفل" + +#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79 +msgid "Suspend" +msgstr "معلق کردن" + +#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83 +msgid "Restart" +msgstr "شروع دوباره" + +#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87 +msgid "Power Off" +msgstr "خاموش کردن رایانه" + +#: config/chroot_local-includes/usr/local/bin/tails-about:22 +#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1 +msgid "Tails" +msgstr "Tails" + +#: config/chroot_local-includes/usr/local/bin/tails-about:25 +#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1 +msgid "About Tails" +msgstr "درباره Tails" + +#: config/chroot_local-includes/usr/local/bin/tails-about:35 +msgid "The Amnesic Incognito Live System" +msgstr "سیستمعامل ناشناخته مبتلا به فراموشی" + +#: config/chroot_local-includes/usr/local/bin/tails-about:36 +#, python-format +msgid "" +"Build information:\n" +"%s" +msgstr "" +"اطلاعات ساخت:\n" +" %s" + +#: config/chroot_local-includes/usr/local/bin/tails-about:54 +msgid "not available" +msgstr "امکانپذیر نیست" + +#. Translators: Don't translate {details}, it's a placeholder and will +#. be replaced. +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150 +#, python-brace-format +msgid "" +"{details} Please check your list of additional software or read the system " +"log to understand the problem." +msgstr "" +"{details} لطفا لیست نرم افزار های جانبی را بررسی کنید یا گزارش های سیستم را " +"بخوانید تا مشکل را درک کنید." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155 +msgid "" +"Please check your list of additional software or read the system log to " +"understand the problem." +msgstr "" +"لطفا لیست نرم افزار های جانبی را بررسی کنید یا گزارش های سیستم را بخوانید تا " +"مشکل را درک کنید." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159 +msgid "Show Log" +msgstr "نمایش گزارش" + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159 +msgid "Configure" +msgstr "پیکربندی" + +#. Translators: Don't translate {beginning} or {last}, they are +#. placeholders and will be replaced. +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225 +#, python-brace-format +msgid "{beginning} and {last}" +msgstr "{beginning} و {last}" + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226 +msgid ", " +msgstr "،" + +#. Translators: Don't translate {packages}, it's a placeholder and will +#. be replaced. +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292 +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322 +#, python-brace-format +msgid "Add {packages} to your additional software?" +msgstr "{packages} را به نرم افزار های جانبی اضافه کنم؟" + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294 +msgid "" +"To install it automatically from your persistent storage when starting Tails." +msgstr "برای نصب آن به طور خودکار از ذخیره سازی مداوم خود هنگام شروع تیلز." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296 +msgid "Install Every Time" +msgstr "هر بار نصب کن" + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297 +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328 +msgid "Install Only Once" +msgstr "فقط یک بار نصب کن" + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303 +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333 +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374 +msgid "The configuration of your additional software failed." +msgstr "پیکربندی نرم افزار جانبی با شکست رو به رو شد." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324 +msgid "" +"To install it automatically when starting Tails, you can create a persistent " +"storage and activate the <b>Additional Software</b> feature." +msgstr "" +"برای نصب خودکار آن در هنگام شروع تیلز، میتوانید یک ذخیره سازی مداوم ایجاد " +"کرده و ویژگی <b>نرم افزار اضافی</b> را فعال کنید." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327 +msgid "Create Persistent Storage" +msgstr "ایجاد ذخیره سازی مداوم" + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335 +msgid "Creating your persistent storage failed." +msgstr "ایجاد ذخیره سازی مداوم شما موفق نبود." + +#. Translators: Don't translate {packages}, it's a placeholder and +#. will be replaced. +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344 +#, python-brace-format +msgid "You could install {packages} automatically when starting Tails" +msgstr "شما میتوانید {packages} را به طور خودکار در هنگام شروع تیلز نصب کنید" + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347 +msgid "" +"To do so, you need to run Tails from a USB stick installed using <i>Tails " +"Installer</i>." +msgstr "" +"برای انجام این کار، باید تیلز را از یک حافظه USB که با استفاده از <i>نصب " +"کننده تیلز</i> نصب میشود ، اجرا کنید ." + +#. Translators: Don't translate {packages}, it's a placeholder and will be +#. replaced. +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362 +#, python-brace-format +msgid "Remove {packages} from your additional software?" +msgstr "حذف {packages} از نرم افزار های جانبی شما؟" + +#. Translators: Don't translate {packages}, it's a placeholder +#. and will be replaced. +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366 +#, python-brace-format +msgid "This will stop installing {packages} automatically." +msgstr "این به طور خودکار نصب {packages} را متوقف خواهد کرد." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368 +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156 +msgid "Remove" +msgstr "حذف" + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369 +#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119 +#: config/chroot_local-includes/usr/local/bin/tor-browser:46 +msgid "Cancel" +msgstr "لغو" + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547 +msgid "Installing your additional software from persistent storage..." +msgstr "نصب نرم افزار اضافی شما از ذخیره سازی مداوم..." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549 +msgid "This can take several minutes." +msgstr "این ممکن چندین دقیقه طول بکشه..." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562 +msgid "The installation of your additional software failed" +msgstr "نصب نرم افزار جانبی با شکست رو به رو شد." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577 +msgid "Additional software installed successfully" +msgstr "نرم افزار جانبی با موفقیت نصب شد." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597 +msgid "The check for upgrades of your additional software failed" +msgstr "بررسی به روز رسانی نرم افزار جانبی با شکست رو به رو شد." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599 +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607 +msgid "" +"Please check your network connection, restart Tails, or read the system log " +"to understand the problem." +msgstr "" +"لطفا اتصال شبکه خود را بررسی کنید، تیلز را دوباره راهاندازی کنید ، یا گزارش " +"های سیستم را بخوانید تا مشکل را درک کنید." + +#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606 +msgid "The upgrade of your additional software failed" +msgstr "به روز رسانی نرم افزار جانبی با شکست رو به رو شد." + +#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39 +msgid "Documentation" +msgstr "مستندات" + +#. Translators: Don't translate {package}, it's a placeholder and will be replaced. +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96 +#, python-brace-format +msgid "" +"Remove {package} from your additional software? This will stop installing " +"the package automatically." +msgstr "" +"حذف {package} از نرم افزار های جانبی شما؟ این کار نصب خودکار بسته را متوقف " +"میکند." + +#. Translators: Don't translate {pkg}, it's a placeholder and will be replaced. +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107 +#, python-brace-format +msgid "Failed to remove {pkg}" +msgstr "پاک کردن {pkg} با شکست روبرو شد." + +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124 +msgid "Failed to read additional software configuration" +msgstr "خواندن تنظیمات نرم افزار جانبی با شکست مواجه شد." + +#. Translators: Don't translate {package}, it's a placeholder and will be replaced. +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154 +#, python-brace-format +msgid "Stop installing {package} automatically" +msgstr "متوقف کردن نصب خودکار {package}" + +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180 +msgid "" +"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic " +"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the " +"command line</a>." +msgstr "" +"برای انجام این کار، برخی از نرم افزار ها را با استفاده از <a href=\"synaptic." +"desktop\">مدیر بسته synaptic</a> یا <a href=\"org.gnome.Terminal.desktop" +"\">APT بر روی خط فرمان</a> نصب کنید." + +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189 +msgid "" +"To do so, unlock your persistent storage when starting Tails and install " +"some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</" +"a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>." +msgstr "" +"برای انجام این کار، زمانی که تیلز شروع میشود، ذخیره مداوم خود را باز کنید و " +"برخی از نرم افزار ها را با استفاده از <a href=\"synaptic.desktop\">مدیر بسته " +"synaptic</a> یا <a href=\"org.gnome.Terminal.desktop\">APT بر روی خط فرمان</" +"a> نصب کنید." + +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199 +msgid "" +"To do so, create a persistent storage and install some software using <a " +"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org." +"gnome.Terminal.desktop\">APT on the command line</a>." +msgstr "" +"برای انجام این کار, یک ذخیره مداوم ایجاد کنید و برخی از نرم افزار ها را با " +"استفاده از <a href=\"synaptic.desktop\">مدیر بسته synaptic</a> یا <a href=" +"\"org.gnome.Terminal.desktop\">APT بر روی خط فرمان</a> نصب کنید." + +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207 +msgid "" +"To do so, install Tails on a USB stick using <a href=\"tails-installer." +"desktop\">Tails Installer</a> and create a persistent storage." +msgstr "" +"برای انجام این کار، تیلز را روی یک حافظه USB با استفاده از <a href=\"tails-" +"installer.desktop\">نصب کننده تیلز</a> نصب کنید و یک ذخیره سازی مداوم ایجاد " +"کنید." + +#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254 +msgid "[package not available]" +msgstr "بسته در دسترس نیست" + +#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52 +msgid "Synchronizing the system's clock" +msgstr "در حال همزمان کردن ساعت سیستم" + +#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53 +msgid "" +"Tor needs an accurate clock to work properly, especially for Hidden " +"Services. Please wait..." +msgstr "" +"تور برای درست کار کاردن، مخصوصا برای خدمات مخفی به یک ساعت دقیق احتیاج دارد، " +"لطفا صبر کنید..." + +#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87 +msgid "Failed to synchronize the clock!" +msgstr "همزمانسازی ساعت موفقیتآمیز نبود!" + +#: config/chroot_local-includes/usr/local/bin/tails-security-check:124 +msgid "This version of Tails has known security issues:" +msgstr "این نسخه از Tails این مشکلات امنیت شناخته شده را دارد:" + +#: config/chroot_local-includes/usr/local/bin/tails-security-check:134 +msgid "Known security issues" +msgstr "مسائل امنیتی شناخته شده" + +#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52 +#, sh-format +msgid "Network card ${nic} disabled" +msgstr "کارت شبکهٔ ${nic} غیرفعال است" + +#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53 +#, sh-format +msgid "" +"MAC spoofing failed for network card ${nic_name} (${nic}) so it is " +"temporarily disabled.\n" +"You might prefer to restart Tails and disable MAC spoofing." +msgstr "" +"تغییر آدرس MAC برای کارت شبکه ${nic_name}(${nic}) ناموفق بود و به همین خاطر " +"موقتا این سرویس غیرفعال شده است. شما می توانید Tails را بسته و مجددا اجرا " +"کنید و یا MAC Spoofing یا همان حقه زدن MAC را غیرفعال کنید." + +#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62 +msgid "All networking disabled" +msgstr "شبکه غیرفعال شده است" + +#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63 +#, sh-format +msgid "" +"MAC spoofing failed for network card ${nic_name} (${nic}). The error " +"recovery also failed so all networking is disabled.\n" +"You might prefer to restart Tails and disable MAC spoofing." +msgstr "" +"تغییر آدرس MAC برای کارت شبکه ${nic_name} (${nic}) ناموفق بود. همچنین ترمیم " +"این خطا نیز موفقیت آمیز نبود و همه شبکه به همین خاطر غیرفعال شد.\n" +"شما می توانید Tails را دوباره راه اندازی کنید و یا MAC Spoofing یا همان حقه " +"زدن MAC را غیر فعال کنید." + +#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110 +msgid "Lock Screen" +msgstr "قفل صفحه" + +#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125 +msgid "Screen Locker" +msgstr "قفلکنندهی صفحه" + +#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131 +msgid "Set up a password to unlock the screen." +msgstr "برای باز کردن صفحه یک گذرواژه تعیین کنید." + +#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:136 +msgid "Password" +msgstr "رمز عبور" + +#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:142 +msgid "Confirm" +msgstr "تایید " + +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +msgid "" +"\"<b>Not enough memory available to check for upgrades.</b>\n" +"\n" +"Make sure this system satisfies the requirements for running Tails.\n" +"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n" +"\n" +"Try to restart Tails to check for upgrades again.\n" +"\n" +"Or do a manual upgrade.\n" +"See https://tails.boum.org/doc/first_steps/upgrade#manual\"" +msgstr "" +"<b>حافظه رم خالی جهت بررسی برای به روز رسانی موجود نیست.</b>\n" +"\n" +"مطمئن شوید این سیستم حداقل پیش نیازهای لازم برای تیلز را پشتیبانی می کند.\n" +"این فایل را ببینید: file:///usr/share/doc/tails/website/doc/about/" +"requirements.en.html\n" +"\n" +"تیلز را راه اندازی مجدد کنید و دوباره برای به روز رسانی اقدام کنید.\n" +"\n" +"و یا به صورت دستی به روز رسانی کنید.\n" +"این فایل را ببینید: https://tails.boum.org/doc/first_steps/upgrade#manual" + +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27 +msgid "error:" +msgstr "خطا :" + +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28 +msgid "Error" +msgstr "خطا" + +#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 +msgid "Warning: virtual machine detected!" +msgstr "هشدار: ماشین مجازی کشف شد!" + +#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74 +msgid "Warning: non-free virtual machine detected!" +msgstr "هشدار: ماشین مجازی غیر آزاد شناسایی شد!" + +#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77 +msgid "" +"Both the host operating system and the virtualization software are able to " +"monitor what you are doing in Tails. Only free software can be considered " +"trustworthy, for both the host operating system and the virtualization " +"software." +msgstr "" +"سیستم عامل میزبان و نرم افزار مجازی ساز می توانند آنچه شما در Tails انجام می " +"دهید را مشاهده کنند. تنها نرم افزارهای آزاد می توانند برای سیستم عامل میزبان " +"و نرم افزار مجازی ساز قابل اعتماد باشند." + +#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81 +msgid "Learn more" +msgstr "بیشتر بدانید" + +#: config/chroot_local-includes/usr/local/bin/tor-browser:43 +msgid "Tor is not ready" +msgstr "تور آماده نیست" + +#: config/chroot_local-includes/usr/local/bin/tor-browser:44 +msgid "Tor is not ready. Start Tor Browser anyway?" +msgstr "تور آماده نیست. مرورگر تور به هر حال اجرا شود؟" + +#: config/chroot_local-includes/usr/local/bin/tor-browser:45 +msgid "Start Tor Browser" +msgstr "اجرای مرورگر تور" + +#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:40 +msgid "Tor" +msgstr "Tor" + +#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:55 +msgid "Open Onion Circuits" +msgstr "یک مدار پیازی باز کن" + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38 +msgid "Do you really want to launch the Unsafe Browser?" +msgstr "آیا واقعا قصد دارید که مرورگر نا امن را اجرا کنید؟" + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40 +msgid "" +"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly " +"use the Unsafe Browser if necessary, for example\\nif you have to login or " +"register to activate your Internet connection." +msgstr "" +"فعالیت های شبکه داخل مرورگر ناامن <b>قابل رهگیری</b> هستند.\\n تنها در صورت " +"نیاز از مرورگر ناامن استفاده کنید، برای مثال\\nاگر باید برای اتصال به " +"اینترنت وارد شوید یا ثبت نام کنید." + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51 +msgid "Starting the Unsafe Browser..." +msgstr "در حال اجرای مرورگر نا امن" + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52 +msgid "This may take a while, so please be patient." +msgstr "این ممکن است مدتی طول بکشد, بنابراین لطفا شکیبا باشید." + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57 +msgid "Shutting down the Unsafe Browser..." +msgstr "در حال بستن مرورگر نا امن" + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58 +msgid "" +"This may take a while, and you may not restart the Unsafe Browser until it " +"is properly shut down." +msgstr "" +"ممکن است مدتی طول بکشد. تا زمانی که به درستی خاموش شود لطفا مرورگر ناامن را " +"ری استارت نکنید" + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70 +msgid "Failed to restart Tor." +msgstr "عدم موفقیت در ری استارت کردن تور" + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84 +#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1 +msgid "Unsafe Browser" +msgstr "مرورگر ناامن" + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91 +msgid "" +"Another Unsafe Browser is currently running, or being cleaned up. Please " +"retry in a while." +msgstr "" +"یک مرورگر نا امن دیگر درحال اجرا, یا در حال پاکسازی است. لطفا کمی دیرتر " +"دوباره امتحان کنید." + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99 +msgid "Failed to setup chroot." +msgstr "عدم موفقیت در راه اندازی Chroot" + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104 +msgid "Failed to configure browser." +msgstr "پیکربندی مرورگر ناموفق بود." + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110 +msgid "" +"No DNS server was obtained through DHCP or manually configured in " +"NetworkManager." +msgstr "هیچ سرور DNS از طریق DHCP یا تنظیم دستی در NetworkManager بدست نیامد." + +#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121 +msgid "Failed to run browser." +msgstr "اجرای مرورگر ناموفق بود." + +#. Translators: Don't translate {volume_label} or {volume_size}, +#. they are placeholders and will be replaced. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58 +#, python-brace-format +msgid "{volume_label} ({volume_size})" +msgstr "{volume_label} ({volume_size})" + +#. Translators: Don't translate {partition_name} or {partition_size}, +#. they are placeholders and will be replaced. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63 +#, python-brace-format +msgid "{partition_name} ({partition_size})" +msgstr "{partition_name} ({partition_size})" + +#. Translators: Don't translate {volume_size}, it's a placeholder +#. and will be replaced. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68 +#, python-brace-format +msgid "{volume_size} Volume" +msgstr "حجم {volume_size}" + +#. Translators: Don't translate {volume_name}, it's a placeholder and +#. will be replaced. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107 +#, python-brace-format +msgid "{volume_name} (Read-Only)" +msgstr "{volume_name} (فقط-خواندنی)" + +#. Translators: Don't translate {partition_name} and {container_path}, they +#. are placeholders and will be replaced. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115 +#, python-brace-format +msgid "{partition_name} in {container_path}" +msgstr "{partition_name} در {container_path}" + +#. Translators: Don't translate {volume_name} and {path_to_file_container}, +#. they are placeholders and will be replaced. You should only have to translate +#. this string if it makes sense to reverse the order of the placeholders. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122 +#, python-brace-format +msgid "{volume_name} – {path_to_file_container}" +msgstr "{volume_name} - {path_to_file_container}" + +#. Translators: Don't translate {partition_name} and {drive_name}, they +#. are placeholders and will be replaced. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128 +#, python-brace-format +msgid "{partition_name} on {drive_name}" +msgstr "{partition_name} بر روی {drive_name}" + +#. Translators: Don't translate {volume_name} and {drive_name}, +#. they are placeholders and will be replaced. You should only have to translate +#. this string if it makes sense to reverse the order of the placeholders. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135 +#, python-brace-format +msgid "{volume_name} – {drive_name}" +msgstr "{volume_name} - {drive_name}" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222 +msgid "Wrong passphrase or parameters" +msgstr "کلمه عبور یا پارامتر غلط" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224 +msgid "Error unlocking volume" +msgstr "خطا در باز کردن حجم" + +#. Translators: Don't translate {volume_name} or {error_message}, +#. they are placeholder and will be replaced. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228 +#, python-brace-format +msgid "" +"Couldn't unlock volume {volume_name}:\n" +"{error_message}" +msgstr "" +"قادر به باز کردن حجم {volume_name} نبودیم:\n" +"{error_message}" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83 +msgid "No file containers added" +msgstr "هیچ مخزنی افزوده نشد" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98 +msgid "No VeraCrypt devices detected" +msgstr "دستگاه VeraCrypt تشخیص داده نشد" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40 +#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1 +msgid "Unlock VeraCrypt Volumes" +msgstr "باز کردن حجمهای VeraCrypt" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114 +msgid "Container already added" +msgstr "مخزن افزودهشده است." + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115 +#, python-format +msgid "The file container %s should already be listed." +msgstr "مخزن فایل %s باید لیست شده باشد." + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131 +msgid "Container opened read-only" +msgstr "محفظه باز شد (فقط خواندنی)" + +#. Translators: Don't translate {path}, it's a placeholder and will be replaced. +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133 +#, python-brace-format +msgid "" +"The file container {path} could not be opened with write access. It was " +"opened read-only instead. You will not be able to modify the content of the " +"container.\n" +"{error_message}" +msgstr "" +"مخزن پرونده {path} را نمیتوان با دسترسی نوشتن باز کرد.اگر بجای آن دسترسی فقط-" +"خواندنی بود. شما نمی توانستید محتوای مخزن را اصلاح کنید.\n" +"\n" +"{error_message}" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138 +msgid "Error opening file" +msgstr "خطا در باز کردن فایل" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160 +msgid "Not a VeraCrypt container" +msgstr "مخزن VeraCrypt نیست" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161 +#, python-format +msgid "The file %s does not seem to be a VeraCrypt container." +msgstr "فایل %s مخزن VeraCrypt به نظر نمیرسد." + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163 +msgid "Failed to add container" +msgstr "خطا در افزودن مخزن" + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 +#, python-format +msgid "" +"Could not add file container %s: Timeout while waiting for loop setup.\n" +"Please try using the <i>Disks</i> application instead." +msgstr "" +"افزودن کانتینر فایل %s ممکن نشد: انتظار برای نصب لوپ بسیار طول کشید.\n" +"لطفا به جای آن از برنامهی <i>دیسک</i> استفاده کنید." + +#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 +msgid "Choose File Container" +msgstr "انتخاب مخزن فایل" + +#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1 +msgid "Report an error" +msgstr "گزارش یک خطا" + +#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1 +#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1 +msgid "Tails documentation" +msgstr "مستندات Tails" + +#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2 +msgid "Learn how to use Tails" +msgstr "آموزش نحوهٔ استفاده از Tails" + +#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2 +msgid "Learn more about Tails" +msgstr "اطلاعات بیشتر در مورد Tails را یاد بگیرید" + +#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 +msgid "Tor Browser" +msgstr "مرورگر تور" + +#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2 +msgid "Anonymous Web Browser" +msgstr "مرورگر ناشناس" + +#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2 +msgid "Browse the World Wide Web without anonymity" +msgstr "شبکه جهانی وب (اینترنت) را بدون ناشناس بودن مرور کنید" + +#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3 +msgid "Unsafe Web Browser" +msgstr "مرورگر وب ناامن" + +#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2 +msgid "Mount VeraCrypt encrypted file containers and devices" +msgstr "کانتینرهای پرونده و دستگاههای رمزگذاری شده با VeraCrypt را بارگیری کن" + +#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 +msgid "Additional Software" +msgstr "نرم افزار اضافی" + +#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2 +msgid "" +"Configure the additional software installed from your persistent storage " +"when starting Tails" +msgstr "" +"پیکربندی نرم افزار جانبی نصبشده از ذخیره سازی مداوم خود هنگام شروع تیلز" + +#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2 +msgid "Tails specific tools" +msgstr "ابزارهای بارز Tails" + +#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1 +msgid "To start a Root Terminal, you need to authenticate." +msgstr "برای اجرای ترمینال روت, باید وارد سیستم شوید." + +#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1 +msgid "Remove an additional software package" +msgstr "حذف بستهی نرم افزار اضافی" + +#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2 +msgid "" +"Authentication is required to remove a package from your additional software " +"($(command_line))" +msgstr "" +"حذف بسته از نرم افزار اضافی شما نیازمند احراز هویت است ($(command_line))" + +#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61 +msgid "File Containers" +msgstr "مخزن فایل" + +#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80 +msgid "_Add" +msgstr "_افزودن" + +#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86 +msgid "Add a file container" +msgstr "افزودن مخزن فایل" + +#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103 +msgid "Partitions and Drives" +msgstr "پارتیشنها و درایوها" + +#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121 +msgid "" +"This application is not affiliated with or endorsed by the VeraCrypt project " +"or IDRIX." +msgstr "" +"این نرم افزار وابسته و یا تائید شده توسط پروژهی VeraCrypt یا IDRIX نیست." + +#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 +msgid "_Open" +msgstr "_باز کردن" + +#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 +msgid "Lock this volume" +msgstr "فقل کردن این حجم" + +#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 +msgid "_Unlock" +msgstr "_باز کردن" + +#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 +msgid "Detach this volume" +msgstr "جدا کردن این حجم" + +#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1 +msgid "TrueCrypt/VeraCrypt container" +msgstr "مخزن TrueCrypt/VeraCrypt" diff --git a/po/he.po b/po/he.po index 6017390c48ffa08b5aef2249afc0f0c339af0f55..e513855454abd79a2da6531926288bac159a22ba 100644 --- a/po/he.po +++ b/po/he.po @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-04-12 19:17+0000\n" +"PO-Revision-Date: 2019-05-20 19:11+0000\n" "Last-Translator: ION\n" "Language-Team: Hebrew (http://www.transifex.com/otf/torproject/language/" "he/)\n" @@ -116,7 +116,7 @@ msgstr "_הפעל" #: config/chroot_local-includes/usr/local/bin/electrum:64 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42 msgid "_Exit" -msgstr "_יציאה" +msgstr "_צא" #: config/chroot_local-includes/usr/local/bin/keepassx:17 #, sh-format @@ -141,7 +141,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/bin/keepassx:25 msgid "Rename" -msgstr "שינוי שם" +msgstr "שנה שם" #: config/chroot_local-includes/usr/local/bin/keepassx:26 msgid "Keep current name" @@ -161,7 +161,7 @@ msgstr "השעה" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83 msgid "Restart" -msgstr "הפעלה מחדש" +msgstr "הפעל מחדש" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87 msgid "Power Off" @@ -215,7 +215,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159 msgid "Show Log" -msgstr "הצג יומן" +msgstr "הראה יומן" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159 msgid "Configure" @@ -314,7 +314,7 @@ msgstr "הסר" #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119 #: config/chroot_local-includes/usr/local/bin/tor-browser:46 msgid "Cancel" -msgstr "ביטול" +msgstr "בטל" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547 msgid "Installing your additional software from persistent storage..." @@ -770,7 +770,7 @@ msgid "Failed to add container" msgstr "נכשל בהוספת מֵכַל" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." @@ -793,7 +793,7 @@ msgstr "תיעוד Tails" #: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2 msgid "Learn how to use Tails" -msgstr "למד איך להשתמש ב-Tails" +msgstr "למד איך להשתמש ב־Tails" #: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2 msgid "Learn more about Tails" @@ -871,7 +871,7 @@ msgstr "יישום זה אינו מסונף עם או מאושר ע\"י מיזם #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_פתח" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -879,7 +879,7 @@ msgstr "נעל כרך זה" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_בטל נעילה" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/is.po b/po/is.po index 03b710886f28a605101280f34f18d61a0ef16fda..23aa9d500d49fd864ad2bc15316d4e9944c74f65 100644 --- a/po/is.po +++ b/po/is.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-04-06 17:00+0000\n" +"PO-Revision-Date: 2019-05-23 08:01+0000\n" "Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n" "Language-Team: Icelandic (http://www.transifex.com/otf/torproject/language/" "is/)\n" @@ -785,13 +785,14 @@ msgid "Failed to add container" msgstr "Tókst ekki að bæta við skráagámi" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" "Gat ekki bætt við skráagámnum %s: Rann út á tíma meðan beðið var eftir " -"uppsetningu á hringbeiningu. Notaðu frekar <i>Diskar</i> forritið." +"uppsetningu á hringbeiningu.\n" +"Notaðu frekar <i>Diskar</i> forritið." #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -891,7 +892,7 @@ msgstr "Þetta forrit tengist hvorki VeraCrypt verkefninu né IDRIX." #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_Opna" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -899,7 +900,7 @@ msgstr "Læsa þessari gagnageymslu" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_Aflæsa" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/it.po b/po/it.po index def9de03102f920e670b93c7c45175b4852bebc4..d7a4cb21e5362f78be6c88ca4679876a90506a1b 100644 --- a/po/it.po +++ b/po/it.po @@ -32,8 +32,8 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-04-14 08:53+0000\n" -"Last-Translator: Giandomenico Lombardi <transifex.com@l1t.it>\n" +"PO-Revision-Date: 2019-05-20 10:21+0000\n" +"Last-Translator: Random_R\n" "Language-Team: Italian (http://www.transifex.com/otf/torproject/language/" "it/)\n" "Language: it\n" @@ -807,13 +807,14 @@ msgid "Failed to add container" msgstr "Errore nell'aggiunta del container" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" -"Impossibile aggiungere il contenitore di file %s: tempo scaduto configurando " -"il loop. Riprova usando l'applicazione <i>Dischi</i>." +"Impossibile aggiungere contenitore file %s: tempo scaduto in attesa del loop " +"setup.\n" +"Prova piuttosto ad usare l'applicazione <i>Dischi</i>." #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -914,7 +915,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_Apri" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -922,7 +923,7 @@ msgstr "Blocca questo volume" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_Sblocca" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/ka.po b/po/ka.po index 2b4224baeff7405272ef4abc5b8fe22aa9c46943..88319e0c1bba8d30e53b3829f74b26ea8486b1f8 100644 --- a/po/ka.po +++ b/po/ka.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-04-28 15:36+0000\n" +"PO-Revision-Date: 2019-05-20 14:14+0000\n" "Last-Translator: Georgianization\n" "Language-Team: Georgian (http://www.transifex.com/otf/torproject/language/" "ka/)\n" @@ -784,13 +784,13 @@ msgid "Failed to add container" msgstr "სათავსის დამატება ვერ მოხერხდა" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" -"ვერ ხერხდება ფაილის სათავსის %s დამატება: დაყოვნება დაყენებამდე მოცდისთვის. " -"გთხოვთ, სცადოთ <i>დისკების</i> პროგრამის გამოყენება." +"ვერ ემატება ფაილის სათავსი %s: დაყოვნება, განმეორებით დაყენებამდე. \n" +"გთხოვთ, სანაცვლოდ გამოიყენოთ <i>დისკების</i> პროგრამა." #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -891,7 +891,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_გახსნა" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -899,7 +899,7 @@ msgstr "დანაყოფის ჩაკეტვა" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_გაღება" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/ms_MY.po b/po/ms_MY.po index ab05e5c1df04f6c8aa601506d23dfe81feedfc2c..d16a02a13ff854d02fd00cee206b4d3378bfeaa7 100644 --- a/po/ms_MY.po +++ b/po/ms_MY.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-05-05 03:53+0000\n" +"PO-Revision-Date: 2019-05-21 06:02+0000\n" "Last-Translator: abuyop <abuyop@gmail.com>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/otf/torproject/" "language/ms_MY/)\n" @@ -786,13 +786,13 @@ msgid "Failed to add container" msgstr "Gagal menambah bekas" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" -"Tidak dapat menambah bekas fail%s: Had masa tamat ketika menunggu persediaan " -"gelung. Cuba gunakan aplikasi <i>Cakera</i> sebagai ganti." +"Tidak dapat menambah bekas fail%s: Had masa tamat ketika menunggu \n" +"persediaan gelung. Cuba gunakan aplikasi <i>Cakera</i> sebagai ganti." #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -893,7 +893,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_Buka" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -901,7 +901,7 @@ msgstr "Kunci volum ini" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_Buka" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/pl.po b/po/pl.po index 3d13aef1b33a6164c208f4939805303ac2c94ad4..d7bbb4380c76b4a99d430c4efe22c2c6f2d2adf2 100644 --- a/po/pl.po +++ b/po/pl.po @@ -24,7 +24,7 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-04-16 18:39+0000\n" +"PO-Revision-Date: 2019-05-24 19:57+0000\n" "Last-Translator: Waldemar Stoczkowski\n" "Language-Team: Polish (http://www.transifex.com/otf/torproject/language/" "pl/)\n" @@ -804,14 +804,14 @@ msgid "Failed to add container" msgstr "Nie udało się dodać konteneru" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" -"Nie można dodać konteneru plików %s: Upłynął limit czasu oczekiwania na " -"pętlę konfiguracyjną. Proszę spróbować używając zamiast tego aplikację " -"<i>Dyski</i>." +"Nie można dodać kontenera plików %s: Limit czasu podczas oczekiwania na " +"konfigurację pętli.\n" +"Spróbuj zamiast tego użyć aplikacji <i>Dyski</i>." #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -912,7 +912,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_Otwarte" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -920,7 +920,7 @@ msgstr "Zablokuj ten wolumin" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_Odblokowanie" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/pt_BR.po b/po/pt_BR.po index 67c3f3f36933869a3d007d0ff85f37f0898c61c1..83a0085847caa67f713ab3716f06915112e68664 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -6,7 +6,8 @@ # Alexei Gonçalves de Oliveira <alexis@gessicahellmann.com>, 2018 # Communia <ameaneantie@riseup.net>, 2013-2018 # carlo giusepe tadei valente sasaki <carlo.gt.valente@gmail.com>, 2014 -# Chacal Exodius, 2019 +# Chacal E., 2019 +# Chacal E., 2019 # Danton Medrado, 2015 # Eduardo Addad de Oliveira <eduardoaddad@hotmail.com>, 2018-2019 # Eduardo Bonsi, 2013-2014 @@ -30,8 +31,8 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-04-07 18:59+0000\n" -"Last-Translator: Eduardo Addad de Oliveira <eduardoaddad@hotmail.com>\n" +"PO-Revision-Date: 2019-06-17 04:51+0000\n" +"Last-Translator: Chacal E.\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/" "language/pt_BR/)\n" "Language: pt_BR\n" @@ -806,14 +807,14 @@ msgid "Failed to add container" msgstr "Falhou ao adcionar container" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" -"Não foi possível adicionar o volume de armazenagem de arquivos %s: Tempo de " -"espera esgotado ao aguardar o loop de configuração. Por favor, experimente " -"usar, em vez disso, o aplicativo <i>Discos</i>." +"Não foi possível adicionar o contêiner de arquivos %s: Tempo limite enquanto " +"aguarda o loop de configuração.\n" +"Por favor, tente usar o aplicativo <i>Disks</i>." #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -914,7 +915,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_Abrir" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -922,7 +923,7 @@ msgstr "Bloquear este volume" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_Desbloquear" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/pt_PT.po b/po/pt_PT.po index 7e38fb4ec63b51c5130bf1b5302d849cb24d8e01..f22d908a04bea60ae68c322cb50ebb2a06884b5f 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -4,15 +4,16 @@ # # Translators: # Hugo9191 <hugoncosta@gmail.com>, 2019 -# Manuela Silva, 2018 +# Manuela Silva <manuelarodsilva@gmail.com>, 2019 +# Manuela Silva <manuelarodsilva@gmail.com>, 2018 # Rui <xymarior@yandex.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-05-18 20:10+0000\n" -"Last-Translator: Hugo9191 <hugoncosta@gmail.com>\n" +"PO-Revision-Date: 2019-06-03 13:49+0000\n" +"Last-Translator: Manuela Silva <manuelarodsilva@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/" "torproject/language/pt_PT/)\n" "Language: pt_PT\n" @@ -539,7 +540,7 @@ msgstr "Erro" #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" -msgstr "Atenção: detetada máquina virtual!" +msgstr "Aviso: detetada máquina virtual!" #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74 msgid "Warning: non-free virtual machine detected!" @@ -582,7 +583,7 @@ msgstr "Abrir Circuitos Onion" #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38 msgid "Do you really want to launch the Unsafe Browser?" -msgstr "Quer mesmo iniciar o Navegador Inseguro?" +msgstr "Deseja iniciar o Navegador Inseguro?" #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40 msgid "" @@ -600,7 +601,7 @@ msgstr "A iniciar o Navegador Inseguro..." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52 msgid "This may take a while, so please be patient." -msgstr "Isto pode demorar algum tempo, por favor, seja paciente." +msgstr "Isto poderá demorar algum tempo, por favor, seja paciente." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57 msgid "Shutting down the Unsafe Browser..." @@ -810,7 +811,7 @@ msgstr "Documentação do Tails" #: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2 msgid "Learn how to use Tails" -msgstr "Aprenda a utilizar o Tails" +msgstr "Saiba como utilizar o Tails" #: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2 msgid "Learn more about Tails" @@ -830,7 +831,7 @@ msgstr "Explore a World Wide Web sem anonimato" #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3 msgid "Unsafe Web Browser" -msgstr "Navegador Web Inseguro" +msgstr "Navegador da Web Inseguro" #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2 msgid "Mount VeraCrypt encrypted file containers and devices" @@ -894,7 +895,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_Abrir" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -902,7 +903,7 @@ msgstr "Bloquear este volume" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_Desbloquear" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/ru.po b/po/ru.po index c4c23b0d1b3827b0dda7df2d52ad70468f08da00..4d704b112ce86fe6751b79f710a3b2e64ac77c8c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9,6 +9,7 @@ # Andrey, 2017 # Антон Толмачев <a.tolmachev@richart-consalt.ru>, 2016 # Denis Denis <stereodenis@gmail.com>, 2014 +# Dmitry Schneider <adamred280@live.ru>, 2019 # Emma Peel, 2018 # Eugene, 2013 # Иван Лапенков, 2015 @@ -36,8 +37,8 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-05-18 20:57+0000\n" -"Last-Translator: Viktor Kutcevich <architector4@tilde.team>\n" +"PO-Revision-Date: 2019-05-22 13:14+0000\n" +"Last-Translator: Dmitry Schneider <adamred280@live.ru>\n" "Language-Team: Russian (http://www.transifex.com/otf/torproject/language/" "ru/)\n" "Language: ru\n" @@ -927,7 +928,7 @@ msgstr "Это приложение не связано / не одобрено #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "_Открыть" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -935,7 +936,7 @@ msgstr "Заблокировать этот том" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "_Разблокировать" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/zh_CN.po b/po/zh_CN.po index b78c70ab67d19393561a369be8a8b2e08f838f9f..19e773edf3e014796ccb3afe7ff9868e0221bf1e 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -19,15 +19,16 @@ # Xiaolan <xiaolan@protonmail.ch>, 2014 # YFdyh000 <yfdyh000@gmail.com>, 2016 # YFdyh000 <yfdyh000@gmail.com>, 2013-2016 -# Zhui Shen <12231252@bjtu.edu.cn>, 2019 +# Yikai Yang <ff98sha@gmail.com>, 2019 +# shenzhui007 <12231252@bjtu.edu.cn>, 2019 # ヨイツの賢狼ホロ, 2018 msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-05-13 04:17+0000\n" -"Last-Translator: Dianyu Liu <liudianyu5@gmail.com>\n" +"PO-Revision-Date: 2019-05-29 02:00+0000\n" +"Last-Translator: Yikai Yang <ff98sha@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/otf/torproject/" "language/zh_CN/)\n" "Language: zh_CN\n" @@ -42,7 +43,7 @@ msgstr "Tor 已就绪" #: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40 msgid "You can now access the Internet." -msgstr "你现在可以访问因特网了。" +msgstr "你现在可以访问互联网了。" #: config/chroot_local-includes/etc/whisperback/config.py:69 #, python-format @@ -96,7 +97,7 @@ msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154 msgid "_Create persistent storage" -msgstr "_创建持久存储" +msgstr "创建持久存储(_C)" #: config/chroot_local-includes/usr/local/bin/electrum:57 msgid "Persistence is disabled for Electrum" @@ -283,13 +284,13 @@ msgstr "创建持久存储失败" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344 #, python-brace-format msgid "You could install {packages} automatically when starting Tails" -msgstr "当开始运行Tails时,你将自动安装 {packages}。" +msgstr "当开始运行 Tails 时,你将自动安装 {packages}。" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347 msgid "" "To do so, you need to run Tails from a USB stick installed using <i>Tails " "Installer</i>." -msgstr "要实现以上操作,你需要通过USB来运行<i>Tails Installer</i>。" +msgstr "要实现以上操作,你需要在 USB 中运行 <i>Tails 安装器</i>。" #. Translators: Don't translate {packages}, it's a placeholder and will be #. replaced. @@ -341,7 +342,7 @@ msgstr "附加软件更新检查失败。" msgid "" "Please check your network connection, restart Tails, or read the system log " "to understand the problem." -msgstr "请检查您的网络连接,重启Tails或者阅读系统日志以了解问题所在。" +msgstr "请检查您的网络连接,重启 Tails 或者阅读系统日志以了解问题所在。" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606 msgid "The upgrade of your additional software failed" @@ -409,8 +410,8 @@ msgid "" "To do so, install Tails on a USB stick using <a href=\"tails-installer." "desktop\">Tails Installer</a> and create a persistent storage." msgstr "" -"为实现以上操作,在USB存储器上安装Tails时请使用<a href=\"tails-installer." -"desktop\">Tails安装程序</a>并创建一个持久存储。" +"为实现以上操作,在 USB 上安装 Tails 时请使用 <a href=\"tails-installer." +"desktop\">Tails 安装程序</a>并创建一个持久存储。" #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254 msgid "[package not available]" @@ -418,17 +419,17 @@ msgstr "[无法使用此原件包]" #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52 msgid "Synchronizing the system's clock" -msgstr "同步系统时钟" +msgstr "同步系统时间" #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53 msgid "" "Tor needs an accurate clock to work properly, especially for Hidden " "Services. Please wait..." -msgstr "为了正常运行,尤其隐匿服务,Tor 需要准确的时钟。请稍等..." +msgstr "为了正常运行,尤其是隐匿服务,Tor 需要精确的时间。请稍等..." #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87 msgid "Failed to synchronize the clock!" -msgstr "同步时钟失败!" +msgstr "同步时间失败!" #: config/chroot_local-includes/usr/local/bin/tails-security-check:124 msgid "This version of Tails has known security issues:" @@ -450,8 +451,8 @@ msgid "" "temporarily disabled.\n" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -"MAC 欺骗失败,网卡 ${nic_name} (${nic}) 已暂时禁用。\n" -"您可能宁愿重启 Tails 并禁用 MAC 欺骗。" +"MAC 伪装失败,网卡 ${nic_name} (${nic}) 已暂时禁用。\n" +"您可能会选择重启 Tails 并禁用 MAC 伪装。" #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62 msgid "All networking disabled" @@ -464,9 +465,9 @@ msgid "" "recovery also failed so all networking is disabled.\n" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -"MAC 欺骗对 ${nic_name} (${nic}) 失败。错误恢复也一同失败,所以所有网络已被禁" +"MAC 伪装对 ${nic_name} (${nic}) 失败。错误恢复也一同失败,所以所有网络已被禁" "用。\n" -"您可能宁愿重启 Tails 并禁用 MAC 欺骗。" +"您可能会选择重启 Tails 并禁用 MAC 伪装。" #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110 msgid "Lock Screen" @@ -548,11 +549,11 @@ msgstr "Tor 未就绪" #: config/chroot_local-includes/usr/local/bin/tor-browser:44 msgid "Tor is not ready. Start Tor Browser anyway?" -msgstr "Tor 未就绪。确定启动 Tor Browser?" +msgstr "Tor 未就绪。确定启动 Tor 浏览器?" #: config/chroot_local-includes/usr/local/bin/tor-browser:45 msgid "Start Tor Browser" -msgstr "启动 Tor Browser" +msgstr "启动 Tor 浏览器" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:40 msgid "Tor" @@ -759,12 +760,13 @@ msgid "Failed to add container" msgstr "无法添加容器。" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" -"无法添加容器 %s:等待回环设备时超时。请使用 <i>磁盘</i>应用程序再试一次。" +"无法添加文件容器 %s:等待回环设备时超时。\n" +"请使用 <i>磁盘</i>应用程序再试一次。" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -789,7 +791,7 @@ msgstr "更深入了解 Tails" #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" -msgstr "Tor Browser" +msgstr "Tor 浏览器" #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2 msgid "Anonymous Web Browser" @@ -841,7 +843,7 @@ msgstr "文件容器" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80 msgid "_Add" -msgstr "_添加" +msgstr "添加(_A)" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86 msgid "Add a file container" @@ -859,7 +861,7 @@ msgstr "本程序和 VeraCrypt 和 IDRIX 均无关联。" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "开启(_O)" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -867,7 +869,7 @@ msgstr "锁定此卷" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "解锁(_U)" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/po/zh_TW.po b/po/zh_TW.po index fa2ca2274fa0f28315cfd082ab458a7c8339aeb3..7782d7771d085886a2bb83a58cb6027aafff1701 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -21,7 +21,7 @@ msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-18 19:31+0200\n" -"PO-Revision-Date: 2019-04-26 12:06+0000\n" +"PO-Revision-Date: 2019-05-23 13:25+0000\n" "Last-Translator: Hsiu-Ming Chang <cges30901@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/" "language/zh_TW/)\n" @@ -759,12 +759,13 @@ msgid "Failed to add container" msgstr "無法加入容器" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 -#, fuzzy, python-format +#, python-format msgid "" "Could not add file container %s: Timeout while waiting for loop setup.\n" "Please try using the <i>Disks</i> application instead." msgstr "" -"無法加入檔案容器 %s:等待 loop 設定時逾時。請試著改用<i>磁碟</i>應用程式。" +"無法加入檔案容器 %s:等待 loop 設定時逾時。\n" +"請試著改用<i>磁碟</i>應用程式。" #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209 msgid "Choose File Container" @@ -859,7 +860,7 @@ msgstr "本應用程式與 VeraCrypt 項目或 IDRIX 無關聯或認可。" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29 msgid "_Open" -msgstr "" +msgstr "開啟(_O)" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" @@ -867,7 +868,7 @@ msgstr "鎖定此加密區" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" -msgstr "" +msgstr "解鎖(_U)" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" diff --git a/vagrant/provision/assets/build-tails b/vagrant/provision/assets/build-tails index 1a0d08307c2a5f26a62c9771287ba90a77aba444..baef54d1ec4f3ac3bd2ff1c80d02dc8d2e0be51e 100755 --- a/vagrant/provision/assets/build-tails +++ b/vagrant/provision/assets/build-tails @@ -59,27 +59,28 @@ fi TAILS_GIT_DIR="/home/vagrant/amnesia" if [ ! -d "${TAILS_GIT_DIR}" ]; then - # We use --shared as an time/space optimization, and it is safe - # since our build process doesn't modify any objects (which would - # fail since the host's .git directory is shared read-only). - git clone --shared --local /amnesia.git/.git "${TAILS_GIT_DIR}" - # When we locally Git clone the main repo over the filesystem - # above, it will use the host's local repo as origin, but the - # submodules will continue to use their remote repos. A problem - # with this, beside unnecessary fetching of the network, is that - # any unpublished commits in the host's submodule are - # inaccessible, so if we want to build we first have to push those - # commits to the submodules remote repo. To avoid this, and in - # general try to make sure that the Git state in the builder is - # the same as on the host, we just clone the submodules in the - # same way we do the main repo. - ( - cd "${TAILS_GIT_DIR}/submodules" - for submodule in $(ls -1); do - rm -rf "${submodule}" - git clone --shared "/amnesia.git/.git/modules/submodules/${submodule}" - done - ) + # We use --shared as an time/space optimization, and it is safe + # since our build process doesn't modify any objects (which would + # fail since the host's .git directory is shared read-only). + git clone --shared --local /amnesia.git/.git "${TAILS_GIT_DIR}" + # When we locally Git clone the main repo over the filesystem + # above, it will use the host's local repo as origin, but the + # submodules will continue to use their remote repos. A problem + # with this, beside unnecessary fetching of the network, is that + # any unpublished commits in the host's submodule are + # inaccessible, so if we want to build we first have to push those + # commits to the submodules remote repo. To avoid this, and in + # general try to make sure that the Git state in the builder is + # the same as on the host, we just clone the submodules in the + # same way we do the main repo. + ( + cd "${TAILS_GIT_DIR}/submodules" + for submodule in $(ls -1); do + rm -rf "${submodule}" + git clone --shared \ + "/amnesia.git/.git/modules/submodules/${submodule}" + done + ) fi cd "${TAILS_GIT_DIR}" @@ -87,27 +88,15 @@ cd "${TAILS_GIT_DIR}" # they were on our own "origin" remote, (i.e. under the origin/$REF # name), even if it's untrue (our own "origin" is amnesia.git and has # only one local ref, which is the branch we work on and that it has -# checked out as a local tracking branch). We need this for the base -# branch merge we do (if the 'mergebasebranch'/TAILS_MERGE_BASE_BRANCH -# option is set) later in auto/build. +# checked out as a local tracking branch). This allows +# git_base_branch_head(), that's used by Rakefile to set +# $BASE_BRANCH_GIT_COMMIT, to do its job: without this, it would not +# have access to the state of the base branch because it would not +# have any ref for it. git config remote.origin.fetch +refs/remotes/origin/*:refs/remotes/origin/* -# Ensure we have the Git refs we need: -git fetch origin "${GIT_REF}" -# The repo we cloned above (the host's repo) will expose *its* local -# checkouts of branches. We know that the GIT_REF ref will be -# up-to-date since it is what is checked out on the host, so we could -# just fetch it above, but for any other ref (read: branch) the local -# checkout could be very out-of-date, or worse: it may not even exist, -# making any attempt at merging the base branch below fail. We work -# around this by fetching the ref from the host's origin (most likely -# the official Tails repo) where the base branch refs must exist and -# be as up-to-date as possible (i.e. since the host's last fetch). -if [ "${TAILS_MERGE_BASE_BRANCH}" = 1 ]; then - git fetch origin "origin/$(cat config/base_branch)" -fi - -# Ensure we have the same Git state as on the host: +# Ensure we have the same Git state as on the host +git fetch --tags git checkout --force "${GIT_REF}" git reset --hard "${GIT_COMMIT}" git submodule update --init @@ -134,16 +123,16 @@ if [ -n "$TAILS_DATE_OFFSET" ]; then fi if [ "${TAILS_PROXY_TYPE}" = "vmproxy" ]; then - # The apt-cacher-ng cache disk is 15G, so let's ensure at most 10G - # of it is used there is 5G before each build, which should be - # enough for any build, even if we have to download a complete set - # of new packages for a new Debian release. - as_root_do /usr/lib/apt-cacher-ng/acngtool shrink 10G -f || \ - echo "The clean-up of apt-cacher-ng's cache failed: this is" \ - "not fatal and most likely just means that some disk" \ - "space could not be reclaimed -- in order to fix that" \ - "situation you need to manually investigate " \ - "/var/cache/apt-cacher-ng/apt-cacher-ng-log/main_*.html" >&2 + # The apt-cacher-ng cache disk is 15G, so let's ensure at most 10G + # of it is used there is 5G before each build, which should be + # enough for any build, even if we have to download a complete set + # of new packages for a new Debian release. + as_root_do /usr/lib/apt-cacher-ng/acngtool shrink 10G -f || \ + echo "The clean-up of apt-cacher-ng's cache failed: this is" \ + "not fatal and most likely just means that some disk" \ + "space could not be reclaimed -- in order to fix that" \ + "situation you need to manually investigate " \ + "/var/cache/apt-cacher-ng/apt-cacher-ng-log/main_*.html" >&2 fi BUILD_DIR=$(mktemp -d /tmp/tails-build.XXXXXXXX) diff --git a/wiki/src/contribute/how/documentation/release_notes/template.mdwn b/wiki/src/contribute/how/documentation/release_notes/template.mdwn index df5c049ae8c79ec146e4af70b62352b37162551b..96bbf27e8f9b8087c379e61cf82648d3f87f2694 100644 --- a/wiki/src/contribute/how/documentation/release_notes/template.mdwn +++ b/wiki/src/contribute/how/documentation/release_notes/template.mdwn @@ -20,15 +20,13 @@ vulnerabilities|security/Numerous_security_holes_in_$VERSION-1]]. You should upg [[!toc levels=1]] -# Changes +# New features -## New features - -## Upgrades and changes +# Upgrades and changes <-- You can reuse the following subsections if the section gets too big: -### Included software +## Included software - Update *Xyz* to [1.2.3]. @@ -37,14 +35,14 @@ vulnerabilities|security/Numerous_security_holes_in_$VERSION-1]]. You should upg - Update *Linux* to 1.2.3. This should improve the support for newer hardware (graphics, Wi-Fi, etc.). -### Hardware support +## Hardware support The following updates make Tails work better on recent hardware (graphics, Wi-Fi, etc.): --> -## Fixed problems +# Fixed problems For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]]. diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index e9baf4aaafe509deaa0793b7d10599455143f6dc..a87a42ab6751da85d09ee217a900fb0fa73c1704 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -1050,7 +1050,7 @@ and on the live website (even for a release candidate): EOF TRACE_TIME=$(date +%s) && - echo ${TRACE_TIME:?} | ssh rsync.lizard "cat > /srv/rsync/tails/tails/project/trace" && \ + ssh rsync.lizard "echo ${TRACE_TIME:?} | sudo tee /srv/rsync/tails/tails/project/trace" && \ [ -n "${MASTER_CHECKOUT:?}" ] && \ echo ${TRACE_TIME:?} > "${MASTER_CHECKOUT:?}/wiki/src/inc/trace" && ( @@ -1073,7 +1073,7 @@ candidate): EOF TRACE_TIME=$(date +%s) && - echo ${TRACE_TIME:?} | ssh rsync.lizard "cat > /srv/rsync/tails/tails/project/trace" && \ + ssh rsync.lizard "echo ${TRACE_TIME:?} | sudo tee /srv/rsync/tails/tails/project/trace" && \ [ -n "${MASTER_CHECKOUT:?}" ] && \ echo ${TRACE_TIME:?} > "${MASTER_CHECKOUT:?}/wiki/src/inc/trace" && ( @@ -1085,8 +1085,6 @@ candidate): ## Announce, seed and test the Torrents -Skip this section if [[!tails_ticket 16378]] is not resolved yet. - Check if there's enough space on our Bittorrent seed to import the new ISO and USB images: diff --git a/wiki/src/inc/stable_amd64_date.html b/wiki/src/inc/stable_amd64_date.html index 7c80f0977131c052cbf5bb9efa14d80383b30393..6f5ec6758ad99540fb3d7f11e2b17dabd249fc77 100644 --- a/wiki/src/inc/stable_amd64_date.html +++ b/wiki/src/inc/stable_amd64_date.html @@ -1 +1 @@ -2019-05-21 \ No newline at end of file +2019-06-20 \ No newline at end of file diff --git a/wiki/src/inc/stable_amd64_img_gpg_signature_output.html b/wiki/src/inc/stable_amd64_img_gpg_signature_output.html index 570a3150fa0ce79278ac8113955f09e1740e47d6..27fc6967cc34d56e7e8b8cf7f6fc618d5bc9cdad 100644 --- a/wiki/src/inc/stable_amd64_img_gpg_signature_output.html +++ b/wiki/src/inc/stable_amd64_img_gpg_signature_output.html @@ -1,4 +1,4 @@ -gpg: Signature made Mon May 20 20:06:22 2019 UTC<br/> -gpg: using RSA key FE029CB4AAD4788E1D7828E8A8B0F4E45B1B50E2<br/> +gpg: Signature made 2019-06-19T14:46:21 UTC<br/> +gpg: using RSA key 05469FB85EAD6589B43D41D3D21DAD38AF281C0B<br/> gpg: Good signature from "Tails developers (offline long-term identity key) <tails@boum.org>" [full]<br/> gpg: aka "Tails developers <tails@boum.org>" [full]<br/> diff --git a/wiki/src/inc/stable_amd64_img_gpg_verify.html b/wiki/src/inc/stable_amd64_img_gpg_verify.html index c0f7ffda4b3a5764d8d50994a57a25d32c474be7..e6a1937914b197b5450c52bd062d7ae67a4ece15 100644 --- a/wiki/src/inc/stable_amd64_img_gpg_verify.html +++ b/wiki/src/inc/stable_amd64_img_gpg_verify.html @@ -1 +1 @@ -TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-3.14.img.sig tails-amd64-3.14.img +TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-3.14.1.img.sig tails-amd64-3.14.1.img diff --git a/wiki/src/inc/stable_amd64_img_sig_url.html b/wiki/src/inc/stable_amd64_img_sig_url.html index d2493a6fff7f54652d35841849671cf241ff18d9..fbc17b58efced8f2a201a7625fc7373eb751ae40 100644 --- a/wiki/src/inc/stable_amd64_img_sig_url.html +++ b/wiki/src/inc/stable_amd64_img_sig_url.html @@ -1 +1 @@ -https://tails.boum.org/torrents/files/tails-amd64-3.14.img.sig +https://tails.boum.org/torrents/files/tails-amd64-3.14.1.img.sig diff --git a/wiki/src/inc/stable_amd64_img_torrent_url.html b/wiki/src/inc/stable_amd64_img_torrent_url.html index bf214c6a5b1b25ad8e4ab01559591a1b686d9c24..630a9a8c4bc4552096c51239e33f823166c0a84f 100644 --- a/wiki/src/inc/stable_amd64_img_torrent_url.html +++ b/wiki/src/inc/stable_amd64_img_torrent_url.html @@ -1 +1 @@ -https://tails.boum.org/torrents/files/tails-amd64-3.14.img.torrent +https://tails.boum.org/torrents/files/tails-amd64-3.14.1.img.torrent diff --git a/wiki/src/inc/stable_amd64_img_url.html b/wiki/src/inc/stable_amd64_img_url.html index b2a7d86e66420b71f9ed8baf202466e5d32e15f9..5ff4343aa0add6832a49f6c2e66abb7b22486127 100644 --- a/wiki/src/inc/stable_amd64_img_url.html +++ b/wiki/src/inc/stable_amd64_img_url.html @@ -1 +1 @@ -http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14/tails-amd64-3.14.img +http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14.1/tails-amd64-3.14.1.img diff --git a/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html b/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html index eeb8b8e0427566ae3f3836ab174362eef2f98f9d..8972f373817865dbbf9dab85f912b1ecfcc1b08d 100644 --- a/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html +++ b/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html @@ -1,4 +1,4 @@ -gpg: Signature made Mon May 20 20:06:11 2019 UTC<br/> -gpg: using RSA key FE029CB4AAD4788E1D7828E8A8B0F4E45B1B50E2<br/> +gpg: Signature made 2019-06-19T14:46:05 UTC<br/> +gpg: using RSA key 05469FB85EAD6589B43D41D3D21DAD38AF281C0B<br/> gpg: Good signature from "Tails developers (offline long-term identity key) <tails@boum.org>" [full]<br/> gpg: aka "Tails developers <tails@boum.org>" [full]<br/> diff --git a/wiki/src/inc/stable_amd64_iso_gpg_verify.html b/wiki/src/inc/stable_amd64_iso_gpg_verify.html index b5f02b29e2593230ed545a35fd54f3ae024e7450..49b19cb076cc0c7ab72a2314f5beef5bb11e52c8 100644 --- a/wiki/src/inc/stable_amd64_iso_gpg_verify.html +++ b/wiki/src/inc/stable_amd64_iso_gpg_verify.html @@ -1 +1 @@ -TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-3.14.iso.sig tails-amd64-3.14.iso +TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-3.14.1.iso.sig tails-amd64-3.14.1.iso diff --git a/wiki/src/inc/stable_amd64_iso_sig_url.html b/wiki/src/inc/stable_amd64_iso_sig_url.html index d4714e67cd063d358b9755896ddf9bed79f90904..014f1be814fb0e6fe418f1765c3a9bb801639b00 100644 --- a/wiki/src/inc/stable_amd64_iso_sig_url.html +++ b/wiki/src/inc/stable_amd64_iso_sig_url.html @@ -1 +1 @@ -https://tails.boum.org/torrents/files/tails-amd64-3.14.iso.sig +https://tails.boum.org/torrents/files/tails-amd64-3.14.1.iso.sig diff --git a/wiki/src/inc/stable_amd64_iso_torrent_url.html b/wiki/src/inc/stable_amd64_iso_torrent_url.html index e3cb826fbe27a37adac28a8dd312fc88be50e3e3..d1213679ef905aba9b86a669807ac214c51ceaeb 100644 --- a/wiki/src/inc/stable_amd64_iso_torrent_url.html +++ b/wiki/src/inc/stable_amd64_iso_torrent_url.html @@ -1 +1 @@ -https://tails.boum.org/torrents/files/tails-amd64-3.14.iso.torrent +https://tails.boum.org/torrents/files/tails-amd64-3.14.1.iso.torrent diff --git a/wiki/src/inc/stable_amd64_iso_url.html b/wiki/src/inc/stable_amd64_iso_url.html index 2eaace41ff64af410470aae891802be456f7dba0..3f30b05ff959158968e2f07ea65ec13fb161744e 100644 --- a/wiki/src/inc/stable_amd64_iso_url.html +++ b/wiki/src/inc/stable_amd64_iso_url.html @@ -1 +1 @@ -http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14/tails-amd64-3.14.iso +http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14.1/tails-amd64-3.14.1.iso diff --git a/wiki/src/inc/stable_amd64_version.html b/wiki/src/inc/stable_amd64_version.html index 6324d401a069f4020efcf0ff07442724b52f47c2..49547fdca4fcf38dd0f0807c3bc9e25d27b50544 100644 --- a/wiki/src/inc/stable_amd64_version.html +++ b/wiki/src/inc/stable_amd64_version.html @@ -1 +1 @@ -3.14 +3.14.1 diff --git a/wiki/src/inc/trace b/wiki/src/inc/trace index ed2a02ef6e80dec332251e2dc117b85d75b1f919..16335042fcb2cb2ccc56371bc3aea40246f58672 100644 --- a/wiki/src/inc/trace +++ b/wiki/src/inc/trace @@ -1 +1 @@ -1558389341 +1560958749 diff --git a/wiki/src/install/v2/Tails/amd64/stable/latest.json b/wiki/src/install/v2/Tails/amd64/stable/latest.json index efaf5881f98a60a29820433462d531845f5ee7bc..3af2df403628fe849b1fdce31da9dfe2eb8cecc3 100644 --- a/wiki/src/install/v2/Tails/amd64/stable/latest.json +++ b/wiki/src/install/v2/Tails/amd64/stable/latest.json @@ -7,9 +7,9 @@ { "target-files": [ { - "sha256": "5a9a4c93f6b5ff7df2c82dbc2567df9996fa6904500fbced82e9e5e39885b252", + "sha256": "01f1a13ea6debb5b57c6721f572ad5e2205aef19097d78679702a246c04a47fb", "size": 1194328064, - "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14/tails-amd64-3.14.img" + "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14.1/tails-amd64-3.14.1.img" } ], "type": "img" @@ -17,15 +17,15 @@ { "target-files": [ { - "sha256": "db45891b088a1cf9b8eb04dbb1a30c54ab33ead8c60cbed4063f5ccbba3f72eb", + "sha256": "677793964c54daeb8dfd0deaa84a84a1528e7ff1ef2285cf53a97eef41c9ba48", "size": 1184440320, - "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14/tails-amd64-3.14.iso" + "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14.1/tails-amd64-3.14.1.iso" } ], "type": "iso" } ], - "version": "3.14" + "version": "3.14.1" } ], "product-name": "Tails" diff --git a/wiki/src/news/version_3.14.1.de.po b/wiki/src/news/version_3.14.1.de.po new file mode 100644 index 0000000000000000000000000000000000000000..8f32f209c207cd8ecb9c702a14fc071283897422 --- /dev/null +++ b/wiki/src/news/version_3.14.1.de.po @@ -0,0 +1,344 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 20 Jun 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 3.14.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +msgid "" +"It also fixes [[other security vulnerabilities|security/" +"Numerous_security_holes_in_3.14]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Critical security vulnerabilities in *Tor Browser*" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed arbitrary code execution" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "**This vulnerability is fixed in Tails 3.14.1.**\n" +msgstr "" + +#. type: Plain text +msgid "" +"A [critical vulnerability](https://www.mozilla.org/en-US/security/advisories/" +"mfsa2019-18/) was discovered in the JavaScript engine of *Firefox* and *Tor " +"Browser*. This vulnerability allowed a malicious website to execute " +"arbitrary code, which means possibly taking over your browser and turning it " +"into a malicious application." +msgstr "" + +#. type: Plain text +msgid "" +"This vulnerability has already been used to [target employees of the " +"Coinbase cryptocurrency exchange](https://www.zdnet.com/article/firefox-zero-" +"day-was-used-in-attack-against-coinbase-employees-not-its-users/)." +msgstr "" + +#. type: Plain text +msgid "" +"People using the *Safer* or *Safest* [[security level of *Tor Browser*|doc/" +"anonymous_internet/Tor_Browser#security_level]] are not affected because the " +"feature of JavaScript that is affected (the *[[!wikipedia just-in-time " +"compilation]]*) is disabled in these security levels." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using *AppArmor*|doc/" +"anonymous_internet/Tor_Browser#confinement]], the impact of this " +"vulnerability in Tails is less than in other operating systems. For " +"example, an exploited *Tor Browser* in Tails could have accessed your files " +"in the *Tor Browser* and *Persistent/Tor Browser* folders but not anywhere " +"else." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Unfixed sandbox escape" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p><strong>This second vulnerability is still affecting Tails 3.14.1 and\n" +"<em>Tor Browser</em> is unsafe to use in most cases.</strong></p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p>We will fix it as soon as possible.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"We might update our analysis or announce an emergency release soon in our " +"[[security advisory|security/sandbox_escape_in_tor_browser]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [8.5.2](https://blog.torproject.org/new-release-tor-" +"browser-852)." +msgstr "" + +#. type: Plain text +msgid "- Update *Tor* to 0.4.0.5." +msgstr "" + +#. type: Plain text +msgid "" +"- Upgrade *Thunderbird* to [60.7.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.7.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" +msgstr "" + +#. type: Plain text +msgid "" +"On some computers, after installing Tails to a USB stick, Tails starts a " +"first time but fails to start a second time. In some cases, only BIOS " +"(Legacy) was affected and the USB stick was not listed in the Boot Menu." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We partially fix this issue in 3.14.1 but are still investigating it, so if it happens to you, please\n" +"report your findings by email to <tails-testers@boum.org>. Mention the\n" +"model of the computer and the USB stick. This mailing\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" +msgstr "" + +#. type: Plain text +msgid "To fix this issue:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Reinstall your USB stick using the same installation method." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Execute the following command:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n" +msgstr "" + +#. type: Plain text +msgid "You can also test an experimental image:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Install it using the same installation methods." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We don't provide any OpenPGP signature or other verification technique\n" +" for this test image. Please only use it for testing.\n" +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 3.14.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "" +"- Automatic upgrades are available from 3.13, 3.13.1, 3.13.2, and 3.14 to " +"3.14.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|upgrade]]." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 3.14.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 3.15 is [[scheduled|contribute/calendar]] for July 9." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We need your help and there are many ways to [[contribute to\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.14.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_3.14.1.es.po b/wiki/src/news/version_3.14.1.es.po new file mode 100644 index 0000000000000000000000000000000000000000..8f32f209c207cd8ecb9c702a14fc071283897422 --- /dev/null +++ b/wiki/src/news/version_3.14.1.es.po @@ -0,0 +1,344 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 20 Jun 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 3.14.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +msgid "" +"It also fixes [[other security vulnerabilities|security/" +"Numerous_security_holes_in_3.14]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Critical security vulnerabilities in *Tor Browser*" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed arbitrary code execution" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "**This vulnerability is fixed in Tails 3.14.1.**\n" +msgstr "" + +#. type: Plain text +msgid "" +"A [critical vulnerability](https://www.mozilla.org/en-US/security/advisories/" +"mfsa2019-18/) was discovered in the JavaScript engine of *Firefox* and *Tor " +"Browser*. This vulnerability allowed a malicious website to execute " +"arbitrary code, which means possibly taking over your browser and turning it " +"into a malicious application." +msgstr "" + +#. type: Plain text +msgid "" +"This vulnerability has already been used to [target employees of the " +"Coinbase cryptocurrency exchange](https://www.zdnet.com/article/firefox-zero-" +"day-was-used-in-attack-against-coinbase-employees-not-its-users/)." +msgstr "" + +#. type: Plain text +msgid "" +"People using the *Safer* or *Safest* [[security level of *Tor Browser*|doc/" +"anonymous_internet/Tor_Browser#security_level]] are not affected because the " +"feature of JavaScript that is affected (the *[[!wikipedia just-in-time " +"compilation]]*) is disabled in these security levels." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using *AppArmor*|doc/" +"anonymous_internet/Tor_Browser#confinement]], the impact of this " +"vulnerability in Tails is less than in other operating systems. For " +"example, an exploited *Tor Browser* in Tails could have accessed your files " +"in the *Tor Browser* and *Persistent/Tor Browser* folders but not anywhere " +"else." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Unfixed sandbox escape" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p><strong>This second vulnerability is still affecting Tails 3.14.1 and\n" +"<em>Tor Browser</em> is unsafe to use in most cases.</strong></p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p>We will fix it as soon as possible.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"We might update our analysis or announce an emergency release soon in our " +"[[security advisory|security/sandbox_escape_in_tor_browser]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [8.5.2](https://blog.torproject.org/new-release-tor-" +"browser-852)." +msgstr "" + +#. type: Plain text +msgid "- Update *Tor* to 0.4.0.5." +msgstr "" + +#. type: Plain text +msgid "" +"- Upgrade *Thunderbird* to [60.7.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.7.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" +msgstr "" + +#. type: Plain text +msgid "" +"On some computers, after installing Tails to a USB stick, Tails starts a " +"first time but fails to start a second time. In some cases, only BIOS " +"(Legacy) was affected and the USB stick was not listed in the Boot Menu." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We partially fix this issue in 3.14.1 but are still investigating it, so if it happens to you, please\n" +"report your findings by email to <tails-testers@boum.org>. Mention the\n" +"model of the computer and the USB stick. This mailing\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" +msgstr "" + +#. type: Plain text +msgid "To fix this issue:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Reinstall your USB stick using the same installation method." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Execute the following command:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n" +msgstr "" + +#. type: Plain text +msgid "You can also test an experimental image:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Install it using the same installation methods." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We don't provide any OpenPGP signature or other verification technique\n" +" for this test image. Please only use it for testing.\n" +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 3.14.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "" +"- Automatic upgrades are available from 3.13, 3.13.1, 3.13.2, and 3.14 to " +"3.14.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|upgrade]]." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 3.14.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 3.15 is [[scheduled|contribute/calendar]] for July 9." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We need your help and there are many ways to [[contribute to\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.14.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_3.14.1.fa.po b/wiki/src/news/version_3.14.1.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..8f32f209c207cd8ecb9c702a14fc071283897422 --- /dev/null +++ b/wiki/src/news/version_3.14.1.fa.po @@ -0,0 +1,344 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 20 Jun 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 3.14.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +msgid "" +"It also fixes [[other security vulnerabilities|security/" +"Numerous_security_holes_in_3.14]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Critical security vulnerabilities in *Tor Browser*" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed arbitrary code execution" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "**This vulnerability is fixed in Tails 3.14.1.**\n" +msgstr "" + +#. type: Plain text +msgid "" +"A [critical vulnerability](https://www.mozilla.org/en-US/security/advisories/" +"mfsa2019-18/) was discovered in the JavaScript engine of *Firefox* and *Tor " +"Browser*. This vulnerability allowed a malicious website to execute " +"arbitrary code, which means possibly taking over your browser and turning it " +"into a malicious application." +msgstr "" + +#. type: Plain text +msgid "" +"This vulnerability has already been used to [target employees of the " +"Coinbase cryptocurrency exchange](https://www.zdnet.com/article/firefox-zero-" +"day-was-used-in-attack-against-coinbase-employees-not-its-users/)." +msgstr "" + +#. type: Plain text +msgid "" +"People using the *Safer* or *Safest* [[security level of *Tor Browser*|doc/" +"anonymous_internet/Tor_Browser#security_level]] are not affected because the " +"feature of JavaScript that is affected (the *[[!wikipedia just-in-time " +"compilation]]*) is disabled in these security levels." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using *AppArmor*|doc/" +"anonymous_internet/Tor_Browser#confinement]], the impact of this " +"vulnerability in Tails is less than in other operating systems. For " +"example, an exploited *Tor Browser* in Tails could have accessed your files " +"in the *Tor Browser* and *Persistent/Tor Browser* folders but not anywhere " +"else." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Unfixed sandbox escape" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p><strong>This second vulnerability is still affecting Tails 3.14.1 and\n" +"<em>Tor Browser</em> is unsafe to use in most cases.</strong></p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p>We will fix it as soon as possible.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"We might update our analysis or announce an emergency release soon in our " +"[[security advisory|security/sandbox_escape_in_tor_browser]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [8.5.2](https://blog.torproject.org/new-release-tor-" +"browser-852)." +msgstr "" + +#. type: Plain text +msgid "- Update *Tor* to 0.4.0.5." +msgstr "" + +#. type: Plain text +msgid "" +"- Upgrade *Thunderbird* to [60.7.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.7.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" +msgstr "" + +#. type: Plain text +msgid "" +"On some computers, after installing Tails to a USB stick, Tails starts a " +"first time but fails to start a second time. In some cases, only BIOS " +"(Legacy) was affected and the USB stick was not listed in the Boot Menu." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We partially fix this issue in 3.14.1 but are still investigating it, so if it happens to you, please\n" +"report your findings by email to <tails-testers@boum.org>. Mention the\n" +"model of the computer and the USB stick. This mailing\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" +msgstr "" + +#. type: Plain text +msgid "To fix this issue:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Reinstall your USB stick using the same installation method." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Execute the following command:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n" +msgstr "" + +#. type: Plain text +msgid "You can also test an experimental image:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Install it using the same installation methods." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We don't provide any OpenPGP signature or other verification technique\n" +" for this test image. Please only use it for testing.\n" +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 3.14.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "" +"- Automatic upgrades are available from 3.13, 3.13.1, 3.13.2, and 3.14 to " +"3.14.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|upgrade]]." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 3.14.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 3.15 is [[scheduled|contribute/calendar]] for July 9." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We need your help and there are many ways to [[contribute to\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.14.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_3.14.1.fr.po b/wiki/src/news/version_3.14.1.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..8f32f209c207cd8ecb9c702a14fc071283897422 --- /dev/null +++ b/wiki/src/news/version_3.14.1.fr.po @@ -0,0 +1,344 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 20 Jun 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 3.14.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +msgid "" +"It also fixes [[other security vulnerabilities|security/" +"Numerous_security_holes_in_3.14]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Critical security vulnerabilities in *Tor Browser*" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed arbitrary code execution" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "**This vulnerability is fixed in Tails 3.14.1.**\n" +msgstr "" + +#. type: Plain text +msgid "" +"A [critical vulnerability](https://www.mozilla.org/en-US/security/advisories/" +"mfsa2019-18/) was discovered in the JavaScript engine of *Firefox* and *Tor " +"Browser*. This vulnerability allowed a malicious website to execute " +"arbitrary code, which means possibly taking over your browser and turning it " +"into a malicious application." +msgstr "" + +#. type: Plain text +msgid "" +"This vulnerability has already been used to [target employees of the " +"Coinbase cryptocurrency exchange](https://www.zdnet.com/article/firefox-zero-" +"day-was-used-in-attack-against-coinbase-employees-not-its-users/)." +msgstr "" + +#. type: Plain text +msgid "" +"People using the *Safer* or *Safest* [[security level of *Tor Browser*|doc/" +"anonymous_internet/Tor_Browser#security_level]] are not affected because the " +"feature of JavaScript that is affected (the *[[!wikipedia just-in-time " +"compilation]]*) is disabled in these security levels." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using *AppArmor*|doc/" +"anonymous_internet/Tor_Browser#confinement]], the impact of this " +"vulnerability in Tails is less than in other operating systems. For " +"example, an exploited *Tor Browser* in Tails could have accessed your files " +"in the *Tor Browser* and *Persistent/Tor Browser* folders but not anywhere " +"else." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Unfixed sandbox escape" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p><strong>This second vulnerability is still affecting Tails 3.14.1 and\n" +"<em>Tor Browser</em> is unsafe to use in most cases.</strong></p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p>We will fix it as soon as possible.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"We might update our analysis or announce an emergency release soon in our " +"[[security advisory|security/sandbox_escape_in_tor_browser]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [8.5.2](https://blog.torproject.org/new-release-tor-" +"browser-852)." +msgstr "" + +#. type: Plain text +msgid "- Update *Tor* to 0.4.0.5." +msgstr "" + +#. type: Plain text +msgid "" +"- Upgrade *Thunderbird* to [60.7.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.7.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" +msgstr "" + +#. type: Plain text +msgid "" +"On some computers, after installing Tails to a USB stick, Tails starts a " +"first time but fails to start a second time. In some cases, only BIOS " +"(Legacy) was affected and the USB stick was not listed in the Boot Menu." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We partially fix this issue in 3.14.1 but are still investigating it, so if it happens to you, please\n" +"report your findings by email to <tails-testers@boum.org>. Mention the\n" +"model of the computer and the USB stick. This mailing\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" +msgstr "" + +#. type: Plain text +msgid "To fix this issue:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Reinstall your USB stick using the same installation method." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Execute the following command:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n" +msgstr "" + +#. type: Plain text +msgid "You can also test an experimental image:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Install it using the same installation methods." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We don't provide any OpenPGP signature or other verification technique\n" +" for this test image. Please only use it for testing.\n" +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 3.14.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "" +"- Automatic upgrades are available from 3.13, 3.13.1, 3.13.2, and 3.14 to " +"3.14.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|upgrade]]." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 3.14.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 3.15 is [[scheduled|contribute/calendar]] for July 9." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We need your help and there are many ways to [[contribute to\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.14.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_3.14.1.it.po b/wiki/src/news/version_3.14.1.it.po new file mode 100644 index 0000000000000000000000000000000000000000..8f32f209c207cd8ecb9c702a14fc071283897422 --- /dev/null +++ b/wiki/src/news/version_3.14.1.it.po @@ -0,0 +1,344 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 20 Jun 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 3.14.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +msgid "" +"It also fixes [[other security vulnerabilities|security/" +"Numerous_security_holes_in_3.14]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Critical security vulnerabilities in *Tor Browser*" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed arbitrary code execution" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "**This vulnerability is fixed in Tails 3.14.1.**\n" +msgstr "" + +#. type: Plain text +msgid "" +"A [critical vulnerability](https://www.mozilla.org/en-US/security/advisories/" +"mfsa2019-18/) was discovered in the JavaScript engine of *Firefox* and *Tor " +"Browser*. This vulnerability allowed a malicious website to execute " +"arbitrary code, which means possibly taking over your browser and turning it " +"into a malicious application." +msgstr "" + +#. type: Plain text +msgid "" +"This vulnerability has already been used to [target employees of the " +"Coinbase cryptocurrency exchange](https://www.zdnet.com/article/firefox-zero-" +"day-was-used-in-attack-against-coinbase-employees-not-its-users/)." +msgstr "" + +#. type: Plain text +msgid "" +"People using the *Safer* or *Safest* [[security level of *Tor Browser*|doc/" +"anonymous_internet/Tor_Browser#security_level]] are not affected because the " +"feature of JavaScript that is affected (the *[[!wikipedia just-in-time " +"compilation]]*) is disabled in these security levels." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using *AppArmor*|doc/" +"anonymous_internet/Tor_Browser#confinement]], the impact of this " +"vulnerability in Tails is less than in other operating systems. For " +"example, an exploited *Tor Browser* in Tails could have accessed your files " +"in the *Tor Browser* and *Persistent/Tor Browser* folders but not anywhere " +"else." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Unfixed sandbox escape" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p><strong>This second vulnerability is still affecting Tails 3.14.1 and\n" +"<em>Tor Browser</em> is unsafe to use in most cases.</strong></p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p>We will fix it as soon as possible.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"We might update our analysis or announce an emergency release soon in our " +"[[security advisory|security/sandbox_escape_in_tor_browser]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [8.5.2](https://blog.torproject.org/new-release-tor-" +"browser-852)." +msgstr "" + +#. type: Plain text +msgid "- Update *Tor* to 0.4.0.5." +msgstr "" + +#. type: Plain text +msgid "" +"- Upgrade *Thunderbird* to [60.7.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.7.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" +msgstr "" + +#. type: Plain text +msgid "" +"On some computers, after installing Tails to a USB stick, Tails starts a " +"first time but fails to start a second time. In some cases, only BIOS " +"(Legacy) was affected and the USB stick was not listed in the Boot Menu." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We partially fix this issue in 3.14.1 but are still investigating it, so if it happens to you, please\n" +"report your findings by email to <tails-testers@boum.org>. Mention the\n" +"model of the computer and the USB stick. This mailing\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" +msgstr "" + +#. type: Plain text +msgid "To fix this issue:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Reinstall your USB stick using the same installation method." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Execute the following command:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n" +msgstr "" + +#. type: Plain text +msgid "You can also test an experimental image:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Install it using the same installation methods." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We don't provide any OpenPGP signature or other verification technique\n" +" for this test image. Please only use it for testing.\n" +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 3.14.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "" +"- Automatic upgrades are available from 3.13, 3.13.1, 3.13.2, and 3.14 to " +"3.14.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|upgrade]]." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 3.14.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 3.15 is [[scheduled|contribute/calendar]] for July 9." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We need your help and there are many ways to [[contribute to\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.14.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_3.14.1.mdwn b/wiki/src/news/version_3.14.1.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..7e58205bb8d14c726d2a4db86af6d453df973e2c --- /dev/null +++ b/wiki/src/news/version_3.14.1.mdwn @@ -0,0 +1,149 @@ +[[!meta date="Tue, 20 Jun 2019 12:34:56 +0000"]] +[[!meta title="Tails 3.14.1 is out"]] +[[!pagetemplate template="news.tmpl"]] +[[!tag announce]] + +This release is an emergency release to fix a critical security +vulnerability in *Tor Browser*. + +It also fixes [[other security +vulnerabilities|security/Numerous_security_holes_in_3.14]]. You should upgrade as soon as possible. + +[[!toc levels=1]] + +# Critical security vulnerabilities in *Tor Browser* + +## Fixed arbitrary code execution + +**This vulnerability is fixed in Tails 3.14.1.** + +A [critical vulnerability](https://www.mozilla.org/en-US/security/advisories/mfsa2019-18/) +was discovered in the JavaScript engine of *Firefox* and *Tor Browser*. +This vulnerability allowed a malicious website to execute arbitrary +code, which means possibly taking over your browser and turning it into +a malicious application. + +This vulnerability has already been used to +[target employees of the Coinbase cryptocurrency exchange](https://www.zdnet.com/article/firefox-zero-day-was-used-in-attack-against-coinbase-employees-not-its-users/). + +People using the *Safer* or *Safest* [[security level of *Tor +Browser*|doc/anonymous_internet/Tor_Browser#security_level]] are not +affected because the feature of JavaScript that is affected (the +*[[!wikipedia just-in-time compilation]]*) is disabled in these security +levels. + +Because *Tor Browser* in Tails is [[confined using +*AppArmor*|doc/anonymous_internet/Tor_Browser#confinement]], the impact +of this vulnerability in Tails is less than in other operating systems. +For example, an exploited *Tor Browser* in Tails could have accessed +your files in the *Tor Browser* and *Persistent/Tor Browser* folders but +not anywhere else. + +## Unfixed sandbox escape + +<div class="caution"> + +<p><strong>This second vulnerability is still affecting Tails 3.14.1 and +<em>Tor Browser</em> is unsafe to use in most cases.</strong></p> + +<p>We will fix it as soon as possible.</p> + +</div> + +[[!inline pages="news/version_3.14.1/sandbox_escape.inline" raw="yes" sort="age"]] + +We might update our analysis or announce an emergency release soon in +our [[security advisory|security/sandbox_escape_in_tor_browser]]. + +# Upgrades and changes + +- Update *Tor Browser* to + [8.5.2](https://blog.torproject.org/new-release-tor-browser-852). + +- Update *Tor* to 0.4.0.5. + +- Upgrade *Thunderbird* to [60.7.0](https://www.thunderbird.net/en-US/thunderbird/60.7.0/releasenotes/). + +For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]]. + +<a id="known-issues"></a> + +# Known issues + +## Tails fails to start a second time on some computers ([[!tails_ticket 16389]]) + +On some computers, after installing Tails to a USB stick, +Tails starts a first time but fails to start a second time. In some +cases, only BIOS (Legacy) was affected and the USB stick was not listed +in the Boot Menu. + +We partially fix this issue in 3.14.1 but are still investigating it, so if it happens to you, please +report your findings by email to <tails-testers@boum.org>. Mention the +model of the computer and the USB stick. This mailing +list is [archived publicly](https://lists.autistici.org/list/tails-testers.html). + +To fix this issue: + +1. Reinstall your USB stick using the same installation method. + +1. Start Tails for the first time and [[set up an administration + password|doc/first_steps/startup_options/administration_password]]. + +1. Choose <span class="menuchoice"> + <span class="guimenu">Applications</span> ▸ + <span class="guisubmenu">System Tools</span> ▸ + <span class="guimenuitem">Root Terminal</span> + </span> to open a <span class="application">Root Terminal</span>. + +1. Execute the following command: + + <p class="pre command">sgdisk --recompute-chs /dev/bilibop</p> + +You can also test an experimental image: + +1. [Download the *.img* file from our development + server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/). + +1. Install it using the same installation methods. + + We don't provide any OpenPGP signature or other verification technique + for this test image. Please only use it for testing. + +See the list of [[long-standing issues|support/known_issues]]. + +# Get Tails 3.14.1 + +## To upgrade your Tails USB stick and keep your persistent storage + +- Automatic upgrades are available from 3.13, 3.13.1, 3.13.2, and 3.14 to 3.14.1. + +- If you cannot do an automatic upgrade or if Tails fails to start after an + automatic upgrade, please try to do a [[manual upgrade|upgrade]]. + +## To install Tails on a new USB stick + +Follow our installation instructions: + + - [[Install from Windows|install/win]] + - [[Install from macOS|install/mac]] + - [[Install from Linux|install/linux]] + +<div class="caution"><p>All the data on this USB stick will be lost.</p></div> + +## To download only + +If you don't need installation or upgrade instructions, you can directly download +Tails 3.14.1: + + - [[For USB sticks (USB image)|install/download]] + - [[For DVDs and virtual machines (ISO image)|install/download-iso]] + +# What's coming up? + +Tails 3.15 is [[scheduled|contribute/calendar]] for July 9. + +Have a look at our [[!tails_roadmap]] to see where we are heading to. + +We need your help and there are many ways to [[contribute to +Tails|contribute]] (<a href="https://tails.boum.org/donate/?r=3.14.1">donating</a> is only one of +them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/version_3.14.1.pt.po b/wiki/src/news/version_3.14.1.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..8f32f209c207cd8ecb9c702a14fc071283897422 --- /dev/null +++ b/wiki/src/news/version_3.14.1.pt.po @@ -0,0 +1,344 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 20 Jun 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 3.14.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +msgid "" +"It also fixes [[other security vulnerabilities|security/" +"Numerous_security_holes_in_3.14]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Critical security vulnerabilities in *Tor Browser*" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed arbitrary code execution" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "**This vulnerability is fixed in Tails 3.14.1.**\n" +msgstr "" + +#. type: Plain text +msgid "" +"A [critical vulnerability](https://www.mozilla.org/en-US/security/advisories/" +"mfsa2019-18/) was discovered in the JavaScript engine of *Firefox* and *Tor " +"Browser*. This vulnerability allowed a malicious website to execute " +"arbitrary code, which means possibly taking over your browser and turning it " +"into a malicious application." +msgstr "" + +#. type: Plain text +msgid "" +"This vulnerability has already been used to [target employees of the " +"Coinbase cryptocurrency exchange](https://www.zdnet.com/article/firefox-zero-" +"day-was-used-in-attack-against-coinbase-employees-not-its-users/)." +msgstr "" + +#. type: Plain text +msgid "" +"People using the *Safer* or *Safest* [[security level of *Tor Browser*|doc/" +"anonymous_internet/Tor_Browser#security_level]] are not affected because the " +"feature of JavaScript that is affected (the *[[!wikipedia just-in-time " +"compilation]]*) is disabled in these security levels." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using *AppArmor*|doc/" +"anonymous_internet/Tor_Browser#confinement]], the impact of this " +"vulnerability in Tails is less than in other operating systems. For " +"example, an exploited *Tor Browser* in Tails could have accessed your files " +"in the *Tor Browser* and *Persistent/Tor Browser* folders but not anywhere " +"else." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Unfixed sandbox escape" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p><strong>This second vulnerability is still affecting Tails 3.14.1 and\n" +"<em>Tor Browser</em> is unsafe to use in most cases.</strong></p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p>We will fix it as soon as possible.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"We might update our analysis or announce an emergency release soon in our " +"[[security advisory|security/sandbox_escape_in_tor_browser]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [8.5.2](https://blog.torproject.org/new-release-tor-" +"browser-852)." +msgstr "" + +#. type: Plain text +msgid "- Update *Tor* to 0.4.0.5." +msgstr "" + +#. type: Plain text +msgid "" +"- Upgrade *Thunderbird* to [60.7.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.7.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" +msgstr "" + +#. type: Plain text +msgid "" +"On some computers, after installing Tails to a USB stick, Tails starts a " +"first time but fails to start a second time. In some cases, only BIOS " +"(Legacy) was affected and the USB stick was not listed in the Boot Menu." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We partially fix this issue in 3.14.1 but are still investigating it, so if it happens to you, please\n" +"report your findings by email to <tails-testers@boum.org>. Mention the\n" +"model of the computer and the USB stick. This mailing\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" +msgstr "" + +#. type: Plain text +msgid "To fix this issue:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Reinstall your USB stick using the same installation method." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Execute the following command:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n" +msgstr "" + +#. type: Plain text +msgid "You can also test an experimental image:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Install it using the same installation methods." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We don't provide any OpenPGP signature or other verification technique\n" +" for this test image. Please only use it for testing.\n" +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 3.14.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "" +"- Automatic upgrades are available from 3.13, 3.13.1, 3.13.2, and 3.14 to " +"3.14.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|upgrade]]." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 3.14.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 3.15 is [[scheduled|contribute/calendar]] for July 9." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"We need your help and there are many ways to [[contribute to\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.14.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_3.14.1/sandbox_escape.inline.de.po b/wiki/src/news/version_3.14.1/sandbox_escape.inline.de.po new file mode 100644 index 0000000000000000000000000000000000000000..a1abcf7437d026e3483b275fc75f24a70df43e62 --- /dev/null +++ b/wiki/src/news/version_3.14.1/sandbox_escape.inline.de.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +msgid "" +"A security vulnerability was discovered in the sandboxing mechanism of " +"*Firefox* and *Tor Browser*. This vulnerability allows a malicious website " +"to bypass some of the confinement built in *Firefox*, which means possibly " +"spying on the content of other tabs and steal the passwords of other " +"websites." +msgstr "" + +#. type: Plain text +msgid "" +"After *Tor Browser* has been compromised, the only reliable solution is to " +"restart Tails." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using " +"*AppArmor*|doc/anonymous_internet/Tor_Browser#confinement]], only the data " +"accessible to *Tor Browser* might be compromised but not the other " +"applications or your other files. For example, a compromised *Tor Browser* " +"might access your files in the *Tor Browser* and *Persistent/Tor Browser* " +"folders but not anywhere else." +msgstr "" + +#. type: Plain text +msgid "For example, without restarting Tails:" +msgstr "" + +#. type: Plain text +msgid "- It is unsafe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Log in to a website and also visit an untrusted website. Your password on " +"the first website might be stolen by the untrusted website." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit an untrusted website if you have sensitive information stored in your " +"*Persistent/Tor Browser* folder. The untrusted website might access these " +"files." +msgstr "" + +#. type: Plain text +msgid "- It is safe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit untrusted websites, without logging in, if you have no sensitive " +"information stored in your *Tor Browser* and *Persistent/Tor Browser* " +"folders." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Log in to several trusted websites without visiting any untrusted websites." +msgstr "" diff --git a/wiki/src/news/version_3.14.1/sandbox_escape.inline.es.po b/wiki/src/news/version_3.14.1/sandbox_escape.inline.es.po new file mode 100644 index 0000000000000000000000000000000000000000..a1abcf7437d026e3483b275fc75f24a70df43e62 --- /dev/null +++ b/wiki/src/news/version_3.14.1/sandbox_escape.inline.es.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +msgid "" +"A security vulnerability was discovered in the sandboxing mechanism of " +"*Firefox* and *Tor Browser*. This vulnerability allows a malicious website " +"to bypass some of the confinement built in *Firefox*, which means possibly " +"spying on the content of other tabs and steal the passwords of other " +"websites." +msgstr "" + +#. type: Plain text +msgid "" +"After *Tor Browser* has been compromised, the only reliable solution is to " +"restart Tails." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using " +"*AppArmor*|doc/anonymous_internet/Tor_Browser#confinement]], only the data " +"accessible to *Tor Browser* might be compromised but not the other " +"applications or your other files. For example, a compromised *Tor Browser* " +"might access your files in the *Tor Browser* and *Persistent/Tor Browser* " +"folders but not anywhere else." +msgstr "" + +#. type: Plain text +msgid "For example, without restarting Tails:" +msgstr "" + +#. type: Plain text +msgid "- It is unsafe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Log in to a website and also visit an untrusted website. Your password on " +"the first website might be stolen by the untrusted website." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit an untrusted website if you have sensitive information stored in your " +"*Persistent/Tor Browser* folder. The untrusted website might access these " +"files." +msgstr "" + +#. type: Plain text +msgid "- It is safe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit untrusted websites, without logging in, if you have no sensitive " +"information stored in your *Tor Browser* and *Persistent/Tor Browser* " +"folders." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Log in to several trusted websites without visiting any untrusted websites." +msgstr "" diff --git a/wiki/src/news/version_3.14.1/sandbox_escape.inline.fa.po b/wiki/src/news/version_3.14.1/sandbox_escape.inline.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..a1abcf7437d026e3483b275fc75f24a70df43e62 --- /dev/null +++ b/wiki/src/news/version_3.14.1/sandbox_escape.inline.fa.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +msgid "" +"A security vulnerability was discovered in the sandboxing mechanism of " +"*Firefox* and *Tor Browser*. This vulnerability allows a malicious website " +"to bypass some of the confinement built in *Firefox*, which means possibly " +"spying on the content of other tabs and steal the passwords of other " +"websites." +msgstr "" + +#. type: Plain text +msgid "" +"After *Tor Browser* has been compromised, the only reliable solution is to " +"restart Tails." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using " +"*AppArmor*|doc/anonymous_internet/Tor_Browser#confinement]], only the data " +"accessible to *Tor Browser* might be compromised but not the other " +"applications or your other files. For example, a compromised *Tor Browser* " +"might access your files in the *Tor Browser* and *Persistent/Tor Browser* " +"folders but not anywhere else." +msgstr "" + +#. type: Plain text +msgid "For example, without restarting Tails:" +msgstr "" + +#. type: Plain text +msgid "- It is unsafe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Log in to a website and also visit an untrusted website. Your password on " +"the first website might be stolen by the untrusted website." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit an untrusted website if you have sensitive information stored in your " +"*Persistent/Tor Browser* folder. The untrusted website might access these " +"files." +msgstr "" + +#. type: Plain text +msgid "- It is safe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit untrusted websites, without logging in, if you have no sensitive " +"information stored in your *Tor Browser* and *Persistent/Tor Browser* " +"folders." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Log in to several trusted websites without visiting any untrusted websites." +msgstr "" diff --git a/wiki/src/news/version_3.14.1/sandbox_escape.inline.fr.po b/wiki/src/news/version_3.14.1/sandbox_escape.inline.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..a1abcf7437d026e3483b275fc75f24a70df43e62 --- /dev/null +++ b/wiki/src/news/version_3.14.1/sandbox_escape.inline.fr.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +msgid "" +"A security vulnerability was discovered in the sandboxing mechanism of " +"*Firefox* and *Tor Browser*. This vulnerability allows a malicious website " +"to bypass some of the confinement built in *Firefox*, which means possibly " +"spying on the content of other tabs and steal the passwords of other " +"websites." +msgstr "" + +#. type: Plain text +msgid "" +"After *Tor Browser* has been compromised, the only reliable solution is to " +"restart Tails." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using " +"*AppArmor*|doc/anonymous_internet/Tor_Browser#confinement]], only the data " +"accessible to *Tor Browser* might be compromised but not the other " +"applications or your other files. For example, a compromised *Tor Browser* " +"might access your files in the *Tor Browser* and *Persistent/Tor Browser* " +"folders but not anywhere else." +msgstr "" + +#. type: Plain text +msgid "For example, without restarting Tails:" +msgstr "" + +#. type: Plain text +msgid "- It is unsafe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Log in to a website and also visit an untrusted website. Your password on " +"the first website might be stolen by the untrusted website." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit an untrusted website if you have sensitive information stored in your " +"*Persistent/Tor Browser* folder. The untrusted website might access these " +"files." +msgstr "" + +#. type: Plain text +msgid "- It is safe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit untrusted websites, without logging in, if you have no sensitive " +"information stored in your *Tor Browser* and *Persistent/Tor Browser* " +"folders." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Log in to several trusted websites without visiting any untrusted websites." +msgstr "" diff --git a/wiki/src/news/version_3.14.1/sandbox_escape.inline.it.po b/wiki/src/news/version_3.14.1/sandbox_escape.inline.it.po new file mode 100644 index 0000000000000000000000000000000000000000..a1abcf7437d026e3483b275fc75f24a70df43e62 --- /dev/null +++ b/wiki/src/news/version_3.14.1/sandbox_escape.inline.it.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +msgid "" +"A security vulnerability was discovered in the sandboxing mechanism of " +"*Firefox* and *Tor Browser*. This vulnerability allows a malicious website " +"to bypass some of the confinement built in *Firefox*, which means possibly " +"spying on the content of other tabs and steal the passwords of other " +"websites." +msgstr "" + +#. type: Plain text +msgid "" +"After *Tor Browser* has been compromised, the only reliable solution is to " +"restart Tails." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using " +"*AppArmor*|doc/anonymous_internet/Tor_Browser#confinement]], only the data " +"accessible to *Tor Browser* might be compromised but not the other " +"applications or your other files. For example, a compromised *Tor Browser* " +"might access your files in the *Tor Browser* and *Persistent/Tor Browser* " +"folders but not anywhere else." +msgstr "" + +#. type: Plain text +msgid "For example, without restarting Tails:" +msgstr "" + +#. type: Plain text +msgid "- It is unsafe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Log in to a website and also visit an untrusted website. Your password on " +"the first website might be stolen by the untrusted website." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit an untrusted website if you have sensitive information stored in your " +"*Persistent/Tor Browser* folder. The untrusted website might access these " +"files." +msgstr "" + +#. type: Plain text +msgid "- It is safe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit untrusted websites, without logging in, if you have no sensitive " +"information stored in your *Tor Browser* and *Persistent/Tor Browser* " +"folders." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Log in to several trusted websites without visiting any untrusted websites." +msgstr "" diff --git a/wiki/src/news/version_3.14.1/sandbox_escape.inline.mdwn b/wiki/src/news/version_3.14.1/sandbox_escape.inline.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..22a8d1f498af8a8c1eafe072ce380ca876e8dbe5 --- /dev/null +++ b/wiki/src/news/version_3.14.1/sandbox_escape.inline.mdwn @@ -0,0 +1,35 @@ +A security vulnerability was discovered in the sandboxing +mechanism of *Firefox* and *Tor Browser*. This vulnerability allows a +malicious website to bypass some of the confinement built in *Firefox*, +which means possibly spying on the content of other tabs and steal +the passwords of other websites. + +After *Tor Browser* has been compromised, the only reliable solution is +to restart Tails. + +Because *Tor Browser* in Tails is [[confined using +*AppArmor*|doc/anonymous_internet/Tor_Browser#confinement]], only the +data accessible to *Tor Browser* might be compromised but not the other +applications or your other files. For example, a compromised *Tor +Browser* might access your files in the *Tor Browser* and +*Persistent/Tor Browser* folders but not anywhere else. + +For example, without restarting Tails: + +- It is unsafe to: + + - Log in to a website and also visit an untrusted website. + Your password on the first website might be stolen by the untrusted website. + + - Visit an untrusted website if you have sensitive information stored + in your *Persistent/Tor Browser* folder. The untrusted website might + access these files. + +- It is safe to: + + - Visit untrusted websites, without logging in, if you have no + sensitive information stored in your *Tor Browser* and + *Persistent/Tor Browser* folders. + + - Log in to several trusted websites without visiting any untrusted + websites. diff --git a/wiki/src/news/version_3.14.1/sandbox_escape.inline.pt.po b/wiki/src/news/version_3.14.1/sandbox_escape.inline.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..a1abcf7437d026e3483b275fc75f24a70df43e62 --- /dev/null +++ b/wiki/src/news/version_3.14.1/sandbox_escape.inline.pt.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +msgid "" +"A security vulnerability was discovered in the sandboxing mechanism of " +"*Firefox* and *Tor Browser*. This vulnerability allows a malicious website " +"to bypass some of the confinement built in *Firefox*, which means possibly " +"spying on the content of other tabs and steal the passwords of other " +"websites." +msgstr "" + +#. type: Plain text +msgid "" +"After *Tor Browser* has been compromised, the only reliable solution is to " +"restart Tails." +msgstr "" + +#. type: Plain text +msgid "" +"Because *Tor Browser* in Tails is [[confined using " +"*AppArmor*|doc/anonymous_internet/Tor_Browser#confinement]], only the data " +"accessible to *Tor Browser* might be compromised but not the other " +"applications or your other files. For example, a compromised *Tor Browser* " +"might access your files in the *Tor Browser* and *Persistent/Tor Browser* " +"folders but not anywhere else." +msgstr "" + +#. type: Plain text +msgid "For example, without restarting Tails:" +msgstr "" + +#. type: Plain text +msgid "- It is unsafe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Log in to a website and also visit an untrusted website. Your password on " +"the first website might be stolen by the untrusted website." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit an untrusted website if you have sensitive information stored in your " +"*Persistent/Tor Browser* folder. The untrusted website might access these " +"files." +msgstr "" + +#. type: Plain text +msgid "- It is safe to:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Visit untrusted websites, without logging in, if you have no sensitive " +"information stored in your *Tor Browser* and *Persistent/Tor Browser* " +"folders." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Log in to several trusted websites without visiting any untrusted websites." +msgstr "" diff --git a/wiki/src/partners.de.po b/wiki/src/partners.de.po index 61c25cffd5dfc271459dc2446c03f1979728c571..c9f00c7005d068cbf76102ad8f56fc5cfbffa05d 100644 --- a/wiki/src/partners.de.po +++ b/wiki/src/partners.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-06-19 15:37+0000\n" +"POT-Creation-Date: 2019-06-19 16:12+0000\n" "PO-Revision-Date: 2018-04-06 18:26+0200\n" "Last-Translator: Tails translators <tails@boum.org>\n" "Language-Team: \n" @@ -67,9 +67,15 @@ msgstr "" #. type: Content of: <div><p> #, fuzzy -#| msgid "[[!img lib/partners/ndi.png link=\"no\"]]" -msgid "[[!img lib/partners/handshake.png link=\"no\"]]" -msgstr "[[!img lib/partners/ndi.png link=\"no\"]]" +#| msgid "" +#| "<a href=\"https://torproject.org\">[[!img lib/partners/tor.png link=\"no" +#| "\"]]</a>" +msgid "" +"<a href=\"http://www.handshakefoundation.org/\">[[!img lib/partners/" +"handshake.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://torproject.org\">[[!img lib/partners/tor.png link=\"no" +"\"]]</a>" #. type: Content of: <p> #, fuzzy @@ -601,6 +607,11 @@ msgstr "2010" msgid "Tor - 8 500€" msgstr "Tor - 8.500€" +#, fuzzy +#~| msgid "[[!img lib/partners/ndi.png link=\"no\"]]" +#~ msgid "[[!img lib/partners/handshake.png link=\"no\"]]" +#~ msgstr "[[!img lib/partners/ndi.png link=\"no\"]]" + #, fuzzy #~| msgid "" #~| "<a href=\"https://torproject.org\">[[!img lib/partners/tor.png link=\"no" @@ -639,17 +650,6 @@ msgstr "Tor - 8.500€" #~ "<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/" #~ "partners/i2p.png link=\"no\"]]</a>" -#, fuzzy -#~| msgid "" -#~| "<a href=\"https://torproject.org\">[[!img lib/partners/tor.png link=\"no" -#~| "\"]]</a>" -#~ msgid "" -#~ "<a href=\"http://www.handshakefoundation.org\">[[!img lib/partners/" -#~ "handshake.png link=\"no\"]]</a>" -#~ msgstr "" -#~ "<a href=\"https://torproject.org\">[[!img lib/partners/tor.png link=\"no" -#~ "\"]]</a>" - #, fuzzy #~| msgid "> $100.000" #~ msgid "> $100 000" diff --git a/wiki/src/partners.es.po b/wiki/src/partners.es.po index 22fcabdd864f1349116e6e33432c1ba9c3f141e8..50f07669ca9d14d6b25b4e80cc07ab99b25c2604 100644 --- a/wiki/src/partners.es.po +++ b/wiki/src/partners.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-06-19 15:37+0000\n" +"POT-Creation-Date: 2019-06-19 16:12+0000\n" "PO-Revision-Date: 2018-05-21 07:06+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -66,9 +66,15 @@ msgstr "Handshake Foundation - $200 000" #. type: Content of: <div><p> #, fuzzy -#| msgid "[[!img lib/partners/ndi.png link=\"no\"]]" -msgid "[[!img lib/partners/handshake.png link=\"no\"]]" -msgstr "[[!img lib/partners/ndi.png link=\"no\"]]" +#| msgid "" +#| "<a href=\"http://www.handshakefoundation.org\">[[!img lib/partners/" +#| "handshake.png link=\"no\"]]</a>" +msgid "" +"<a href=\"http://www.handshakefoundation.org/\">[[!img lib/partners/" +"handshake.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"http://www.handshakefoundation.org\">[[!img lib/partners/handshake." +"png link=\"no\"]]</a>" #. type: Content of: <p> msgid "$10 000 – $50 000" @@ -509,6 +515,11 @@ msgstr "2010" msgid "Tor - 8 500€" msgstr "Tor - 8 500€" +#, fuzzy +#~| msgid "[[!img lib/partners/ndi.png link=\"no\"]]" +#~ msgid "[[!img lib/partners/handshake.png link=\"no\"]]" +#~ msgstr "[[!img lib/partners/ndi.png link=\"no\"]]" + #, fuzzy #~| msgid "" #~| "<a href=\"https://iscproject.org/\">[[!img lib/partners/isc.png link=\"no" @@ -547,12 +558,5 @@ msgstr "Tor - 8 500€" #~ "<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/" #~ "partners/i2p.png link=\"no\"]]</a>" -#~ msgid "" -#~ "<a href=\"http://www.handshakefoundation.org\">[[!img lib/partners/" -#~ "handshake.png link=\"no\"]]</a>" -#~ msgstr "" -#~ "<a href=\"http://www.handshakefoundation.org\">[[!img lib/partners/" -#~ "handshake.png link=\"no\"]]</a>" - #~ msgid "> $100 000" #~ msgstr "> $100 000" diff --git a/wiki/src/partners.fa.po b/wiki/src/partners.fa.po index f7ef798bc426bea059212b85a0425f7e32c43ea0..35322addfe81599b049d4e9ec77f82ef3a178014 100644 --- a/wiki/src/partners.fa.po +++ b/wiki/src/partners.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-06-19 15:37+0000\n" +"POT-Creation-Date: 2019-06-19 16:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,7 +56,9 @@ msgid "Handshake Foundation - $200 000" msgstr "" #. type: Content of: <div><p> -msgid "[[!img lib/partners/handshake.png link=\"no\"]]" +msgid "" +"<a href=\"http://www.handshakefoundation.org/\">[[!img lib/partners/" +"handshake.png link=\"no\"]]</a>" msgstr "" #. type: Content of: <p> diff --git a/wiki/src/partners.fr.po b/wiki/src/partners.fr.po index 30af9b6ab4063b7c003297f46ad831d41a9beb1b..1752888d4e59da4a31a5581f561acf7176470bd4 100644 --- a/wiki/src/partners.fr.po +++ b/wiki/src/partners.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-06-19 15:37+0000\n" +"POT-Creation-Date: 2019-06-19 16:12+0000\n" "PO-Revision-Date: 2019-02-03 14:05+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -63,8 +63,16 @@ msgid "Handshake Foundation - $200 000" msgstr "Handshake Foundation - 200 000$" #. type: Content of: <div><p> -msgid "[[!img lib/partners/handshake.png link=\"no\"]]" -msgstr "[[!img lib/partners/handshake.png link=\"no\"]]" +#, fuzzy +#| msgid "" +#| "<a href=\"https://deeponion.org/\">[[!img lib/partners/deeponion.png link=" +#| "\"no\"]]</a>" +msgid "" +"<a href=\"http://www.handshakefoundation.org/\">[[!img lib/partners/" +"handshake.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://deeponion.org/\">[[!img lib/partners/deeponion.png link=" +"\"no\"]]</a>" #. type: Content of: <p> msgid "$10 000 – $50 000" @@ -480,3 +488,6 @@ msgstr "2010" #. type: Attribute 'title' of: <div><p> msgid "Tor - 8 500€" msgstr "Tor - 8 500€" + +#~ msgid "[[!img lib/partners/handshake.png link=\"no\"]]" +#~ msgstr "[[!img lib/partners/handshake.png link=\"no\"]]" diff --git a/wiki/src/partners.html b/wiki/src/partners.html index 10df2fa305c11ca9e0cf0f1d948c9ee0b4a3af5d..2b0548c91476daf996aff7bad07c61807364c1e4 100644 --- a/wiki/src/partners.html +++ b/wiki/src/partners.html @@ -13,7 +13,7 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations <p class="amount-range">> $100 000</p> <div class="currentpartner"> - <p class="partner partner-size-1" title="Handshake Foundation - $200 000">[[!img lib/partners/handshake.png link="no"]]</p><!-- 2018-08-30 --> + <p class="partner partner-size-1" title="Handshake Foundation - $200 000"><a href="http://www.handshakefoundation.org/">[[!img lib/partners/handshake.png link="no"]]</a></p><!-- 2018-08-30 --> </div> <p class="amount-range">$10 000 – $50 000</p> diff --git a/wiki/src/partners.it.po b/wiki/src/partners.it.po index a08b1ca0808db589bbc452bab08d111dc281cf57..d9e196cfce7214dfeb0aeed3d37bbc5c5716f52b 100644 --- a/wiki/src/partners.it.po +++ b/wiki/src/partners.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-06-19 15:37+0000\n" +"POT-Creation-Date: 2019-06-19 16:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -55,7 +55,9 @@ msgid "Handshake Foundation - $200 000" msgstr "" #. type: Content of: <div><p> -msgid "[[!img lib/partners/handshake.png link=\"no\"]]" +msgid "" +"<a href=\"http://www.handshakefoundation.org/\">[[!img lib/partners/" +"handshake.png link=\"no\"]]</a>" msgstr "" #. type: Content of: <p> diff --git a/wiki/src/partners.pt.po b/wiki/src/partners.pt.po index 24f45fc2be5e088e5b3377fa6b40e8543c4aa790..3361fc2bcc724fe51cdeeb56fc561b3ada8024df 100644 --- a/wiki/src/partners.pt.po +++ b/wiki/src/partners.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-06-19 15:37+0000\n" +"POT-Creation-Date: 2019-06-19 16:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -57,7 +57,9 @@ msgid "Handshake Foundation - $200 000" msgstr "" #. type: Content of: <div><p> -msgid "[[!img lib/partners/handshake.png link=\"no\"]]" +msgid "" +"<a href=\"http://www.handshakefoundation.org/\">[[!img lib/partners/" +"handshake.png link=\"no\"]]</a>" msgstr "" #. type: Content of: <p> diff --git a/wiki/src/security/Numerous_security_holes_in_3.14.mdwn b/wiki/src/security/Numerous_security_holes_in_3.14.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..4a6cd8da8d5929329b8cbedf131cc8faae371ebc --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_3.14.mdwn @@ -0,0 +1,17 @@ +[[!meta date="Thu, 20 Jun 2019 12:34:56 +0200"]] +[[!meta title="Numerous security holes in Tails 3.14"]] + +[[!tag security/fixed]] + +Several security holes that affect Tails 3.14 are now fixed in Tails 3.14.1. + +We **strongly** encourage you to +[[upgrade to Tails 3.14.1|news/version_3.14.1]] as soon as possible. + + - Tor Browser: [[!mfsa 2019-18]] + - Linux: [[!debsa2019 4465]] + - Thunderbird: [[!debsa2019 4451]] + - D-Bus: [[!debsa2019 4462]] + - Vim: [[!debsa2019 4467]] + - FFmpeg: [[!debsa2019 4449]] + - WPA: [[!debsa2019 4450]] diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.de.po b/wiki/src/security/sandbox_escape_in_tor_browser.de.po new file mode 100644 index 0000000000000000000000000000000000000000..2cb01a0d6d68804c6d7bdabf9e9dcee9c7473a8a --- /dev/null +++ b/wiki/src/security/sandbox_escape_in_tor_browser.de.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 20 Jun 2019 00:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Critical security vulnerability in Tor Browser\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Tor Browser in Tails 3.14.1 and earlier is unsafe to use in most " +"cases.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>We might update our analysis or announce an emergency release soon on\n" +"this page.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" " +"sort=\"age\"]]\n" +msgstr "" diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.es.po b/wiki/src/security/sandbox_escape_in_tor_browser.es.po new file mode 100644 index 0000000000000000000000000000000000000000..2cb01a0d6d68804c6d7bdabf9e9dcee9c7473a8a --- /dev/null +++ b/wiki/src/security/sandbox_escape_in_tor_browser.es.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 20 Jun 2019 00:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Critical security vulnerability in Tor Browser\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Tor Browser in Tails 3.14.1 and earlier is unsafe to use in most " +"cases.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>We might update our analysis or announce an emergency release soon on\n" +"this page.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" " +"sort=\"age\"]]\n" +msgstr "" diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.fa.po b/wiki/src/security/sandbox_escape_in_tor_browser.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..2cb01a0d6d68804c6d7bdabf9e9dcee9c7473a8a --- /dev/null +++ b/wiki/src/security/sandbox_escape_in_tor_browser.fa.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 20 Jun 2019 00:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Critical security vulnerability in Tor Browser\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Tor Browser in Tails 3.14.1 and earlier is unsafe to use in most " +"cases.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>We might update our analysis or announce an emergency release soon on\n" +"this page.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" " +"sort=\"age\"]]\n" +msgstr "" diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.fr.po b/wiki/src/security/sandbox_escape_in_tor_browser.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..2cb01a0d6d68804c6d7bdabf9e9dcee9c7473a8a --- /dev/null +++ b/wiki/src/security/sandbox_escape_in_tor_browser.fr.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 20 Jun 2019 00:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Critical security vulnerability in Tor Browser\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Tor Browser in Tails 3.14.1 and earlier is unsafe to use in most " +"cases.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>We might update our analysis or announce an emergency release soon on\n" +"this page.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" " +"sort=\"age\"]]\n" +msgstr "" diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.it.po b/wiki/src/security/sandbox_escape_in_tor_browser.it.po new file mode 100644 index 0000000000000000000000000000000000000000..2cb01a0d6d68804c6d7bdabf9e9dcee9c7473a8a --- /dev/null +++ b/wiki/src/security/sandbox_escape_in_tor_browser.it.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 20 Jun 2019 00:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Critical security vulnerability in Tor Browser\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Tor Browser in Tails 3.14.1 and earlier is unsafe to use in most " +"cases.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>We might update our analysis or announce an emergency release soon on\n" +"this page.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" " +"sort=\"age\"]]\n" +msgstr "" diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.mdwn b/wiki/src/security/sandbox_escape_in_tor_browser.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..40a0d85a813638d747d42b179343d87506df27e9 --- /dev/null +++ b/wiki/src/security/sandbox_escape_in_tor_browser.mdwn @@ -0,0 +1,13 @@ +[[!meta date="Thu, 20 Jun 2019 00:00:00 +0000"]] +[[!meta title="Critical security vulnerability in Tor Browser"]] + +<div class="caution"> + +<p>Tor Browser in Tails 3.14.1 and earlier is unsafe to use in most cases.</p> + +<p>We might update our analysis or announce an emergency release soon on +this page.</p> + +</div> + +[[!inline pages="news/version_3.14.1/sandbox_escape.inline" raw="yes" sort="age"]] diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.pt.po b/wiki/src/security/sandbox_escape_in_tor_browser.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..2cb01a0d6d68804c6d7bdabf9e9dcee9c7473a8a --- /dev/null +++ b/wiki/src/security/sandbox_escape_in_tor_browser.pt.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-06-20 17:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 20 Jun 2019 00:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Critical security vulnerability in Tor Browser\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Tor Browser in Tails 3.14.1 and earlier is unsafe to use in most " +"cases.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>We might update our analysis or announce an emergency release soon on\n" +"this page.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!inline pages=\"news/version_3.14.1/sandbox_escape.inline\" raw=\"yes\" " +"sort=\"age\"]]\n" +msgstr "" diff --git a/wiki/src/torrents/files/tails-amd64-3.14.build-manifest b/wiki/src/torrents/files/tails-amd64-3.14.1.build-manifest similarity index 97% rename from wiki/src/torrents/files/tails-amd64-3.14.build-manifest rename to wiki/src/torrents/files/tails-amd64-3.14.1.build-manifest index eead0f75c66c681adb4294c04e47434ade7ae967..7a104db2ca35caae48c8275296e5a95a0a059305 100644 --- a/wiki/src/torrents/files/tails-amd64-3.14.build-manifest +++ b/wiki/src/torrents/files/tails-amd64-3.14.1.build-manifest @@ -1,11 +1,11 @@ --- origin_references: debian: - reference: '2019051601' + reference: '2019061901' debian-security: - reference: '2019052003' + reference: '2019061902' torproject: - reference: '2019031301' + reference: '2019060802' packages: binary: - arch: amd64 @@ -274,13 +274,13 @@ packages: version: 5.0.0~beta~repack-2 - arch: all package: dbus-user-session - version: 1.10.26-0+deb9u1 + version: 1.10.28-0+deb9u1 - arch: amd64 package: dbus-x11 - version: 1.10.26-0+deb9u1 + version: 1.10.28-0+deb9u1 - arch: amd64 package: dbus - version: 1.10.26-0+deb9u1 + version: 1.10.28-0+deb9u1 - arch: amd64 package: dconf-cli version: 0.26.0-2+b1 @@ -422,6 +422,18 @@ packages: - arch: amd64 package: exfat-utils version: 1.2.5-2 + - arch: amd64 + package: exim4-base + version: 4.89-2+deb9u4 + - arch: all + package: exim4-config + version: 4.89-2+deb9u4 + - arch: amd64 + package: exim4-daemon-light + version: 4.89-2+deb9u4 + - arch: all + package: exim4 + version: 4.89-2+deb9u4 - arch: amd64 package: exiv2 version: 0.25-3.1+deb9u1 @@ -917,6 +929,9 @@ packages: - arch: amd64 package: gtkhash version: 0.7.0-4 + - arch: amd64 + package: guile-2.0-libs + version: 2.0.13+1-4 - arch: amd64 package: gvfs-backends version: 1.30.4-1.0tails5 @@ -1249,19 +1264,19 @@ packages: version: 0.5.4-4+b1 - arch: amd64 package: libavcodec57 - version: 7:3.2.12-1~deb9u1 + version: 7:3.2.14-1~deb9u1 - arch: amd64 package: libavfilter6 - version: 7:3.2.12-1~deb9u1 + version: 7:3.2.14-1~deb9u1 - arch: amd64 package: libavformat57 - version: 7:3.2.12-1~deb9u1 + version: 7:3.2.14-1~deb9u1 - arch: amd64 package: libavresample3 - version: 7:3.2.12-1~deb9u1 + version: 7:3.2.14-1~deb9u1 - arch: amd64 package: libavutil55 - version: 7:3.2.12-1~deb9u1 + version: 7:3.2.14-1~deb9u1 - arch: all package: libb-hooks-endofscope-perl version: 0.21-1 @@ -1624,7 +1639,7 @@ packages: version: 5.3.28-12+deb9u1 - arch: amd64 package: libdbus-1-3 - version: 1.10.26-0+deb9u1 + version: 1.10.28-0+deb9u1 - arch: amd64 package: libdbus-glib-1-2 version: 0.108-2 @@ -2180,6 +2195,9 @@ packages: - arch: amd64 package: libgs9 version: 9.26a~dfsg-0+deb9u3 + - arch: amd64 + package: libgsasl7 + version: 1.8.0-8+b2 - arch: amd64 package: libgsecuredelete0 version: 0.3-1 @@ -2513,6 +2531,9 @@ packages: - arch: amd64 package: libksba8 version: 1.3.5-2 + - arch: amd64 + package: libkyotocabinet16v5 + version: 1.2.76-4.2+b1 - arch: all package: liblangtag-common version: 0.6.2-1 @@ -2636,6 +2657,12 @@ packages: - arch: amd64 package: libmagickwand-6.q16-3 version: 8:6.9.7.4+dfsg-11+deb9u7 + - arch: amd64 + package: libmailutils5 + version: 1:3.1.1-1 + - arch: amd64 + package: libmariadbclient18 + version: 10.1.38-0+deb9u1 - arch: amd64 package: libmbim-glib4 version: 1.14.0-1+b1 @@ -2903,6 +2930,9 @@ packages: - arch: amd64 package: libntfs-3g871 version: 1:2016.2.22AR.1+dfsg-1+deb9u1 + - arch: amd64 + package: libntlm0 + version: 1.4-8 - arch: amd64 package: libnuma1 version: 2.0.11-2.1 @@ -3013,7 +3043,7 @@ packages: version: 1.1.8-3.6 - arch: amd64 package: libpam-systemd - version: 241-3~bpo9+1 + version: 241-5~bpo9+1 - arch: amd64 package: libpam0g version: 1.1.8-3.6 @@ -3157,7 +3187,7 @@ packages: version: 0.1~svn20101010-5 - arch: amd64 package: libpostproc54 - version: 7:3.2.12-1~deb9u1 + version: 7:3.2.14-1~deb9u1 - arch: amd64 package: libpotrace0 version: 1.13-3 @@ -3628,10 +3658,10 @@ packages: version: 2.17-2 - arch: amd64 package: libswresample2 - version: 7:3.2.12-1~deb9u1 + version: 7:3.2.14-1~deb9u1 - arch: amd64 package: libswscale4 - version: 7:3.2.12-1~deb9u1 + version: 7:3.2.14-1~deb9u1 - arch: all package: libsyntax-keyword-junction-perl version: 0.003008-1 @@ -3646,7 +3676,7 @@ packages: version: 232-25+deb9u11 - arch: amd64 package: libsystemd0 - version: 241-3~bpo9+1 + version: 241-5~bpo9+1 - arch: amd64 package: libtag1v5-vanilla version: 1.11.1+dfsg.1-0.1 @@ -3757,13 +3787,13 @@ packages: version: 6.3.0-18+deb9u1 - arch: amd64 package: libudev-dev - version: 241-3~bpo9+1 + version: 241-5~bpo9+1 - arch: amd64 package: libudev1 version: 232-25+deb9u11 - arch: amd64 package: libudev1 - version: 241-3~bpo9+1 + version: 241-5~bpo9+1 - arch: amd64 package: libudisks2-0 version: 2.1.8-1.0tails4 @@ -4207,22 +4237,22 @@ packages: version: '4.5' - arch: amd64 package: linux-headers-4.19.0-5-amd64 - version: 4.19.37-2 + version: 4.19.37-4 - arch: all package: linux-headers-4.19.0-5-common - version: 4.19.37-2 + version: 4.19.37-4 - arch: amd64 package: linux-image-4.19.0-5-amd64 - version: 4.19.37-2 + version: 4.19.37-4 - arch: amd64 package: linux-kbuild-4.19 - version: 4.19.37-2 + version: 4.19.37-4 - arch: amd64 package: linux-libc-dev - version: 4.9.168-1+deb9u2 + version: 4.9.168-1+deb9u3 - arch: all package: linux-source-4.19 - version: 4.19.37-2 + version: 4.19.37-4 - arch: all package: live-boot-initramfs-tools version: 1:20170112 @@ -4289,6 +4319,12 @@ packages: - arch: amd64 package: macchanger version: 1.7.0-5.3+b1 + - arch: all + package: mailutils-common + version: 1:3.1.1-1 + - arch: amd64 + package: mailutils + version: 1:3.1.1-1 - arch: amd64 package: make version: 4.1-9.1 @@ -4340,6 +4376,9 @@ packages: - arch: all package: myspell-fa version: 0.20070816-3 + - arch: all + package: mysql-common + version: 5.8+1.0.2 - arch: amd64 package: nano version: 2.7.4-1 @@ -4939,13 +4978,13 @@ packages: version: 232-25+deb9u11 - arch: amd64 package: systemd-sysv - version: 241-3~bpo9+1 + version: 241-5~bpo9+1 - arch: amd64 package: systemd version: 232-25+deb9u11 - arch: amd64 package: systemd - version: 241-3~bpo9+1 + version: 241-5~bpo9+1 - arch: amd64 package: sysvinit-utils version: 2.88dsf-59.9 @@ -4973,6 +5012,9 @@ packages: - arch: all package: tasksel version: '3.39' + - arch: amd64 + package: tcpd + version: 7.6.q-26 - arch: amd64 package: tcpdump version: 4.9.2-1~deb9u1 @@ -4984,46 +5026,46 @@ packages: version: 0.17-41 - arch: all package: thunderbird-l10n-ar - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: all package: thunderbird-l10n-de - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: all package: thunderbird-l10n-es-es - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: all package: thunderbird-l10n-fr - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: all package: thunderbird-l10n-id - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: all package: thunderbird-l10n-it - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: all package: thunderbird-l10n-pt-br - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: all package: thunderbird-l10n-ru - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: all package: thunderbird-l10n-tr - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: all package: thunderbird-l10n-zh-cn - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: amd64 package: thunderbird - version: 1:60.6.1-1~deb9u1.0tails1 + version: 1:60.7.0-1~deb9u1.0tails1 - arch: amd64 package: tk8.6-blt2.5 version: 2.5.3+dfsg-3 - arch: all package: tor-geoipdb - version: 0.3.5.8-1~d90.stretch+1 + version: 0.4.0.5-1~d90.stretch+1 - arch: amd64 package: tor - version: 0.3.5.8-1~d90.stretch+1 + version: 0.4.0.5-1~d90.stretch+1 - arch: amd64 package: torsocks version: 2.2.0-1.0tails1 @@ -5062,7 +5104,7 @@ packages: version: 232-25+deb9u11 - arch: amd64 package: udev - version: 241-3~bpo9+1 + version: 241-5~bpo9+1 - arch: amd64 package: udisks2 version: 2.1.8-1.0tails4 @@ -5099,9 +5141,15 @@ packages: - arch: all package: vim-common version: 2:8.0.0197-4+deb9u1 + - arch: all + package: vim-common + version: 2:8.0.0197-4+deb9u2 - arch: amd64 package: vim-tiny version: 2:8.0.0197-4+deb9u1 + - arch: amd64 + package: vim-tiny + version: 2:8.0.0197-4+deb9u2 - arch: all package: virtualbox-guest-dkms version: 5.2.24-dfsg-4~bpo9+1 @@ -5137,7 +5185,7 @@ packages: version: 30~pre9-12+b1 - arch: amd64 package: wpasupplicant - version: 2:2.4-1+deb9u3 + version: 2:2.4-1+deb9u4 - arch: amd64 package: x11-apps version: 7.7+6+b1 @@ -5276,6 +5324,9 @@ packages: - arch: amd64 package: xxd version: 2:8.0.0197-4+deb9u1 + - arch: amd64 + package: xxd + version: 2:8.0.0197-4+deb9u2 - arch: amd64 package: xz-utils version: 5.2.2-1.2+b1 diff --git a/wiki/src/torrents/files/tails-amd64-3.14.1.img.sig b/wiki/src/torrents/files/tails-amd64-3.14.1.img.sig new file mode 100644 index 0000000000000000000000000000000000000000..7f1f77efb383f5de0f6853182d9dba919107e1ee --- /dev/null +++ b/wiki/src/torrents/files/tails-amd64-3.14.1.img.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl0KSr0ACgkQ0h2tOK8o +HAtQxRAApgoTxCkAq9RcPMyEy3ugCMwkhXJh/8XzkonPDbBExFBzR16RHsm4Myof +rLVvRRuAaS04CnQOQzOsEHCpRqvySOzcwcQ11866+IMDgWsf8DBUW3bq63qL66Lx +6MXp59oRzdRBDUlr4RqsxJZKNX4LsC2kqPC41oLQKSQi1rlRXb3qmOonD7xxC5Cq +0trTjCD9ZCCuJwY7eh9sJbdSTux3gzzotvVN2bGD5hbHdyqdF0rVoCPdbOcC5XXv +2HnjMMWmgyinsHavpNN8VLhbsy29sIaAjkhO+5N0M8/guqjxIs27BDVyHelkuvMd +27fDkwtPbDu6xaknqAUDPAH9kvpu9U8zcam2Uae61/1w2CNcwS0WBzpt232RSR7P +wOS7FZwQP8+lyAMmyJrekInQ7UCMtXCRcVg90ocAc5kpus6OrhGT2cuoWpYo9WfE +RjMLBjg67wwrF3GBxTneBZsJOhCmViaswmvZJ1q+/8AcJfUKV2tRETohdvQ3k/Zf +fsZdcj1xMoRgy6aGALzU51dxariV2v6XdKI4Ro7UgpPCIDf9w4VsQZd4T3oQAA52 +jm0qaUt4vWkjCXey42dUp7mLPa6gWscAqGLXPXIBTun6/bgataCZIP4tL3nX5v52 +BaTkBJ4nrHfSFejVAKRHEWmuNwqd2mPiCyCWDj2ytj1pAFTshw4= +=b9nY +-----END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-3.14.1.img.torrent b/wiki/src/torrents/files/tails-amd64-3.14.1.img.torrent new file mode 100644 index 0000000000000000000000000000000000000000..b170c0659cbdb9404b92651801b8895417964d2b Binary files /dev/null and b/wiki/src/torrents/files/tails-amd64-3.14.1.img.torrent differ diff --git a/wiki/src/torrents/files/tails-amd64-3.14.1.iso.sig b/wiki/src/torrents/files/tails-amd64-3.14.1.iso.sig new file mode 100644 index 0000000000000000000000000000000000000000..4be8a1cff34dd08461c1e66bc229d10dd66a52b2 --- /dev/null +++ b/wiki/src/torrents/files/tails-amd64-3.14.1.iso.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl0KSq0ACgkQ0h2tOK8o +HAvGGhAApBBjVLMrXocysNPiogaw0bChvt8FmvD4tYs0VPjPzQkCjzqIo87xv1FP +oQBaC0r1S5A8gVOPkNJbNfMntBg3UumxrX8qd8tjTyTxN6xbAxOTo7oejG959tGe +1fvTLTbgi8gwdTi6bFJSFXUdm1c4xQ0HJ2+zPtb8mtpZlnt/0vdf7ZmmQyXMCOgI +Yl7LLUg1SxmyinKWEMgadsGi/fAc9IBr0ujg5fSj43OBq4BiHT+9qoU0pLjPy4SB +FHEceQ2kgjBSOCnBihn1Doo7cWw4diu/PbrpXLld3VIkKDBmLPCBsgkKS3fSLMCJ +TIy8z04zOU4xSaGef8qsJTTU8bViHMfUDtoBH9AxtyBNIB6QsG+16UkiT4D8o+iQ +R9REH3FDxhox+FFdcdAlMbu6ZGbgQiSBajKPAhSXofWNI+pUfdBfpT8pRPeeTc93 +qxIFoHpuGqR7OY7h/tiy7MvLOOLHsq8h73x4SkEcb4In92e7Ob1uUxwHfaCjRNBo +bfFDOBPMdZhAkWgjdmvQ8Rc8WF+39b2X66S/nUAEQqRWenJtpm9RgJyI/p4pXCVm +IeaY0V3wsfJAwbNZipzhgWmLBYxLCLu7eX/XsFSKkfuACi8h71iDZTMjwltrMHWQ +oZegIhP6ecbG4wCzGaNN+JajCVLet+AsktLGTdypB+XrMYdJSQ8= +=KfPE +-----END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-3.14.1.iso.torrent b/wiki/src/torrents/files/tails-amd64-3.14.1.iso.torrent new file mode 100644 index 0000000000000000000000000000000000000000..e037651e424b456db686b6e41ba28f68b6ffc914 Binary files /dev/null and b/wiki/src/torrents/files/tails-amd64-3.14.1.iso.torrent differ diff --git a/wiki/src/torrents/files/tails-amd64-3.14.packages b/wiki/src/torrents/files/tails-amd64-3.14.1.packages similarity index 97% rename from wiki/src/torrents/files/tails-amd64-3.14.packages rename to wiki/src/torrents/files/tails-amd64-3.14.1.packages index 880d1950dafebc5ce4d90ec4c0fdad6de5b99869..b035d8a7509058d936b9ecede04881387c9cac67 100644 --- a/wiki/src/torrents/files/tails-amd64-3.14.packages +++ b/wiki/src/torrents/files/tails-amd64-3.14.1.packages @@ -79,9 +79,9 @@ curl 7.52.1-5+deb9u9 dash 0.5.8-2.4 dasher 5.0.0~beta~repack-2 dasher-data 5.0.0~beta~repack-2 -dbus 1.10.26-0+deb9u1 -dbus-user-session 1.10.26-0+deb9u1 -dbus-x11 1.10.26-0+deb9u1 +dbus 1.10.28-0+deb9u1 +dbus-user-session 1.10.28-0+deb9u1 +dbus-x11 1.10.28-0+deb9u1 dconf-cli 0.26.0-2+b1 dconf-gsettings-backend:amd64 0.26.0-2+b1 dconf-service 0.26.0-2+b1 @@ -386,11 +386,11 @@ libavahi-common3:amd64 0.6.32-2 libavahi-glib1:amd64 0.6.32-2 libavahi-gobject0:amd64 0.6.32-2 libavc1394-0:amd64 0.5.4-4+b1 -libavcodec57:amd64 7:3.2.12-1~deb9u1 -libavfilter6:amd64 7:3.2.12-1~deb9u1 -libavformat57:amd64 7:3.2.12-1~deb9u1 -libavresample3:amd64 7:3.2.12-1~deb9u1 -libavutil55:amd64 7:3.2.12-1~deb9u1 +libavcodec57:amd64 7:3.2.14-1~deb9u1 +libavfilter6:amd64 7:3.2.14-1~deb9u1 +libavformat57:amd64 7:3.2.14-1~deb9u1 +libavresample3:amd64 7:3.2.14-1~deb9u1 +libavutil55:amd64 7:3.2.14-1~deb9u1 libb-hooks-endofscope-perl 0.21-1 libb-hooks-op-check-perl 0.19-3+b1 libbabl-0.1-0:amd64 0.1.18-1 @@ -507,7 +507,7 @@ libdatetime-timezone-perl 1:2.09-1+2019a libdatrie1:amd64 0.2.10-4+b1 libdb5.3:amd64 5.3.28-12+deb9u1 libdb5.3++:amd64 5.3.28-12+deb9u1 -libdbus-1-3:amd64 1.10.26-0+deb9u1 +libdbus-1-3:amd64 1.10.28-0+deb9u1 libdbus-glib-1-2:amd64 0.108-2 libdc1394-22:amd64 2.2.5-1 libdca0:amd64 0.0.5-10 @@ -961,7 +961,7 @@ libpagemaker-0.0-0:amd64 0.0.3-2 libpam-modules:amd64 1.1.8-3.6 libpam-modules-bin 1.1.8-3.6 libpam-runtime 1.1.8-3.6 -libpam-systemd:amd64 241-3~bpo9+1 +libpam-systemd:amd64 241-5~bpo9+1 libpam0g:amd64 1.1.8-3.6 libpango-1.0-0:amd64 1.40.5-1 libpango-perl 1.227-1+b1 @@ -1009,7 +1009,7 @@ libpoppler64:amd64 0.48.0-2+deb9u2 libpopt0:amd64 1.16-10+b2 libportaudio2:amd64 19.6.0-1 libportsmf0:amd64 0.1~svn20101010-5 -libpostproc54:amd64 7:3.2.12-1~deb9u1 +libpostproc54:amd64 7:3.2.14-1~deb9u1 libpotrace0 1.13-3 libppi-perl 1.220-1 libprocps6:amd64 2:3.3.12-3+deb9u1 @@ -1164,12 +1164,12 @@ libsub-uplevel-perl 0.2600-1 libsuil-0-0:amd64 0.8.4~dfsg0-2 libsuitesparseconfig4:amd64 1:4.5.4-1 libswitch-perl 2.17-2 -libswresample2:amd64 7:3.2.12-1~deb9u1 -libswscale4:amd64 7:3.2.12-1~deb9u1 +libswresample2:amd64 7:3.2.14-1~deb9u1 +libswscale4:amd64 7:3.2.14-1~deb9u1 libsyntax-keyword-junction-perl 0.003008-1 libsyntax-perl 0.004-1 libsys-statistics-linux-perl 0.66-2 -libsystemd0:amd64 241-3~bpo9+1 +libsystemd0:amd64 241-5~bpo9+1 libtag1v5:amd64 1.11.1+dfsg.1-0.1 libtag1v5-vanilla:amd64 1.11.1+dfsg.1-0.1 libtalloc2:amd64 2.1.8-1 @@ -1203,7 +1203,7 @@ libtwolame0:amd64 0.3.13-2 libtype-tiny-perl 1.000005-1 libtype-tiny-xs-perl 0.012-1+b2 libtypes-path-tiny-perl 0.005-1 -libudev1:amd64 241-3~bpo9+1 +libudev1:amd64 241-5~bpo9+1 libudisks2-0:amd64 2.1.8-1.0tails4 libumfpack5:amd64 1:4.5.4-1 libunicode-linebreak-perl 0.0.20160702-1+b1 @@ -1351,7 +1351,7 @@ libzstd1 1.1.2-1 libzvbi-common 0.2.35-13 libzvbi0:amd64 0.2.35-13 linux-base 4.5 -linux-image-4.19.0-5-amd64 4.19.37-2 +linux-image-4.19.0-5-amd64 4.19.37-4 live-boot 1:20170112 live-boot-initramfs-tools 1:20170112 live-config 5.20170112+deb9u1 @@ -1572,8 +1572,8 @@ syslinux-common 3:6.03+dfsg-14.1+deb9u1 syslinux-efi 3:6.03+dfsg-14.1+deb9u1 syslinux-utils 3:6.03+dfsg-14.1+deb9u1 system-config-printer-common 1.5.7-3 -systemd 241-3~bpo9+1 -systemd-sysv 241-3~bpo9+1 +systemd 241-5~bpo9+1 +systemd-sysv 241-5~bpo9+1 sysvinit-utils 2.88dsf-59.9 tails-greeter 1.0.10 tails-installer 5.0.15+dfsg-0tails1 @@ -1583,20 +1583,20 @@ tails-persistence-setup 2.1.1-1 tar 1.29b-1.1 tcpdump 4.9.2-1~deb9u1 tcpflow 1.4.5+repack1-3+b1 -thunderbird 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-ar 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-de 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-es-es 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-fr 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-id 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-it 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-pt-br 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-ru 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-tr 1:60.6.1-1~deb9u1.0tails1 -thunderbird-l10n-zh-cn 1:60.6.1-1~deb9u1.0tails1 +thunderbird 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-ar 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-de 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-es-es 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-fr 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-id 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-it 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-pt-br 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-ru 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-tr 1:60.7.0-1~deb9u1.0tails1 +thunderbird-l10n-zh-cn 1:60.7.0-1~deb9u1.0tails1 tk8.6-blt2.5 2.5.3+dfsg-3 -tor 0.3.5.8-1~d90.stretch+1 -tor-geoipdb 0.3.5.8-1~d90.stretch+1 +tor 0.4.0.5-1~d90.stretch+1 +tor-geoipdb 0.4.0.5-1~d90.stretch+1 torsocks 2.2.0-1.0tails1 totem 3.22.1-1 totem-common 3.22.1-1 @@ -1608,7 +1608,7 @@ ttf-dejavu-extra 2.37-1 ttf-unifont 1:9.0.06-2 tzdata 2019a-0+deb9u1 ucf 3.0036 -udev 241-3~bpo9+1 +udev 241-5~bpo9+1 udisks2 2.1.8-1.0tails4 unar 1.10.1-1+b1 uno-libs3 5.2.7-1+deb9u7 @@ -1620,8 +1620,8 @@ usb-modeswitch-data 20170120-1 usbutils 1:007-4+b1 user-setup 1.67 util-linux 2.29.2-1+deb9u1 -vim-common 2:8.0.0197-4+deb9u1 -vim-tiny 2:8.0.0197-4+deb9u1 +vim-common 2:8.0.0197-4+deb9u2 +vim-tiny 2:8.0.0197-4+deb9u2 virtualbox-guest-dkms-dummy 5.2.24-dfsg-4~bpo9+1+tails.fake1 virtualbox-guest-utils 5.2.24-dfsg-4~bpo9+1 virtualbox-guest-x11 5.2.24-dfsg-4~bpo9+1 @@ -1632,7 +1632,7 @@ whisperback 1.7.23 whois 5.2.17~deb9u1 wireless-regdb 2016.06.10-1 wireless-tools 30~pre9-12+b1 -wpasupplicant 2:2.4-1+deb9u3 +wpasupplicant 2:2.4-1+deb9u4 x11-common 1:7.7+19 x11-utils 7.7+3+b1 x11-xkb-utils 7.7+3+b1 @@ -1669,7 +1669,7 @@ xserver-xorg-video-vmware 1:13.2.1-1+b1 xul-ext-torbirdy 0.2.6-1~bpo9+1 xvfb 2:1.19.2-1+deb9u5 xwayland 2:1.19.2-1+deb9u5 -xxd 2:8.0.0197-4+deb9u1 +xxd 2:8.0.0197-4+deb9u2 xz-utils 5.2.2-1.2+b1 yelp 3.22.0-1 yelp-xsl 3.20.1-2 diff --git a/wiki/src/torrents/files/tails-amd64-3.14.img.sig b/wiki/src/torrents/files/tails-amd64-3.14.img.sig deleted file mode 100644 index c18420f4bcf9eb4e77921e702aa6af323d719740..0000000000000000000000000000000000000000 --- a/wiki/src/torrents/files/tails-amd64-3.14.img.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzjCL4ACgkQqLD05Fsb -UOKJVRAAvA+7v+Zafsb0r1LQXZDG78bjzZeHuD5EOLTXbYJ4LT0zxeRq/ZDA1/g7 -FswvX6eD9V07EkzjfmGVvQ3vmaCe8fJoXzS1+5+bGcc30Cl+iluZ4AgN46rXUwB4 -D06Q7XYu1GnT1tUgBo1b/tsqdCqHlRWMaXpbvl6N2aeliHdmBh1YdYgckSB10PAy -Y4qVTlclZUIbMTiKCV+L4keXxJdehcX+k6F3QelwjqjKOIlfUP76M/5lYdiUEY1Z -may7IcJKL7IXY6sIKfb7IwQ6BtE/mMFEvA3WT8UMUiFAfYYqCw2OjSMfIOsE+EpN -SeDepyIfZGCE0jQELm8kXb2syHumPWl6Y8LcALtdWe/DafhZ3X6A3iJsuOp6+03G -XRTaPuBMVcbF8Q/Rba7Kma1CMHpnMEn/WBmZ9JB1yRKW1+kW9O2iy1yzfXH/l7c3 -DoVxfg2y4tU9RhBNLqNFZPwnRYdyO2waNBafxlCfXlzt5lpEOPJqpEKJ3RQCbILz -MqIlEcTVwK9IY08Ol1p2Qop3Ey/nKe3lMeokCgUqa/bvVRqx3ZXcAG6dsH/D1dVN -vzeCyWPgDd0OtOCwI8jipx9hicYIkyMKbY+pdZ0zJnh6aKTs8APNwdxRlyp2BqBn -9vz/KQUnbHvIplU7SITryFv5bCDWaEVi79fqiNqjCM90nDXxxPk= -=tnNb ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-3.14.img.torrent b/wiki/src/torrents/files/tails-amd64-3.14.img.torrent deleted file mode 100644 index 57e3da4290f5b77dd160e59419d51fc570ea947a..0000000000000000000000000000000000000000 Binary files a/wiki/src/torrents/files/tails-amd64-3.14.img.torrent and /dev/null differ diff --git a/wiki/src/torrents/files/tails-amd64-3.14.iso.sig b/wiki/src/torrents/files/tails-amd64-3.14.iso.sig deleted file mode 100644 index 1c81174d786d828968ad0a067496c4aef643c991..0000000000000000000000000000000000000000 --- a/wiki/src/torrents/files/tails-amd64-3.14.iso.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzjCLMACgkQqLD05Fsb -UOKafhAAsJytgRgCsmfbd9HuSFzvhXXMlcyVyIa7h9rn9c1Al/Tor4e1WW0wTn3I -luPVg/LrJXOQnGRvPYkW5BiXlTWpqa5K0bLCWBAGQmxtE8M7OQ2JhpZKpiQlukSj -s5uStp8MVSF4ZQ7On8Rx2O1jMJFVcHRv5bZeL42HAKv0sxcf8JixAAyCCUhF5dXD -xRVwxNk9h+Wwa9k1SU8u9Z/lYEGnz0VUsOd1PWvi3G6zR0IKRiDF3olk3Z1KXvpy -PvhMraK+1QHbFRzXwP5Y1KOX64vsptJY0YYHUSZQHkIbwkHAQziPkdA1ipt/MyWA -d/X0ks/Tj8aisSQTreAvxgmyN4vGX5W5/VOiwG2uyNHV80pVEhuB2ZtKoeLNs5xJ -AUN2sB56RRJ8NcOXGHrFADBKVjyNJT+r39fislGKo37maMUL1Z3mgxcJKGT9y53X -ibmvpq+4Pm0CIYfZLWw7ppbyoniiIVhEDE1Y4dzZiR+id07R8rfeu3w3B6AJ++Dt -I8GUmNea6dsfnnphSUthYXoyxszMd1WAl/jo5jQlrUtwoJUT7QPRBylDQLmurz/0 -xhnQrPdv1u0yS6Gb+V6NkWaWmKhoUW3apY9MzNtazef68eRIqdkRMoyHY9nMuDIW -fIPi0PCzPeF0EEpd3LchNnUX4majgbI0DAUd5a9x9F6G6dbhBRk= -=Be4/ ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-3.14.iso.torrent b/wiki/src/torrents/files/tails-amd64-3.14.iso.torrent deleted file mode 100644 index 86531638f0324f7a760ece621ecfa5a108632d06..0000000000000000000000000000000000000000 Binary files a/wiki/src/torrents/files/tails-amd64-3.14.iso.torrent and /dev/null differ diff --git a/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml index 4c2b3de0b1a4277ce3688ee6b7ce623897455c33..eb54f9ffa337afdff90948557d84a20dc50641f5 100644 --- a/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable product-name: Tails product-version: 3.13.1 upgrades: -- details-url: https://tails.boum.org/news/version_3.14/ +- details-url: https://tails.boum.org/news/version_3.14.1/ type: major upgrade-paths: - target-files: - - sha256: db45891b088a1cf9b8eb04dbb1a30c54ab33ead8c60cbed4063f5ccbba3f72eb + - sha256: 677793964c54daeb8dfd0deaa84a84a1528e7ff1ef2285cf53a97eef41c9ba48 size: 1184440320 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14/tails-amd64-3.14.iso + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14.1/tails-amd64-3.14.1.iso type: full - target-files: - - sha256: 05ba782b3078ed6bf62326f7994a0608fb977b82c3201d24f3030d403d0c9127 - size: 423301120 - url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.13.1_to_3.14.iuk + - sha256: ed44e1792d6899b0fc1851c73775f2ff4d96f54fcd8f0dbb0f18c52c09d77ef4 + size: 433459200 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.13.1_to_3.14.1.iuk type: incremental - version: '3.14' + version: 3.14.1 diff --git a/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml.pgp index 9f4b05b9ec700f971c09a3ffcaeeb79249bef450..a1e98604946a75b0f76474f01027094192fb33ac 100644 --- a/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzjGPQACgkQqLD05Fsb -UOIIyBAAo2GmJOLTuOZOZHl3m+e9V8aMnDk0hj3RRxgpQnlYdtiPRDeDnHs5ajON -J3YlkxCGvrJGDaN82AqfMvCyjPyWY2sbZvWcXNpZBb0ffVltaG+eJOOsuhiWgoLd -ZugxbL9WXiMEo6HZFIMY5IhRB9GWw41kL3Y8wp+METcxFwh1n9IF5TXWMlui7apY -CzO0GWnJKNfeS3YFwLHnBmpO233/0RbqwYk9/tZf5oNojNu72/+wQG1qdxKl8p+4 -ARgokW9eDW0RD9+r+DjalPmiY4gtrurzgf/63r8o1mNTeqy4rbcCfJbJrdE0Jhnw -oGBJmaOm52sCT0zOcclPpqepMKU/e+uXT4wUlnDCBa0LBi4LxMucM3YNEyXGSVNh -KI3EkHJIbfBRLkYyjVHB9nQHbhifawU+tmnag6OItoPsi025E7WuXfavidwFSlvU -ApSTft+9LL0aDO2m+Mrn8BXeLOrw1ioQp2SRUF+QGOhjwFEQEzL0t22nCKldVzd+ -ISGLF3k2ln4obft9pkki9mqD46/Y+ko27q+h9fO34bNkxwbGIdgDdTfK9ySrfDya -xVv6CubL1oOoL4DptjzRieK+UeVh4jnF6lsMN5/fLPg0G64BNcS6I4mDRxZtURB4 -jShxydGnxyKNs4PopQGSg/ETuGBVDGa4K/jB5Q9sTrRO4gWsGVU= -=hUyZ +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl0KVDIACgkQ0h2tOK8o +HAs8SBAAxdgNDxn3Cefqcjt1QGNKQ8KhHKywYSw+9s3NA5LXlSxx7e+UZhg8kwul +393Vehb2R5wRn4MKpkYinWiwbXhrUT+/ETWzAkWqxWsWcc9czUwstYE3IRLOUyYw +airAxrrjdmgkRFcqJRAnWiiTuoGOddhkrLPLJdcNW0FSonUTddM6h6cL7UmApbge +Jg5Gp2K4/TvzK7iqGNCRxlNi1j5UZa8w5Y9D7t5yhQhdL4cVgmoDMZ42903d7oX7 +NjTx2Im6h5omkd6VkqsoDGbAVDkcWihpZJCko0J4nRwbFNi6ioxucsP4TnFH4goh +rEW5fUJVzI07idyl52CS6xvC4fzwTiIzX4ezPeDWL1sA63yrERtIpbvnJqdkpgk4 +2ZNCCZ+eDh5Gw8ZVgwaUHh8q+9ResplXiVrKJ9AwrBFWy1vOvgmApzeJdSaC14WD +0C6flZvW+erhx3sIBbtIT17vAm10pc+ydlgsb411ep4tFS7+r6m0zDNcgLwSV0qr +MK2agml+oaVIBNnbHnNAby6ALL/tnda2Zirv8bVu+Cf3MnUsF+j84hnornqQh1dy +BBTf5czGhYcSeq+dDNl4QA0iL8rYi4ZTPbIBLq2/AM/mi+XvSRf+G6EGU3nZXz+v +0ZrH0++t3al3q/Q1uIiK7fx2y/6GX49HXtWg1Pl8C3lrreWmYNc= +=Hx7y -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/3.13.2/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.13.2/amd64/stable/upgrades.yml index 8f961ca38636c076cadbf6671b5b3f21f0b5e036..b019e635a4290f872399a90b24c3c796e7254d1c 100644 --- a/wiki/src/upgrade/v1/Tails/3.13.2/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/3.13.2/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable product-name: Tails product-version: 3.13.2 upgrades: -- details-url: https://tails.boum.org/news/version_3.14/ +- details-url: https://tails.boum.org/news/version_3.14.1/ type: major upgrade-paths: - target-files: - - sha256: db45891b088a1cf9b8eb04dbb1a30c54ab33ead8c60cbed4063f5ccbba3f72eb + - sha256: 677793964c54daeb8dfd0deaa84a84a1528e7ff1ef2285cf53a97eef41c9ba48 size: 1184440320 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14/tails-amd64-3.14.iso + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14.1/tails-amd64-3.14.1.iso type: full - target-files: - - sha256: 3c281494f79b590cb380d059ea65e2fbb323a8bad8bb75bf442bc4cb6b6634d2 - size: 251658240 - url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.13.2_to_3.14.iuk + - sha256: 0ac88c738ffa9c103ee243670f87a0e61858be4bc39d0f0fe356fac98dfd5989 + size: 312053760 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.13.2_to_3.14.1.iuk type: incremental - version: '3.14' + version: 3.14.1 diff --git a/wiki/src/upgrade/v1/Tails/3.13.2/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.13.2/amd64/stable/upgrades.yml.pgp index 35be897de9b3a433780274e6b3fd0ac1043079e9..8d820ff9e8c57adfbe6f5222120672a049068175 100644 --- a/wiki/src/upgrade/v1/Tails/3.13.2/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v1/Tails/3.13.2/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzjGPoACgkQqLD05Fsb -UOICGQ/9FwjmCzXaKYapvYJqWfiY+ltr8c4FNZa99wikgjLyB5tYf3h+BnGS6i/t -eFnK1bT+1eDLXBs6y5ZaWxXzAH4itJw23ognsG6cV/jqq+XF8o6ii54juQgz/OG3 -98eSgxltBBUJ3UII8QKodM1IeRh0El9ZM6vAskns0vOSQlYewPWM7zj7v3AVlQNN -H6CYyLhoMaSWcGGY/SHi0qw0RF/+TfNv509qRI4CSZkIkds9FTcTtnIcx6PrECzd -2eHb4dAmjOS9zlMHa6kH4t8eM3vToB8WJmNET7ks066Jb/Pf56XXc0KkHrEwVacA -mwUf1cd7qI6XtzkVdIjnFc+ogkP3X6V2gfDeTDGYatR5lTp6+4mO99+mXF5OslfK -7oMCvhjnq2tAYk9aJXdKmB/nDJaF3AvHkOTimpOuKCuzvC9smAYmV9DnWZDJv1RX -1q56wH0gxYdAVocFxnM3mnhL2IU4seY6EDtJOncBKUTJFwM08PhfpElvZosXXOWB -sdkOlKROUSE3gMDxImcAcWD+HXkYWOPrc8/ZMPqbZFgDXbQH9e5NjXMLrrbM7pUW -b5E87RIsPbczVL9B5QqCnLy5aAZEqncgW0C7aMvgrNipiDcM+8wIZi20r8UF8i+d -x4nvh9PtKeYIm9iq82SZvGTEHw0R938+hAliV6dPHhgMguerj9Y= -=0Dyr +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl0KVDoACgkQ0h2tOK8o +HAuTmxAAlFlnIAneEUp/tob9VSHVO658FRDot/u86nbSRMPwh+T+XS6RehHwnEJv +9EXdHdgMP0eN7YC535eSSL1OaQ4OLHZP46BGZXvWKdQW8dwPGP2rPSVi1z2UeRC9 +D3fJDBuM4YiWVtw8w51D0KGCdM31ktvX/kH9laqrGEd75oDHK0jZESWdMiS2O/Dn +NVjKEV5jJKl0G542pQRfhlWr5axjaJr8wI9+jC2orWwmF5CY3L0YSvj1xrw8yYT/ +yoDRMy+xRaEEgIpBLUffXxzGP3/oDO38kZNqNMp8OXXsa+dWGvWt9r2wK2jmGMSC +O/FNAbHnWe1Vf6VEeqc8wIj+wvqdlg0Rwdj3saOsNMG7FP2vlrV7ja840B/VSoX7 +AdeJyd578354nCruUNOYWZ9G8YWcKQ502vDdXapzxCoTNYeZaw5XpLqt3Q6/Kk/4 +1hNAOBJAAYic9mGyC0Phh9gAQgzeZaoE6XpHbn9aZBiVi1MpOoyRgG6XehWCSIMV +qX9PsEoedrex/hCqArZZaPpTQJt1iIi2E/gitb5beRhkZop7MwrKyqfJwdSGbPiw +sffg4sGL3t2xq3lUah2rJtzFMkzPFCA/LJNMEgkpNkUAtpRNv/h7Ya8zxYwCs4cH +Vndba7hn04fOlb5t2rzCFF2e+qXClTr4ZJYnM7E88lDSAS5QdZY= +=MQvN -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml.pgp deleted file mode 100644 index 3ba9dc20671cef8685c2fb99889e3c1ea4403040..0000000000000000000000000000000000000000 --- a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml.pgp +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzPmsQACgkQqLD05Fsb -UOJE5A//aByWqDeyg0VY2iN3W/F8o7KoLNcGtoDAWzE6Wwv2XKZNoG3O4URswnC1 -CwOut19XZ8Nm6mqRTEe89K5+nhA+33pUUfJJa1jrQqhZ34faQ525v9sU38jS4zK1 -Medct1OmmYHxrFd5a3s89tm5v6Ua8IFPdL19usqRSYTVUh8PRCqdkXCSf/imk8wR -u7RSTEo6iIhj2Mpgf7x7AXLnaFhQ6RVQrTWUARYi2PRPNiqy1FmxWYBqvF0L1uLY -tFjBTov0x/OpD00cdPF6c98IHnBUQKaFDLMIa38vHjvTKXNsajAKd1Q/5PT//1Q+ -n6D6mBZBQTkNg4xkXRhSY1xdP/jlEO98Leeh2gUzoGUH69kwIoXJ0A4ceIaiGVjg -o3KUZ3FYDZ6lzFbOr8ICcdAlK39hEd+b7Vlkgaye2VVH4pPDcqkjm0dWrDsrLs/F -qlCgyEVyFCnwf7SLbJRgwvfkNhspgiBdVRf0y2L8wtobbRgwNjU4vdViHGdCGyQs -KDsSaJid3ctDIjIRKRf1XT1EvCqFG2GefdqNu7GGm9XhaaDdTpmkOw5OZfxLGRe/ -007G7d5C7ZFEGaEmOu/BqUTHEu4+8kQSgaaHiQdQ35Ix3mRSPy74/+qswekZueRR -wTawNuI8e5mebdrZ4S5nne9oB+X5b6jdiiYsJ9v5K7Hk7PMwrE8= -=encC ------END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml.pgp deleted file mode 100644 index 77173d4e29169d1830d62bb3bdee71aef28325ae..0000000000000000000000000000000000000000 --- a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml.pgp +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzPmssACgkQqLD05Fsb -UOKiKA/9Gdf6/zkdQ8bPx6HB6/zgXMj+z9PeL/a5yOG1Z+ZCucj5+8/0ySlOhcQf -xbiMyg6Xut9sAqZu0hMWX6LfupGgXBjjLds7T54wsoaueLALIKrrw0Yyr+F/l19W -rYZ7A33qWjM+3PZvAn+o/E3SOB3wc2ofQ1QYBlIcaGPGT+LXxDkJ0qaF2F065rBE -IPzZHkJx2Hr8wK7aGMHPcx4mpFn0gCrvqEDGB0b00rN8PNIRQgTluyL4ZJIdvo3o -ZvIOph5vwM+OafPrCyu+ws7IbcEtwFP1wWdhvM4cKlkhxVWKX3ogWT7NYWVN22jE -oXGG8C0Z3WK9bkr/BewDsxTbxzV4/yaBLFeltpNFBYnxW0lXGZbAEn4g15jghED0 -QWUZb8zeer3FRltWje898xqfKF1H74HBYwB2Ubi93U0yPfZWxHa89oIIL+WU/4IB -B5wKAXpgNpe6WKMb5xuPI05qZpdp4R+8o5qoonRag715PFEpCP7Cffyi+KEl/AQV -m+VH94af+FpD4oyeVa7xnTzXt3sY1oVPap2kiGdKYfhbrNd7Urs7wqjU76bD4qo7 -JAGvtWOEutToAgG7nZmglR8B6YfTe+tVx1PBYlw2rJJV2gNjZ6dy7ppQs6Ekr9Eo -UjDLrt4SAadQUgk5eMKn+24hVU5h9ALMEB+gwxBlB4p3pRUz+Jo= -=gifO ------END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml index f3c2823075c3c5179849c6a657486260c0e5332a..b67dc72ec95a552bc2b50a5cbe2dfd769fd36e75 100644 --- a/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable product-name: Tails product-version: '3.13' upgrades: -- details-url: https://tails.boum.org/news/version_3.14/ +- details-url: https://tails.boum.org/news/version_3.14.1/ type: major upgrade-paths: - target-files: - - sha256: db45891b088a1cf9b8eb04dbb1a30c54ab33ead8c60cbed4063f5ccbba3f72eb + - sha256: 677793964c54daeb8dfd0deaa84a84a1528e7ff1ef2285cf53a97eef41c9ba48 size: 1184440320 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14/tails-amd64-3.14.iso + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14.1/tails-amd64-3.14.1.iso type: full - target-files: - - sha256: cefa9874a87dca08e38a177a5bb545ae4262e9ef5c59090d669d0126ed5a13a8 - size: 423966720 - url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.13_to_3.14.iuk + - sha256: dd2b1ca76710a3aa751f2ffaa788c362c51d466ed6e1154c47d0ed45039470ba + size: 434135040 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.13_to_3.14.1.iuk type: incremental - version: '3.14' + version: 3.14.1 diff --git a/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml.pgp index 8cd5c35db9f26522713fb7600277b97926f7a652..1cfd8582b415a45d32024b2c6d9c271d7cace361 100644 --- a/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzjGQEACgkQqLD05Fsb -UOLWvhAAiIHCHaRC/4r9LIYOOPmtvjRbIiUsSnVRX9jgrbY9/wkW+2CkuMeS2vUU -gZmUVVvwW5NjFwWvLecnTiSpXW3C2LcwVJuDHwnV3gjshs/hbNpbDYZDeadxI4n3 -2tyMRsJuh2gnpLYE9URcAng7yacLptiIiDl616hE7Fl+axjtmYRAmBOuLhbFDvTz -x2M83JHD+IlHiFszkuILtnqR5yeiFndTmmJDHJa3WzW94XVFvjlFoU2eASZxvTBq -OXvdZBXO1xQWqOIDbShbJj4x38tT6dSNZKt+hkA1bDvujCeiUdCdqP5uwZ+BaCiX -BBWuKbl+L18Fvu5yrRHs8562zRqv37FxAXNf+PS1CqdxoAtDyCkHxWhCyI1BuuRe -1i14KAwzbDwfRGosnithpd5QlO7yyggpVkTmm0vpSuPLYwhCs4Tu8zVPsxAdJi2e -c+mS4SAHD/14eITn6quDHjN00rtBpAAinjokPVWyLdMGagHCtFenlhHEoNQuUQbr -B+CuUCAgtcD041s9ia1/Czba2Kf30BpZMupRmYOm6cLXyv69eZ4jPqRxj5Q/thlc -4yXqKi6flcn+oReqhlE+mjfHXlS21gWBI4yB03cLC/hLq/yfEbt0uvQ5mBp297Sm -gxdO5gXp+f1h5ZiJVzuf+RgkA8KBuWn4PUFmiNRIR8k+WCHBpOo= -=WBqy +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl0KVEEACgkQ0h2tOK8o +HAvmihAAkcI1d6A7PSpUcpqQjPHQaEof+9PgQyyXKSFOkGGFHCBhORwOnh+pHhpy +EXx8mCq98tY4RDS5/VuDtsdnbz9VkGVBRpZvbOl7nZ3B0z2Z2MMCtGdNjMBnRP7h +y1cJo+qhi8X76o3rAtRPj/ZNb0oze2YpS0QNlGqunv3j+zpuhrj/lcGEy7y3UZ0N +LXI7dnSqqcRZ6efI72RfVQ3ENFbLwiZVQU5pyfSXTf+4QLw6y8Bl66esi5rbfp55 +C4gD0ur2d7i2c/gepIe3el4AkGn31XVIq3i+ohOdp3S415TwRE95ft79TF03JwtA +Hk5yh4Yka0W6DrbcY5aaiQ5Cn2nEMQIGQUG9KAti8LnuPu6xARZMknBcQxsKJRc4 +/JDVExqLnnlGQPBQXuKS/54M6+O/KfNATILaqWqq7D9G8lMc6cHiqyBGFICxaO0C +hFKeJ+qUfTDH838bG+mqIfsjcvjXI+eDe8lO1A/eURkWIzT1/7gnvAE2/Va0+ZJm +E0vTEF4WvFmz7KJBSVqg5Uv8f52qojNMkW7JH6mQUzrvqH+bpDAvZm+2D8v6xqly +4i48f/YKojmnwTHOW+Zh/GNwiawDVk6cGp1uJbxACPv8DdE24G0ai41r4+D/a4Hy +hfer+H9b5O4CWQnbfEEZIFoYFqEmHOeOqrXa31e2moLR87HtHLo= +=Zyfb -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.14.2/amd64/alpha/upgrades.yml similarity index 71% rename from wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml rename to wiki/src/upgrade/v1/Tails/3.14.2/amd64/alpha/upgrades.yml index 9bd818b3d24a3d1c3d7fe1741ae4f6b2a2fd49b3..5b4ef0ea4a801bb51cc5a5306b35a7fcd0f88628 100644 --- a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/3.14.2/amd64/alpha/upgrades.yml @@ -2,4 +2,4 @@ build-target: amd64 channel: alpha product-name: Tails -product-version: 3.13.3 +product-version: 3.14.2 diff --git a/wiki/src/upgrade/v1/Tails/3.14.2/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.14.2/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..2acf46af3508df24d9eeaffd2c40969ec4ae2542 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/3.14.2/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl0KVFgACgkQ0h2tOK8o +HAuTEw/+J044x/F22+4ZDkEQd1sRfsk7lRWfmvLC3dlI/0N+9CSkDqyZt7QXbTVp +322hKMNMOsTtSGVmkko88xvbIs0D/83BTyvo2cnlBd+g/sDPVmAujHghESxPhGE0 +0tkZUbCIf6tMgWpxR52YII9BDc5ZRRS0MdCFzCG+pnoUf+GcAWYVwnMjroQPTqhx +inff6wiMcDhCpfhgIiNxfQQbp6ca80MiZCyjl3BgqAMql6twyctrNevZ/QoFsBgJ +W60EOM0kBBWfR7ZZc7zy2RqhGRnwbB8GO+L2QjmaGtP1XF4Om/sdqhxazBWIMzne +E7NUdleJf/Zr0Wf1pr/ht7koejd1SjgsiA+ar9HOFhuboLpEziPuY45gSMIxnuEY +xjeH0/KuKaxsbg6F/mUAqJZUUFI/QEw81nEJytW/TigsFuWmooUm1fMB9S1rtRk+ +yjhM/060odZcRrG+DGMXxt9uGRJhJPkoOALsTStZbaMXpvn4t2toDodyjUYLkzGM +mGmLkVsICxsYj/iXWTIGCvagOUD09gOmXf/Ya7QU0xQ4kNLE47qRLJfpWVEC2m+y +ZsfMVvDXOn0dluvGHGP6PP0AQPab4ApIj0hvdU3oF5I1oX2RvtniEhHYLFXUozY1 +/vj+mGeiRUuD+/uUPl6K7xK9AsyRstexXUQVJ2QtTRlmrrERJjg= +=kxHi +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.14.2/amd64/stable/upgrades.yml similarity index 71% rename from wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml rename to wiki/src/upgrade/v1/Tails/3.14.2/amd64/stable/upgrades.yml index 89fd4242fb717b483d2c82e573fa040f167077c7..4835712d45e37a76e4df312ccb99167a236641f0 100644 --- a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/3.14.2/amd64/stable/upgrades.yml @@ -2,4 +2,4 @@ build-target: amd64 channel: stable product-name: Tails -product-version: 3.13.3 +product-version: 3.14.2 diff --git a/wiki/src/upgrade/v1/Tails/3.14.2/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.14.2/amd64/stable/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..f32c87d8decea28f5985c32d88c0b3afccc30452 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/3.14.2/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl0KVFEACgkQ0h2tOK8o +HAtHwQ//VVfjUGywjpctQ5txhudXDyGV5ussGSWu86K1OkzRzCD0IAYNVGd1fyIU +/f6mkFUvhdVWDferK4no22TUbknV2MK4PpJviZsudsVmhkhsBSe9SBV+iRXsQmzE +KF2hgRA68P1TjjwDGBK3hn5BEXp3C4Zb/Mo5FR3Ti/kPaE4SpRbiiyRBEcw+Z1dN +Z10vixf5O9tLA2xLYQOnJIgBD1zWfoODF8HcHTW34Xrl2tefq1X60rcRCH4/Me5L +q5mI3Aeynv3ZdJaiLhULwAE6zFjFzWNSa7AExEwW253vRQJFI8iMaPTmcR5zxbTp +ojddpARi2QFPVTWZvdeGsJCmPsyc+s8HFGmSJZH0krxd4tKDQIDyp//F1QzHdu3D +n1OEWe8+uAiXTIpvXVZOPHKPD5EUYhf77ktcQixxdE7vQLIHNjDJ5C8LgNX/UY/8 +JWwDY5eI3fNAJNMlQHLrZHKwUBQ69xZNmTuMjFb2w3JxV/t7BplSTLJPhIZkfzOp +arDKVvosrTKS6PQF5uiVuQsJaDjewnkkukYfKCUsSDb7YVLYgH/2A4J2FlfS4urt +bCsP0P5nYYuA7qYqbTFu98nGPtsuDuuesX+8J2xuW3yyGYdEZ2gWgknOR0lHHv8z +4qdkbHZ+MYhxlLqvSmQhd540Ny4UdHpQGuEVXC6hf8xOMTkQuOE= +=cXsp +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/3.14/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.14/amd64/stable/upgrades.yml index 90ad19ea47e26bf8c4b1e45947bb03606cc7b1f4..d7ebba148cfb030899cb375df09be6308d864642 100644 --- a/wiki/src/upgrade/v1/Tails/3.14/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/3.14/amd64/stable/upgrades.yml @@ -3,3 +3,18 @@ build-target: amd64 channel: stable product-name: Tails product-version: '3.14' +upgrades: +- details-url: https://tails.boum.org/news/version_3.14.1/ + type: major + upgrade-paths: + - target-files: + - sha256: 677793964c54daeb8dfd0deaa84a84a1528e7ff1ef2285cf53a97eef41c9ba48 + size: 1184440320 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.14.1/tails-amd64-3.14.1.iso + type: full + - target-files: + - sha256: 20a19a08c9b6b723430e6056ed1b03b681beec7b02640f2e86c1c864b5c27c02 + size: 218961920 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.14_to_3.14.1.iuk + type: incremental + version: 3.14.1 diff --git a/wiki/src/upgrade/v1/Tails/3.14/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.14/amd64/stable/upgrades.yml.pgp index 46a0b53eb53eea1b8785305c7876a0ca21750546..aafc8ec87aa42992837540bec470f21c13bace48 100644 --- a/wiki/src/upgrade/v1/Tails/3.14/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v1/Tails/3.14/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlxPYvMACgkQqLD05Fsb -UOLOIQ/+JT/qI2cmN5KM2wzOOR8tI1MFeZK28zZ27odWsgo4EXjDzDLIjma/Doiq -JQZ7iC3ysCCatu0qZi3llIAZhwLSsRzYqs4c6E3l4aXs5dUrz0bxgFbOebq7bItb -Npups6mJGUl/NAjKW8AajGZ3zxsESxoLFk0k37oeUHTnUDyT0T3Nxw3gdnwXzs6H -SXZkvrO6rCpeDxzp8CmF8diudv/WNGnhIaBhA42HnVT6Bo/UT18NvCzRwjFYgeGz -C0Cs9VKBkaqgaApzClE+hLRwjYPIr24oGAQW9Rx0IBDqmpQ35aOekjyf26ooBUNk -p/og7yUQkdNCSnCiGyxEWAp9fqHBgvYkeb4G4zIMTgIQ5a3pT3K6F6txFRG1Bqjo -KwEHv0ZrkgNtaPeQyIp9BdF3PO7ABZZGwllu4nIplU0axg8tKdMcSgowh8Z9etA8 -kSuavFplzvF/AI8RxXXyUbqeZO5ZTjmSnsltkxWduoT+/YjaB0QUXLP6XT/1FlAv -GnmlO6pT5L7yoPCSpeGOxIxgSBb1NMlDAUuvhMyOPGGIlIZEJeQJdEXdE9kVqaAK -e4ce+AgjAAgxTkCKQkaF01lEnNT+DlN2WFD1y04l4INxr48lRUOFvFvbWnG/Nw/e -8/Nhhe6I+1EIZEd0aG2KrQVFObkBxGWH4d3nSjzFHH+VqdmjP8w= -=WRBo +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl0KVEoACgkQ0h2tOK8o +HAvY9g//UPYo9ezFzdF3LsmxSTq+ds3Nprc8iIh2CxEa55kJMLtzFCsO7Yfr/i+5 +bWC8zT0YfmsmHjGGc7Yh7xrQoXKS6iWAm1DFOi+zZUgT21+DzErOCgvjsQ5Bmg4l +jWHPhwN8TdFBTsj0lpdXxXu3naXYC1BPObSRgMvtMuDIoQQyxCaIRYdhkC1Fy+pD +jMXmruA/sxK6EjIYPyzuKpvTRNsb3Vuli/Dy7erotrUnHiQubLBt8WIj8IuTIRtJ ++lKeTpFYa5SbOeD3OcsLVDSq+FOhzJjntChIU39zQQKufXyrvxwz7et60Nb3veax +/arzAz4B22M+DF08EOLVTZ4DXZ1WcBj8gRy9+NMrCTLXo4c7iO/BSDctuMQC8ppO +Iq11hTvC1dtCiZInqrp6Fp8PenofAsmJbOHuclocizBHPJCQGPMJ6DkDS3Q8fA/U +4mHvaKeCAXFE4YMbZNr4zHLR0xaAZo72i3QTGvoH+eNcG4AF0L+7h88+AYtMi74q +sjYxBykKCpy3TXTkfrMTh4jurrFMUosJmZp6KHxQVwNlTAaToTrJGxTpr549rzlq +PX1Ai6LkDCXS2NeRtEXM/EGXbOGsu1dwBkMJy0ly2M+cnvAjU/Py5qsiYTmh2Vwx +5GC1RHcN5mtBx5AqyHtQR/+EdG7Jw6FW35ukShtKhB1x2PaZFSE= +=Whko -----END PGP SIGNATURE-----